:root {
    --terracotta: #E07A5F;
    --terracotta-dark: #C56B50;
    --citrus-orange: #F4A261;
    --citrus-yellow: #E9C46A;
    --charcoal: #264653;
    --charcoal-light: #3A5A63;
    --sand: #F4F1DE;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(38, 70, 83, 0.12);
    
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--sand);
    overflow-x: hidden;
}

strong, b {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--terracotta), var(--citrus-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
    min-height: 52px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(224, 122, 95, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(224, 122, 95, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--terracotta), var(--citrus-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    background: var(--sand);
    color: var(--terracotta);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(38, 70, 83, 0.92) 0%, 
        rgba(58, 90, 99, 0.88) 50%, 
        rgba(224, 122, 95, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge::before {
    content: '✨';
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-title span {
    background: linear-gradient(135deg, var(--citrus-orange), var(--citrus-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--citrus-yellow);
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-main-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-float-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-float-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--terracotta), var(--citrus-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-float-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.about-float-text span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sand), var(--citrus-yellow));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.about-feature span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.services-section {
    background: var(--sand);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-bounce);
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--terracotta);
}

.service-price span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    font-weight: 600;
}

.service-link:hover {
    color: var(--terracotta);
}

.service-link svg {
    transition: var(--transition-smooth);
}

.service-link:hover svg {
    transform: translateX(6px);
}

.advantages-section {
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.advantages-section .section-header h2,
.advantages-section .section-header p {
    color: var(--white);
}

.advantages-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--terracotta), var(--citrus-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.advantage-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.process-section {
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
}

.process-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 60%;
    width: calc(100% - 40px);
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), transparent);
    opacity: 0.3;
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.portfolio-section {
    background: var(--sand);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(38, 70, 83, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--sand);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating span {
    font-size: 1.25rem;
    color: var(--citrus-orange);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 28px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--terracotta);
}

.testimonial-info strong {
    display: block;
    color: var(--charcoal);
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.team-section {
    background: var(--charcoal);
    color: var(--white);
}

.team-section .section-header h2,
.team-section .section-header p {
    color: var(--white);
}

.team-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

.team-image-wrapper {
    height: 280px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-bounce);
}

.team-card:hover .team-image {
    transform: scale(1.08);
}

.team-content {
    padding: 28px;
    text-align: center;
}

.team-content h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.team-content span {
    color: var(--terracotta);
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-section {
    background: var(--sand);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--terracotta);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-content {
    padding: 0 28px 28px;
    color: var(--gray-600);
    line-height: 1.8;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--terracotta), var(--citrus-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-item span {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--sand);
    border-radius: 24px;
    padding: 44px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.cta-section {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--terracotta);
}

.cta-section .btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--citrus-yellow);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-medium);
    z-index: 9999;
    display: block;
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-consent-banner h4 {
    color: var(--charcoal);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.cookie-consent-banner p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.cookie-btn-accept {
    background: var(--terracotta);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--terracotta-dark);
}

.cookie-btn-decline {
    background: var(--gray-200);
    color: var(--charcoal);
}

.cookie-btn-decline:hover {
    background: var(--gray-600);
    color: var(--white);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 16px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .cookie-consent-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-float-card {
        right: -15px;
        bottom: -20px;
        padding: 16px 20px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
}