/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #1a1a2e;
    background: #faf8f6;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #7B2D8E; color: #fff; padding: .5rem 1rem;
    border-radius: 0 0 4px 4px; z-index: 9999; font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ── Grain overlay ──────────────────────────────────── */
.grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 9000;
    opacity: .035;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* ── Container ──────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Section labels & titles ────────────────────────── */
.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: .75rem;
}
.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
}
.section-desc {
    font-size: 1.05rem;
    color: #555;
    max-width: 560px;
    line-height: 1.8;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .85rem;
    letter-spacing: .04em;
    padding: .875rem 1.75rem;
    border-radius: 2px;
    transition: all .3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #7B2D8E;
    color: #fff;
    border: 1px solid #7B2D8E;
}
.btn-primary:hover { background: #632472; border-color: #632472; }
.btn-outline {
    background: transparent;
    color: #7B2D8E;
    border: 1px solid #7B2D8E;
}
.btn-outline:hover { background: #7B2D8E; color: #fff; }
.btn-outline-light {
    background: transparent;
    color: #1a1a2e;
    border: 1px solid #1a1a2e;
}
.btn-outline-light:hover { background: #1a1a2e; color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 248, 246, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 142, .08);
    transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(123, 45, 142, .06); }
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem;
    display: flex; align-items: center;
    height: 64px;
}
.nav-brand {
    display: flex; align-items: center; gap: .625rem;
    text-decoration: none;
}
.nav-brand-mark {
    width: 36px; height: 36px;
    background: #7B2D8E;
    color: #D4A017;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1rem;
    color: #1a1a2e;
    line-height: 1.2;
}
.nav-brand-title {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #888;
    line-height: 1.2;
}
.nav-links {
    margin-left: auto;
    display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
    font-size: .8rem;
    letter-spacing: .06em;
    color: #555;
    transition: color .2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: #D4A017;
    transition: width .3s ease;
}
.nav-links a:hover { color: #7B2D8E; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-size: .75rem !important;
    letter-spacing: .1em !important;
    text-transform: uppercase;
    color: #7B2D8E !important;
    border: 1px solid #7B2D8E;
    padding: .5rem 1.1rem;
    border-radius: 2px;
    transition: all .3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #7B2D8E; color: #fff !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 4px;
}
.nav-toggle-bar {
    width: 22px; height: 1.5px;
    background: #1a1a2e;
    transition: all .3s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -2;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-gradient {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(250, 248, 246, .92) 0%,
        rgba(250, 248, 246, .82) 40%,
        rgba(123, 45, 142, .25) 100%
    );
}
.hero-content {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 4px;
    padding: 3rem;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(123, 45, 142, .08);
}
.hero-label {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 1.25rem;
    font-weight: 400;
}
.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
}
.hero-em {
    font-style: italic;
    color: #7B2D8E;
}
.hero-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 420px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: start;
}
.stat-card {
    padding: 1.5rem 2rem;
    border-radius: 3px;
    border: 1px solid rgba(123, 45, 142, .1);
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(8px);
    min-width: 200px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123, 45, 142, .08); }
.stat-card--amber { border-color: rgba(212, 160, 23, .25); }
.stat-card--plum { border-color: rgba(123, 45, 142, .2); }
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    color: #7B2D8E;
    line-height: 1.2;
    margin-bottom: .25rem;
}
.stat-card--amber .stat-number { color: #D4A017; }
.stat-label {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #777;
    line-height: 1.5;
}

/* ── About ──────────────────────────────────────────── */
.about {
    padding: 8rem 0;
    border-top: 1px solid rgba(123, 45, 142, .07);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
    width: 100%;
    height: auto;
    border-radius: 3px;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about-image-accent {
    position: absolute;
    top: -16px; left: -16px;
    width: 100px; height: 100px;
    border-top: 1px solid #D4A017;
    border-left: 1px solid #D4A017;
    border-radius: 2px 0 0 0;
    pointer-events: none;
}
.about-content { max-width: 520px; }
.about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.about-credentials {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}
.credential {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .85rem;
    color: #333;
}
.credential-icon {
    width: 18px; height: 18px;
    color: #D4A017;
    flex-shrink: 0;
}

/* ── Services ───────────────────────────────────────── */
.services {
    padding: 8rem 0;
    background: #f4f0f7;
    border-top: 1px solid rgba(123, 45, 142, .07);
    border-bottom: 1px solid rgba(123, 45, 142, .07);
}
.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}
.services-header .section-desc { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    background: #fff;
    border-radius: 3px;
    border: 1px solid rgba(123, 45, 142, .07);
    overflow: hidden;
    padding: 2.5rem;
    transition: all .35s ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(123, 45, 142, .1);
    border-color: rgba(123, 45, 142, .15);
}
.service-card-accent {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7B2D8E, #D4A017);
    opacity: 0;
    transition: opacity .35s ease;
}
.service-card:hover .service-card-accent { opacity: 1; }
.service-icon {
    width: 40px; height: 40px;
    color: #7B2D8E;
    margin-bottom: 1.25rem;
}
.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: .625rem;
}
.service-desc {
    font-size: .925rem;
    color: #666;
    line-height: 1.75;
}

/* ── Process ────────────────────────────────────────── */
.process {
    padding: 8rem 0;
    border-top: 1px solid rgba(123, 45, 142, .07);
}
.process-header { text-align: center; margin-bottom: 4rem; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
}
.process-step {
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
}
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3rem;
    color: rgba(123, 45, 142, .12);
    line-height: 1;
    margin-bottom: .75rem;
    display: block;
}
.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.35rem;
    color: #1a1a2e;
    margin-bottom: .625rem;
}
.step-desc {
    font-size: .875rem;
    color: #666;
    line-height: 1.75;
}
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}
.process-connector::before {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(123, 45, 142, .2), rgba(212, 160, 23, .3));
}

/* ── Testimonials ───────────────────────────────────── */
.testimonials {
    padding: 8rem 0;
    background: #f4f0f7;
    border-top: 1px solid rgba(123, 45, 142, .07);
    border-bottom: 1px solid rgba(123, 45, 142, .07);
}
.testimonials .container { text-align: center; }
.testimonials .section-title { margin-bottom: 3rem; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: #fff;
    border-radius: 3px;
    border: 1px solid rgba(123, 45, 142, .07);
    padding: 2.25rem;
    text-align: left;
    transition: all .3s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(123, 45, 142, .08);
}
.testimonial-quote {
    width: 28px; height: 22px;
    color: #D4A017;
    opacity: .5;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #999;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq {
    padding: 8rem 0;
    border-top: 1px solid rgba(123, 45, 142, .07);
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    margin-top: 1rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid rgba(123, 45, 142, .08);
}
.faq-item:first-child { border-top: 1px solid rgba(123, 45, 142, .08); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a2e;
    transition: color .2s;
}
.faq-question:hover { color: #7B2D8E; }
.faq-toggle {
    width: 20px; height: 20px;
    flex-shrink: 0;
    transition: transform .3s ease;
    color: #D4A017;
}
.faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p {
    padding: 0 0 1.5rem;
    font-size: .925rem;
    color: #666;
    line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 200px; }

/* ── CTA ────────────────────────────────────────────── */
.cta {
    padding: 8rem 0;
    background: #1a1a2e;
    border-top: 1px solid rgba(123, 45, 142, .07);
}
.cta-card {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta .section-label { color: #D4A017; }
.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
}
.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary {
    background: #D4A017;
    border-color: #D4A017;
    color: #1a1a2e;
    font-weight: 500;
}
.cta .btn-primary:hover { background: #c48d0f; border-color: #c48d0f; }
.cta .btn-outline-light {
    border-color: rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8);
}
.cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

/* ── Contact ────────────────────────────────────────── */
.contact {
    padding: 8rem 0;
    border-top: 1px solid rgba(123, 45, 142, .07);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}
.contact-info { max-width: 480px; }
.contact-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-icon {
    width: 22px; height: 22px;
    color: #7B2D8E;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-detail-label {
    display: block;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: .25rem;
}
.contact-detail-value {
    font-size: .95rem;
    color: #333;
    line-height: 1.6;
}
.contact-detail-value a {
    color: #7B2D8E;
    border-bottom: 1px solid rgba(123, 45, 142, .2);
    transition: border-color .2s;
}
.contact-detail-value a:hover { border-color: #7B2D8E; }

.contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(123, 45, 142, .08);
    border-radius: 3px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(123, 45, 142, .05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid rgba(123, 45, 142, .15);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 300;
    color: #1a1a2e;
    background: #faf8f6;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7B2D8E;
    box-shadow: 0 0 0 3px rgba(123, 45, 142, .08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: #f0fdf4;
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 2px;
}
.form-success svg {
    width: 20px; height: 20px;
    color: #16a34a;
    flex-shrink: 0;
}
.form-success p {
    font-size: .875rem;
    color: #166534;
    line-height: 1.5;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
    background: #1a1a2e;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(123, 45, 142, .07);
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand-mark {
    width: 40px; height: 40px;
    background: rgba(123, 45, 142, .3);
    color: #D4A017;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
}
.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
}
.footer-brand-title {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    display: block;
}
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}
.footer-nav a:hover { color: #D4A017; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
}
.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    transition: color .2s;
}
.footer-bottom a:hover { color: #D4A017; }

/* ── Scroll animations ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrap { max-width: 480px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .process-connector { display: none; }
    .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
    .faq-left { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: rgba(250, 248, 246, .97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(123, 45, 142, .08);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all .35s ease;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }
    .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
    .hero-card { padding: 2rem; }
    .hero-stats { flex-direction: column; }
    .stat-card { min-width: auto; }
    .about { padding: 5rem 0; }
    .about-credentials { grid-template-columns: 1fr; }
    .services { padding: 5rem 0; }
    .process { padding: 5rem 0; }
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }
    .testimonials { padding: 5rem 0; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq { padding: 5rem 0; }
    .cta { padding: 5rem 0; }
    .contact { padding: 5rem 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
