/* ============================================
   Doing Business Associates — Brand Styles
   Palette: Deep Navy #0F1D3F · Warm Gold #C8A45E
   Fonts: Cormorant Garamond + Inter
   ============================================ */

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

:root {
    --navy: #0F1D3F;
    --navy-light: #1A2D54;
    --navy-dark: #091228;
    --gold: #C8A45E;
    --gold-light: #D4B76F;
    --gold-pale: #F5ECDA;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F7F5F0;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 1px 3px rgba(15, 29, 63, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 29, 63, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 29, 63, 0.12);
    --shadow-xl: 0 24px 60px rgba(15, 29, 63, 0.16);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 94, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--large {
    padding: 18px 40px;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--gray-200);
}

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
    transition: color var(--transition);
    border: 1.5px solid currentColor;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.nav.scrolled .nav__logo-mark {
    color: var(--navy);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.nav.scrolled .nav__logo-text {
    color: var(--navy);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav.scrolled .nav__link {
    color: var(--gray-600);
}

.nav.scrolled .nav__link:hover {
    color: var(--navy);
}

.nav__link--cta {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link--cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark) !important;
}

.nav__link--cta::after {
    display: none;
}

.nav.scrolled .nav__link--cta {
    border-color: var(--navy);
    color: var(--navy);
}

.nav.scrolled .nav__link--cta:hover {
    background: var(--navy);
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}

.nav.scrolled .nav__toggle-line {
    background: var(--navy);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(9, 18, 40, 0.92) 0%, rgba(15, 29, 63, 0.85) 50%, rgba(26, 45, 84, 0.78) 100%),
        url('https://images.pexels.com/photos/39219954/pexels-photo-39219954.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 640px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero__badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero__headline--accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero__subheadline {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 48px;
}

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

/* Floating Stat Cards */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-4px);
    border-color: rgba(200, 164, 94, 0.3);
}

.stat-card--1 { animation: floatSlideIn 0.8s ease-out 0.3s both; }
.stat-card--2 { animation: floatSlideIn 0.8s ease-out 0.5s both; }
.stat-card--3 { animation: floatSlideIn 0.8s ease-out 0.7s both; }

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
}

@keyframes floatSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(200, 164, 94, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---------- Section Shared ---------- */
.section-header__eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--navy);
}

.section-header__desc {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.8;
}

/* ---------- Services ---------- */
.services {
    padding: 120px 24px;
    background: var(--off-white);
}

.services__container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 72px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    color: var(--navy);
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

.service-card__title {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    transition: all var(--transition);
}

.service-card__link svg {
    transition: transform var(--transition);
}

.service-card__link:hover {
    color: var(--gold);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* ---------- About ---------- */
.about {
    padding: 120px 24px;
    background: var(--white);
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about__image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gray-700);
}

.about__value-line {
    flex-shrink: 0;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

/* ---------- Why Us ---------- */
.why-us {
    padding: 120px 24px;
    background: var(--navy);
}

.why-us__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-us__left .section-header__title {
    color: var(--white);
}

.why-us__left .section-header__desc {
    color: rgba(255, 255, 255, 0.6);
}

.why-card {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.why-card__title {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card__desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* ---------- CTA Banner ---------- */
.cta {
    padding: 100px 24px;
    background: var(--gold-pale);
}

.cta__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta__content {
    max-width: 520px;
}

.cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 16px;
}

.cta__desc {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.75;
}

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

/* ---------- Contact ---------- */
.contact {
    padding: 120px 24px;
    background: var(--off-white);
}

.contact__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact__desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--navy);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-800);
}

.contact__detail-value a {
    color: var(--navy);
    transition: color var(--transition);
}

.contact__detail-value a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 48px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__field {
    margin-bottom: 24px;
}

.contact-form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.contact-form__input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition);
    -webkit-appearance: none;
}

.contact-form__input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.contact-form__input::placeholder {
    color: var(--gray-400);
}

.contact-form__select {
    cursor: pointer;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success */
.contact-form__success {
    text-align: center;
    padding: 60px 48px;
}

.contact-form__success-icon {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.contact-form__success-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.contact-form__success-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-dark);
    padding: 72px 24px 40px;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
    width: fit-content;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 32px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

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

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 48px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__container,
    .why-us__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-accent {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav__links.open {
        right: 0;
    }
    
    .nav__link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
    }
    
    .nav__link--cta {
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact-form__row {
        grid-template-columns: 1fr;
    }
    
    .cta__container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__top {
        flex-direction: column;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .cta__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile overlay */
.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav__overlay.active {
    display: block;
}
