/* ===== VARIABLES ===== */
:root {
    --gold: #C9A96E;
    --gold-light: #DFC194;
    --gold-dark: #A8864A;
    --navy: #0B1426;
    --navy-light: #132040;
    --navy-mid: #1A2D54;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
    background: var(--gold);
    color: var(--navy);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(201, 169, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-eyebrow::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3); }

.btn-secondary {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover { color: var(--gold); }

.hero-right {
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.12);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(201, 169, 110, 0.25); }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* ===== ABOUT ===== */
.about {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
}

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

.about-visual {
    position: relative;
    height: 500px;
}

.about-img-main {
    width: 85%;
    height: 100%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.about-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(201, 169, 110, 0.15), transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(201, 169, 110, 0.03) 20px, rgba(201, 169, 110, 0.03) 21px);
}

.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: 0;
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.about-img-accent-inner {
    font-family: var(--font-display);
    text-align: center;
}

.about-img-accent-inner .number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
}

.about-img-accent-inner .label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin-top: 0.5rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--navy);
}

.about-feature::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header .section-title {
    color: var(--white);
}

.services-header .section-desc {
    color: rgba(255, 255, 255, 0.45);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 110, 0.1);
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(201, 169, 110, 0.08), transparent);
    transition: height 0.5s ease;
}

.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: rgba(201, 169, 110, 0.3); transform: translateY(-5px); }

.service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy);
}

.service-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

.service-card:hover .service-list li { color: rgba(255, 255, 255, 0.6); }
.service-list li:last-child { border-bottom: none; }

/* ===== PROCESS ===== */
.process {
    padding: 8rem 0;
    background: var(--cream);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header .section-desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0.3;
}

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

.step-number {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold-dark);
    background: var(--cream);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    background: var(--gold);
    color: var(--navy);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 8rem 0;
    background: var(--navy-light);
    position: relative;
}

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

.testimonials-header .section-title { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.1);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover { border-color: rgba(201, 169, 110, 0.25); }

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-company {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 8rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--gold);
}

.contact-detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 400;
}

.contact-detail-value a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value a:hover { color: var(--gold-dark); }

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-textarea {
    height: 130px;
    resize: vertical;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 2rem;
}

.footer-brand .nav-logo-text {
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h5 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 20, 38, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 200;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-right { max-width: 500px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .hero-content { padding: 7rem 1.5rem 4rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-card { padding: 1.5rem; }
    .stat-number { font-size: 2rem; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { height: 350px; }
    .about-features { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-inner { flex-direction: column; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}
