@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;700;800;900&display=swap');

:root {
    --color-primary: #c71585;
    --color-primary-light: #ffebf5;
    --color-primary-hover: #a0106a;
    --color-bg: #ffffff;
    --color-surface: #f3f3f3;
    --color-text: #050505;
    --color-text-muted: #444444;
    --font-main: 'Inter', sans-serif;
    --font-logo: 'Bebas Neue', sans-serif;
    --radius-bento: 32px;
    --space-sm: 1.5rem;
    --space-md: 3rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
    --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-glass: 1px solid rgba(0, 0, 0, 0.08);
}

/* 1. BASE RESET & SAFETY */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition-premium); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* 2. TYPOGRAPHY */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: var(--space-sm); }
.heading-massive { font-size: calc(clamp(2.25rem, 4.5vw, 3.75rem) * 0.8); }
.pros-text { font-size: 0.618em !important; opacity: 0.9; font-weight: 800; display: block; margin-bottom: 0.5rem; }
.heading-large { font-size: calc(clamp(2rem, 4vw, 3rem) * 0.8); }
.text-lead { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 500; color: var(--color-text-muted); }
.text-accent { color: var(--color-primary); }

@media (min-width: 1025px) {
    p { font-size: 13px !important; letter-spacing: 0.2px !important; }
}

/* City Highlight */
#dynamic-city {
    background-color: #ffffff;
    color: var(--color-primary) !important;
    padding: 0px 4px; /* Hugs the text */
    border-radius: 8px;
    display: inline-block;
    min-width: auto; /* Hugs the text */
    box-shadow: none !important; /* Removed shadow */
}

@media (max-width: 768px) {
    #dynamic-city { margin-top: 4px; }
}

/* Bento H2 sizing - Fixed 2rem globally */
.bento-box h2 { font-size: 2rem !important; }

/* 3. HEADER & LOGO */
.header {
    background-color: rgba(255, 255, 255, 0.65) !important; /* Fixed 0.65 transparency */
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0; border-bottom: var(--border-glass);
    position: sticky; top: 0; left: 0; width: 100%; z-index: 2000;
    cursor: pointer; /* Indication for tap-to-top */
}
.header__inner { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.header__logo { display: flex; align-items: center; gap: 0; position: relative; }
.header__logo svg, .header__logo img { height: 51px !important; width: auto !important; filter: hue-rotate(-4deg) !important; }
.header__logo-text { font-family: var(--font-logo); font-size: 2.25rem; letter-spacing: 0.02em; color: #000; display: flex; align-items: center; }
.header__logo-skyline { color: var(--color-primary); font-weight: 900; }
.header__logo-social {
    color: white; font-weight: 500; font-size: 0.4em; margin-left: 0.3rem;
    background: var(--color-primary); padding: 0.2rem 0.4rem; border-radius: 6px;
    align-self: center; letter-spacing: 0.05em; text-transform: uppercase;
}
.header__nav { display: flex; gap: 2rem; align-items: center; }
.header__link { font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: #000; padding: 3px 4px; }
.header__link:hover { color: var(--color-primary); }
.header__link--active { color: #fff !important; background: var(--color-primary); border-radius: 4px; }

/* 4. LAYOUT & CONTAINER */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; width: 100%; }
#main-content { padding: 0 !important; margin: -80px 0 0 !important; }
.section { width: 100%; padding: 4rem 0; position: relative; }
.section--pink { background-color: var(--color-primary); color: #fff; }
.section--pink h2, .section--pink p { color: #fff !important; }
.bg-gradient-pink { background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%); }

/* Mobile toggle button — Updated to 3 bars */
.mobile-toggle { 
    background: transparent; border: none; cursor: pointer; color: var(--color-text); 
    display: flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center; width: 44px; height: 44px; 
}
.mobile-toggle span { display: block; width: 24px; height: 3px; background: #000000; border-radius: 2px; }

/* 5. BENTO GRID SYSTEM */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; grid-auto-flow: dense; }
.bento-box {
    background-color: #ffffff; border-radius: var(--radius-bento); 
    padding: calc(2rem + 35px) 2rem; 
    position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    color: var(--color-text);
}
/* Portfolio cards — zero padding, overflow visible for bg-image */
.bento-portfolio { padding: 0 !important; position: relative; overflow: hidden; }

/* HOVER STATES: Sharp black shadow for white boxes */
.bento-box:hover {
    transform: translate(-4px, -4px); 
    box-shadow: 6px 6px 0px 0px #000000; 
    border-color: #000000;
}

/* Recent project items hover pink shadow */
.bento-portfolio:hover {
    box-shadow: 6px 6px 0px 0px var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* HOVER STATES: Sharp pink shadow for pink boxes */
.bento-box--pink:hover { 
    box-shadow: 6px 6px 0px 0px #000000 !important; 
    border-color: #000 !important; 
}

.bento-box--cta { 
    box-shadow: 6px 6px 0px 0px #000000 !important; 
    border-color: #000 !important; 
}

/* BENTO BACKGROUND SHAPES */
.bento-box::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='180' cy='20' r='100' fill='%23000' fill-opacity='0.02'/%3E%3Cpolygon points='0,200 50,150 100,200' fill='%23000' fill-opacity='0.02'/%3E%3C/svg%3E");
    background-size: cover; background-position: center; pointer-events: none; z-index: 0;
}
.bento-box--pink::before, .bento-box--cta::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='180' cy='20' r='100' fill='%23fff' fill-opacity='0.08'/%3E%3Cpolygon points='0,200 50,150 100,200' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
}
.bg-black::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='180' cy='20' r='100' fill='%23ff1493' fill-opacity='0.05'/%3E%3Cpolygon points='0,200 50,150 100,200' fill='%23ff1493' fill-opacity='0.05'/%3E%3C/svg%3E");
}
.bento-box > * { position: relative; z-index: 1; }

/* BENTO TYPOGRAPHY RULES */
/* Default: White BG boxes have pink headers and black text */
.bento-box h2, .bento-box h3 { color: var(--color-primary); font-size: 0.8em; margin-bottom: 0.5rem !important; } 
.bento-box p, .bento-box .text-lead { color: var(--color-text); margin-bottom: 1.25rem !important; }
.bento-box .btn { margin-top: 0 !important; }

/* Pink BG boxes have white headers and white text */
.bento-box--pink h2, .bento-box--pink h3 { color: #ffffff !important; }
.bento-box--pink p, .bento-box--pink .text-lead { color: #ffffff !important; }

.bg-black h2, .bg-black h3 { color: var(--color-primary) !important; }
.bg-black p, .bg-black .text-lead { color: #ffffff !important; }

.bento-box--span-12 { grid-column: span 12; }
.bento-box--span-8 { grid-column: span 8; }
.bento-box--span-7 { grid-column: span 7; }
.bento-box--span-6 { grid-column: span 6; }
.bento-box--span-5 { grid-column: span 5; }
.bento-box--span-4 { grid-column: span 4; }
.bento-box--span-3 { grid-column: span 3; }
.bento-box--row-span-2 { grid-row: span 2; }

/* Flip Process Header to Right on Desktop */
@media (min-width: 1025px) {
    #process { grid-column: 9 / span 4 !important; }
}

.bento-box--cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff1493 100%);
    color: #fff; text-align: center; padding: calc(6rem + 35px) 3rem; border: none;
    box-shadow: 8px 8px 0px 0px #000000; /* Sharp black shadow by default */
}
.bento-box--cta h2 { margin-bottom: 1rem !important; }
.bento-box--cta p { color: #fff; margin-bottom: 2rem !important; }
.bento-box--cta .btn { color: var(--color-primary) !important; background: #fff !important; border: none; margin-top: 0 !important; transition: transform 0.4s ease; }
.bento-box--cta .btn:hover { background: #000 !important; color: #fff !important; transform: translateY(-4px); }

.bento-box--hero-overlay {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); z-index: 100;
    padding: calc(2rem + 35px) 2rem;
}
.bento-box--pink { background: var(--color-primary); color: #fff; border: none; }
.bento-box a img { max-height: 250px; width: 100%; object-fit: cover; object-position: top; border-radius: 12px; }

/* 6. SPECIALIZED GRIDS */
.stats-grid-3x2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-card-pink { background: var(--color-primary); color: #fff; padding: 1.5rem; border-radius: 24px; text-align: center; box-shadow: 0 8px 24px rgba(199, 21, 133, 0.15); display: flex; flex-direction: column; justify-content: center; }
.stat-number { font-size: 2rem; font-weight: 900; opacity: 0.9; line-height: 1; margin-bottom: 0.25rem; } /* Scaled down 20% */
.stat-img-card { border-radius: 24px; overflow: hidden; height: 160px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
/* Ensure image cards in stats grid are uniform height */
.stat-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.stat-img-card:hover img { transform: scale(1.05); }

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

/* Process Cards — White BG, Pink Header, Black Text, PINK BORDER */
.process-card { 
    background-color: #ffffff; 
    border: 2px solid var(--color-primary) !important; 
    border-radius: var(--radius-bento);
}
.process-card h3 { color: var(--color-primary) !important; font-size: 1.25rem !important; }
.process-card p { color: #000000 !important; }
.process-card:hover { 
    background: #ffffff !important; 
    box-shadow: 6px 6px 0px 0px #000000 !important; 
    border-color: #000 !important;
}

/* Bento body text — 12px sitewide cap (prevents overflow, keeps hierarchy) */
.bento-box p, .bento-box .text-lead, .bento-box li,
.expect-card-reverted p, .stat-card-pink p { font-size: 12px !important; line-height: 1.55 !important; }

/* What to Expect card: Previous light pink gradient */
.expect-card-reverted {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%) !important;
    color: #000000 !important;
    border-radius: 28px; padding: calc(2.5rem + 35px) 2.5rem; border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.expect-card-reverted:hover {
    transform: translate(-4px, -4px); box-shadow: 6px 6px 0px 0px #000000;
}
.expect-card-reverted h3 { color: var(--color-primary) !important; font-size: 1.2rem; }
.expect-card-reverted p { color: #000000 !important; }
.expect-card-reverted svg { stroke: var(--color-primary) !important; color: var(--color-primary) !important; }

/* Portfolio header bento: force white text */
.bento-box--pink.portfolio-header h2,
.bento-box--pink.portfolio-header p { color: #ffffff !important; }
/* Problem card (pink): force h2 white */
.bento-box--static-color h2 { color: #ffffff !important; }
.bento-box--static-color p.text-lead { color: rgba(255,255,255,0.9) !important; }

/* 7. HERO VISUALS */
.hero-full {
    position: relative; width: 100%; min-height: 85vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; background-color: #000; padding-bottom: 10vh; padding-top: 7.75rem; /* Increased by 60px (approx 3.75rem extra) */
}
.hero-full::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 15vh;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); z-index: 5; pointer-events: none;
}
@keyframes kenBurns {
    0%   { transform: scale(1)    translateX(0)    translateY(0); }
    25%  { transform: scale(1.06) translateX(-1%)  translateY(-0.5%); }
    50%  { transform: scale(1.12) translateX(-2%)  translateY(-1%); }
    75%  { transform: scale(1.06) translateX(-0.5%) translateY(0); }
    100% { transform: scale(1)    translateX(0)    translateY(0); }
}
.hero-full__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    animation: kenBurns 28s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
    z-index: 1;
}
.hero-full__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: 0.3; z-index: 2; }
.hero-full__pink-hue { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--color-primary); mix-blend-mode: lighten; opacity: 0.8; z-index: 3; }
.hero-full__content { position: relative; z-index: 10; text-align: center; width: 100%; padding: 4rem 2rem; color: #fff; }
.grid-overlap { margin-top: -15vh; position: relative; z-index: 20; }

.hero-features-list { display: flex; justify-content: center; gap: 1.25rem; margin-bottom: 1.5rem; flex-wrap: wrap; color: #fff; font-weight: 700; font-size: 12px; }
.hero-feature-item { display: flex; align-items: center; gap: 0.35rem; }

/* 8. BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1.25rem 2.5rem; font-size: 1.1rem; font-weight: 700; border-radius: 100px;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    border: none;
    box-shadow: 4px 4px 0px 0px #000000; /* Sharp black shadow */
    width: fit-content;
}
.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px var(--color-primary); /* Pink shadow on hover */
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-hover); }

.btn--secondary { border: none; color: var(--color-primary); background: #fff; }
.btn--secondary:hover { background: #000; color: #fff; }

.btn--hero-secondary { border: none; color: #fff; background: var(--color-primary); }
.btn--hero-secondary:hover { background: #fff; color: #000; }

/* Keep header link button style clean */
.header__link--active { border: none !important; box-shadow: none !important; transform: none !important; }

/* Specifically target the hero pill for white text */
.hero-trust-pill { color: #ffffff !important; border-color: rgba(255,255,255,0.4) !important; }

/* 🌟 UPDATED: Sequential Breathing Star Animation with Pink Glow */
@keyframes starBreathing {
    0%   { transform: scale(1); fill: #ffffff; filter: drop-shadow(0 0 0px transparent); }
    5%   { transform: scale(1.5); fill: #ff1493; filter: drop-shadow(0 0 8px #ff1493); }
    10%  { transform: scale(1); fill: #ffffff; filter: drop-shadow(0 0 0px transparent); }
    100% { transform: scale(1); fill: #ffffff; }
}

.star-group { display: flex; align-items: center; gap: 4px; margin-right: 0.6rem; }
.trust-star { overflow: visible; width: 14px; height: 14px; }
.trust-star path { 
    transform-origin: center;
    fill: #ffffff; /* Base color white */
    animation: starBreathing 7s ease-in-out infinite;
}

/* Sequential succession logic */
.trust-star:nth-child(1) path { animation-delay: 0.0s; }
.trust-star:nth-child(2) path { animation-delay: 0.3s; }
.trust-star:nth-child(3) path { animation-delay: 0.6s; }
.trust-star:nth-child(4) path { animation-delay: 0.9s; }
.trust-star:nth-child(5) path { animation-delay: 1.2s; }

/* MODAL */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 4000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal-box {
    background: #fff; width: 90%; max-width: 500px; border-radius: 24px;
    padding: 2.5rem; position: relative; transform: translateY(20px);
    transition: transform 0.3s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.modal-overlay.is-open .modal-box { transform: translateY(0); }
.modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem; background: transparent;
    border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-text-muted);
}
.lead-form .form-group { margin-bottom: 1.25rem; }
.lead-form label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.875rem; }
.lead-form input[type="text"], .lead-form textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px; font-family: inherit; font-size: 1rem; background: var(--color-surface);
}
.lead-form textarea { resize: vertical; }
.checkbox-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-weight: 400 !important; cursor: pointer; }

/* OVERLAPS */
.stats-overlap-wrap { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; }
.stats-overlap-text { flex: 1; width: 100%; }

@media (min-width: 1025px) {
    .stats-overlap-wrap { flex-direction: row; flex-wrap: nowrap; gap: 3rem; align-items: center; }
    .stats-overlap-text { flex: 1; min-width: 300px; }
    .stats-grid-wrap { flex: 2; min-width: 300px; }
}

/* 9. FOOTER */
.footer {
    background-color: #050505; color: #ffffff; padding: 4rem 0 3rem 0;
    width: 100%; border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0 !important;
}
.footer__nav {
    display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 1.5rem;
    list-style: none; padding: 0;
}
.footer__nav a { 
    font-weight: 700; font-size: 0.85rem; color: var(--color-primary); 
    text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s;
    display: flex; align-items: center;
}
.footer__nav a:hover { color: #fff; }
.footer__nav a:not(:last-child)::after {
    content: "|"; color: #ffffff; margin: 0 1rem; opacity: 0.5; font-weight: 400;
}

.footer-bottom-row { 
    display: flex; justify-content: center; gap: 2rem; 
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
    margin-top: 0;
}
.footer-bottom-row p, .footer-bottom-row a { color: #666; font-size: 0.85rem; }

/* 10. MOBILE OVERRIDES */
@media (max-width: 1024px) {
    .header__nav { display: none; }
    .bento-box--span-12, .bento-box--span-8, .bento-box--span-7, .bento-box--span-6, .bento-box--span-5, .bento-box--span-4, .bento-box--span-3 { grid-column: span 12; }
    .bento-box--row-span-2 { grid-row: span 1; }
    .stats-grid-3x2 { grid-template-columns: 1fr 1fr; }
    .grid-5-cols { grid-template-columns: 1fr 1fr; }
    .grid-overlap { margin-top: 0; }
    .mobile-toggle { display: flex; }
}
@media (min-width: 1025px) {
    .mobile-toggle { display: none; }
}
@media (max-width: 768px) {
    .section { padding: 2.5rem 0; }
    .section:last-of-type { padding-bottom: 2.5rem !important; }
    .btn { padding: 0.875rem 1.5rem; font-size: 1rem; }

    /* MOBILE BENTO CARD REFINEMENTS */
    .bento-box { 
        padding: 2.2rem 1.5rem !important; 
    }
    .bento-box h2 { 
        font-size: 1.5rem !important; 
        width: 85%;
        margin-bottom: 0.5rem !important;
    }
    .bento-box p { 
        margin-top: 0 !important; 
        margin-bottom: 5px !important;
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }
    .bento-box .text-lead, .bento-box li {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }

    /* STATS MOBILE FIXES */
    .stat-number {
        font-size: 1.4rem !important;
        font-weight: 900 !important;
        opacity: 0.9 !important;
        line-height: 0.55 !important;
        margin-bottom: 0.25rem !important;
    }
    .stat-label { 
        font-size: 0.7rem !important; 
    }
    .stat-card-pink {
        padding: 13px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        height: 180px !important;
    }
    .stat-card-pink p { 
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        margin-top: 1px !important;
        color: #ffffff !important;
    }

    .grid-overlap { margin-top: -55px !important; }
    .stats-overlap-wrap { gap: 1.5rem; }
    .stats-grid-3x2 { 
        grid-template-columns: 1fr 1fr; 
        gap: 1rem;
        display: grid !important; 
    }
    
    .stat-img-card { height: 180px !important; min-height: 180px !important; margin: 0 !important; }
    .stat-img-card img { height: 100%; width: 100%; object-fit: cover; }
    
    .grid-5-cols { grid-template-columns: 1fr; gap: 1rem; }
    
    .process-card {
        grid-column: span 6 !important;
        padding: 1.5rem !important;
    }
    
    .bento-box.bento-portfolio,
    .bento-box[style*="background-image"] {
        min-height: 280px !important;
    }

    .mobile-nav-cta {
        padding: 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: auto !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 10;
        background: var(--color-primary);
    }
    .btn-nav-wa, .btn-nav-consult {
        display: flex !important;
        width: 100% !important;
        height: 54px !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 100px !important;
        font-weight: 800 !important;
        font-size: 15px !important;
        text-transform: none !important;
        box-shadow: none !important;
        transform: none !important;
        margin: 0 !important;
    }
    .container { padding: 0 1.5rem; }
    .hero-features-list { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem; margin: 0 auto 1.25rem auto; }
    .hero-btn-group { margin-bottom: 20px !important; }
    
    .btn-whatsapp .text { display: none; }
    .btn-whatsapp { padding: 0.6rem !important; border-radius: 50% !important; width: 44px; height: 44px; justify-content: center; box-shadow: none !important; }
    .btn-whatsapp::after { content: ""; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51a12.8 12.8 0 0 0-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.82 9.82 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E"); width: 24px; height: 24px; background-size: contain; background-repeat: no-repeat; }
    
    .hero-full__content h1,
    .hero-full__content .heading-massive { font-size: clamp(1.6rem, 8vw, 2.2rem) !important; line-height: 1.15 !important; }
    .hero-full__content p,
    .hero-full__content .text-lead { font-size: clamp(0.8rem, 3.5vw, 1rem) !important; line-height: 1.5 !important; max-width: 90%; margin-left: auto; margin-right: auto; }
    .hero-full { min-height: 70vh; }

    .footer { padding: 3rem 0; }
    .footer__nav { flex-direction: row; justify-content: center; } 
    .footer__nav a { font-size: 0.75rem; }
    .footer__nav a:not(:last-child)::after { margin: 0 0.5rem; }
    
    .footer-bottom-row { flex-direction: column; gap: 0.5rem; text-align: center; }

    .mobile-toggle svg { display: none !important; }
    
    .header__logo svg { width: 3.25rem !important; height: 3.25rem !important; }
    .header__logo-text { font-size: 3rem !important; }
    
    .btn-nav-wa {
        background: #ffffff !important; color: #000000 !important; border: none !important;
        box-shadow: 4px 4px 0px 0px #000000 !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .btn-nav-wa:hover { background: #000000 !important; color: #ffffff !important; box-shadow: 4px 4px 0px 0px #ffffff !important; }
    
    .btn-nav-consult { 
        background: #000000 !important; color: #ffffff !important;
        box-shadow: 4px 4px 0px 0px #000000 !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; 
    }
    .btn-nav-consult:hover { background: #ffffff !important; color: #000000 !important; box-shadow: 4px 4px 0px 0px var(--color-primary) !important; }
    .btn-nav-consult svg { margin-left: 0.5rem; order: 2; } 

    .mobile-nav-cta {
        padding: 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: auto !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 10;
        background: var(--color-primary);
    }
}

/* Logo invert — white on dark/pink backgrounds */
.mobile-nav .header__logo img, .footer .header__logo img, .footer__logo-container .header__logo img { filter: brightness(0) invert(1) !important; }

/* Logo 20% larger in mobile flyout and footer */
.mobile-nav .header__logo img { height: 43px !important; width: auto !important; }
.footer .header__logo img,
.footer__logo-container .header__logo img { height: 43px !important; width: auto !important; }

/* 11. MOBILE NAV FLYOUT */
@media (min-width: 1025px) {
    .mobile-nav,
    .mobile-nav-backdrop { display: none !important; }
}

.mobile-nav {
    position: fixed; top: 0; right: 0; left: auto;
    width: min(300px, 88vw); height: 100dvh;
    background: var(--color-primary); z-index: 9999;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: -6px 0 32px rgba(0,0,0,0.35);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='30' cy='0' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='60' cy='0' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='0' cy='30' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='30' cy='30' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='60' cy='30' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='0' cy='60' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='30' cy='60' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Ccircle cx='60' cy='60' r='1.2' fill='%23fff' opacity='0.15'/%3E%3Cline x1='0' y1='0' x2='60' y2='60' stroke='%23fff' stroke-width='0.4' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 60px 60px; pointer-events: none;
}

.mobile-nav::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0;
    width: 3px; background: rgba(255,255,255,0.3);
}

.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative; z-index: 1;
}

.mobile-nav-links {
    flex: 1; display: flex; flex-direction: column; padding: 1.5rem; gap: 0.25rem;
    position: relative; z-index: 1; overflow-y: auto;
}
.mobile-nav-links .header__link {
    display: block; padding: 0.875rem 1rem; color: rgba(255,255,255,0.85);
    font-weight: 700; font-size: 1rem; border-radius: 8px;
    border-left: 2px solid transparent; transition: all 0.2s ease;
}
.mobile-nav-links .header__link:hover,
.mobile-nav-links .header__link.header__link--active {
    background: rgba(255,255,255,0.15); color: #fff;
    border-left-color: #fff; padding-left: 1.25rem;
}

.mobile-nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px); z-index: 9998; opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

.icon-box { margin-bottom: 1.5rem; }

/* Trust Pill - Global Class */
.trust-pill {
    display: inline-flex; 
    align-items: center; 
    background: rgba(255,255,255,0.18); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    padding: 0.5rem 1.25rem; 
    border-radius: 100px; 
    margin-bottom: 1.5rem; 
    font-weight: 700; 
    font-size: 0.7rem; 
    border: 1px solid rgba(255,255,255,0.35); 
    color: #fff !important; 
    text-transform: uppercase; 
    letter-spacing: 0.08em;
}
@media (max-width: 768px) {
    .trust-pill {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0.75rem 1.5rem !important;
        height: auto !important;
    }
    .trust-pill .star-group {
        margin-right: 0 !important;
    }
}

/* Stylized Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.service-item {
    position: relative;
}
.service-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.service-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.5rem;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 54px;
}
.service-item input:checked + .service-label {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(199, 21, 133, 0.2);
}
@media (max-width: 480px) {
    .service-selection { grid-template-columns: 1fr; }
}

.btn-nav-wa svg { margin-right: 0.75rem; }
