/* ========== Design Tokens ========== */
:root {
    --bg: hsl(0 0% 6%);
    --bg-card: hsla(0, 0%, 8%, 0.8);
    --bg-card-hover: hsla(0, 0%, 12%, 0.9);
    --border-card: hsla(0, 0%, 25%, 0.3);
    --text: hsl(0 0% 95%);
    --text-muted: hsl(0 0% 60%);
    --text-heading: hsl(0 0% 95%);
    --primary: hsl(0 0% 90%);
    --primary-fg: hsl(0 0% 10%);
    --primary-glow: hsla(0, 0%, 90%, 0.2);
    --secondary: hsl(0 0% 10%);
    --secondary-fg: hsl(0 0% 95%);
    --muted: hsl(0 0% 15%);
    --border: hsla(0, 0%, 20%, 1);
    --profit: hsl(142 76% 36%);
    --loss: hsl(0 84% 60%);
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --radius: 0.75rem;
    --nav-height: 3.5rem;
}

/* ========== Reset ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* ========== Grain Overlay ========== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ========== Container ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== Navigation ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: hsla(0, 0%, 6%, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-card);
    height: var(--nav-height);
    transition: transform 0.3s ease;
}

@supports not (backdrop-filter: blur(20px)) {
    .nav {
        background: hsla(0, 0%, 6%, 0.95);
    }
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
    text-decoration: none;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-card);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.lang-switch:hover {
    color: var(--text);
    border-color: hsla(0, 0%, 40%, 0.4);
    text-decoration: none;
}

.lang-switch svg {
    width: 14px;
    height: 14px;
}

/* ========== Sections ========== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== Hero ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: hsla(0, 0%, 90%, 0.07);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 24rem;
    height: 24rem;
    background: hsla(0, 0%, 50%, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    text-align: center;
    max-width: 72rem;
    position: relative;
    z-index: 1;
    animation: slide-in-up 0.8s ease forwards;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-heading);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
    animation: slide-in-up 0.8s ease forwards 0.3s;
    opacity: 0;
}

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

.hero-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-feature:hover .hero-feature-icon {
    background: var(--bg-card-hover);
}

.hero-feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.125rem;
}

.hero-feature-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========== Buttons ========== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, hsl(0 0% 90%) 0%, hsl(0 0% 70%) 100%);
    color: var(--primary-fg);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px hsla(0, 0%, 90%, 0.15), 0 0 60px hsla(0, 0%, 90%, 0.08);
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsla(0, 0%, 90%, 0.25), 0 0 80px hsla(0, 0%, 90%, 0.12);
    text-decoration: none;
}

.btn-premium svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
}

.btn-premium:hover svg {
    transform: translateX(3px);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: hsla(0, 0%, 8%, 0.6);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    cursor: pointer;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn-glass:hover {
    background: hsla(0, 0%, 12%, 0.8);
    border-color: hsla(0, 0%, 40%, 0.4);
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-glass svg {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform 0.2s;
}

.btn-glass:hover svg {
    transform: translateX(3px);
}

/* ========== Glass Card ========== */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 1rem;
    padding: 2rem;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
}

@supports not (backdrop-filter: blur(12px)) {
    .glass-card {
        background: hsla(0, 0%, 8%, 0.95);
    }
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: hsla(0, 0%, 30%, 0.4);
}

/* ========== Service Cards ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto 3rem;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px hsla(0, 0%, 0%, 0.7), 0 0 0 1px hsla(0, 0%, 20%, 1);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(0, 0%, 90%, 0.06) 0%, hsla(0, 0%, 10%, 0.06) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(0 0% 90%) 0%, hsl(0 0% 70%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsla(0, 0%, 90%, 0.2), 0 0 80px hsla(0, 0%, 90%, 0.1);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--primary-fg);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    padding: 0.25rem 0.75rem;
    background: hsla(0, 0%, 15%, 0.3);
    border: 1px solid hsla(0, 0%, 20%, 0.5);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========== Process Timeline ========== */
.process-list {
    max-width: 52rem;
    margin: 0 auto;
    list-style: none;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(0 0% 90%) 0%, hsl(0 0% 70%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-fg);
    flex-shrink: 0;
    box-shadow: 0 0 30px hsla(0, 0%, 90%, 0.15);
    position: relative;
}

.process-step-content {
    flex: 1;
    margin-left: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: hsla(0, 0%, 8%, 0.3);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background 0.3s, box-shadow 0.3s;
}

.process-step:hover .process-step-content {
    background: hsla(0, 0%, 8%, 0.5);
    box-shadow: 0 10px 30px -10px hsla(0, 0%, 0%, 0.7);
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.375rem;
}

.process-step-header svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ========== Benefits ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px hsla(0, 0%, 0%, 0.7);
}

.benefit-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid hsla(0, 0%, 90%, 0.12);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, hsl(0 0% 10%) 0%, hsl(0 0% 25%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 30px hsla(0, 0%, 10%, 0.4);
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--secondary-fg);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-info h3 {
    color: var(--primary);
}

.benefit-highlight {
    display: inline-block;
    padding: 0.1875rem 0.75rem;
    background: hsla(0, 0%, 90%, 0.1);
    border: 1px solid hsla(0, 0%, 90%, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.benefit-card > p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-container {
    max-width: 52rem;
    margin: 0 auto;
}

.faq-list {
    padding: 2rem;
}

details {
    background: hsla(0, 0%, 8%, 0.3);
    border: 1px solid hsla(0, 0%, 20%, 0.5);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}

details:hover {
    background: hsla(0, 0%, 8%, 0.5);
}

details:last-of-type {
    margin-bottom: 0;
}

summary {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: color 0.2s;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

details[open] summary {
    color: var(--primary);
}

details[open] summary::after {
    transform: rotate(180deg);
}

details .faq-answer {
    padding: 0 1.5rem 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.faq-no-answer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
}

.faq-no-answer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.faq-no-answer > p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.faq-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    transition: opacity 0.2s;
}

.faq-contact-link:hover {
    opacity: 0.8;
}

/* ========== Contact ========== */
.contact-card {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.contact-icon-wrap {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(0 0% 90%) 0%, hsl(0 0% 70%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsla(0, 0%, 90%, 0.2);
    animation: float 6s ease-in-out infinite;
}

.contact-icon-wrap svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--primary-fg);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.contact-card > p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.calendly-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px hsla(0, 0%, 0%, 0.7);
    margin-bottom: 2rem;
}

.calendly-wrapper iframe {
    display: block;
    width: 100%;
    height: 700px;
    border: 0;
}

.contact-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid hsla(0, 0%, 20%, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.contact-link svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ========== Footer ========== */
.footer {
    border-top: 1px solid hsla(0, 0%, 20%, 0.5);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: hsla(0, 0%, 90%, 0.04);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.footer-company h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.footer-company > p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.footer h4 {
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-contact-item a {
    color: inherit;
}

.footer-contact-item:hover {
    color: var(--primary);
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid hsla(0, 0%, 20%, 0.5);
    font-size: 0.8125rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ========== Scroll Reveal ========== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 32rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 32rem;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 5rem 1rem 3rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-number {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .process-step-content {
        margin-left: 0;
        width: 100%;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .faq-list {
        padding: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calendly-wrapper iframe {
        height: 600px;
    }

    .contact-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-contacts {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .service-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-content,
    .hero-features {
        animation: none;
        opacity: 1;
    }

    .hero::before,
    .hero::after {
        animation: none;
    }

    .contact-icon-wrap {
        animation: none;
    }

    .glass-card,
    .btn-premium,
    .btn-glass,
    .service-card,
    .benefit-card,
    details,
    summary,
    .nav {
        transition: none;
    }

    details[open] summary::after {
        transition: none;
    }
}

/* ========== Noscript fallback ========== */
.no-js .reveal {
    opacity: 1;
    transform: none;
}
