/*
    Theme Name: Non Mobile App Landing
*/


/* ══════════════════════════════════════════════
   NONA — Landing Page Stylesheet
   Fonts: Cormorant Garamond (display) + Nunito (body)
   ══════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --salmon-light: #F3D2BE;
    --salmon-mid: #F8C2A3;
    --salmon-main: #EEB08C;
    --salmon-dark: #EDAD88;
    --blue-light: #86C0EE;
    --blue-main: #6BA9DB;
    --grey-bl: #7D90A4;
    --white: #FFFFFF;
    --off-white: #FDF7F3;
    --dark: #2B2118;
    --text-body: #4A3728;
    --text-muted: #8A7568;

    --radius-card: 20px;
    --radius-btn: 50px;
    --shadow-card: 0 8px 40px rgba(238, 176, 140, 0.18);
    --shadow-hover: 0 20px 60px rgba(238, 176, 140, 0.30);
    --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}
em { font-style: italic; color: var(--salmon-dark); }

/* ─── AOS-style fade-in ─── */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos].aos-animate  { opacity: 1; transform: none; }


/* ══════════════════════════════════════════════
   NAVBAR — Logo LEFT · Links CENTER · CTA RIGHT
══════════════════════════════════════════════ */
.nona-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}
.nona-nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 0;
    box-shadow: 0 2px 30px rgba(238, 176, 140, 0.15);
}

/* Three-column container */
.nav-three-col {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Logo col — fixed left */
.nav-logo-col {
    flex-shrink: 0;
    padding: 0;
}

/* Collapse wrapper — takes remaining space, splits into center + right */
.nav-collapse-content {
    display: flex !important;        /* override Bootstrap hidden state on desktop */
    flex: 1;
    align-items: center;
    justify-content: space-between;  /* center group left, cta group right */
}

/* Center: nav links */
.nav-links-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;           /* push to true center between logo & CTA */
    padding: 0;
}

/* Right: CTA */
.nav-cta-col {
    flex-shrink: 0;
}

/* Nav link styles */
.nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 6px 10px;
}
.nona-nav.scrolled .nav-link { color: var(--text-body) !important; }
.nav-link:hover { color: #000 !important; }

/* CTA button */
.btn-download-nav {
    background: var(--white);
    color: var(--salmon-dark) !important;
    border-radius: var(--radius-btn);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.nona-nav.scrolled .btn-download-nav {
    background: var(--salmon-main);
    color: var(--white) !important;
}
.btn-download-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(238,176,140,0.4); }

/* Logo image transition */
nav img { transition: all 0.4s ease; }
nav.scrolled img { height: 60px !important; }

/* ── Hamburger Toggler ── */
.navbar-toggler {
    border: none;
    padding: 6px;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }
.navbar-toggler:hover { background: rgba(255,255,255,0.30); }
.nona-nav.scrolled .navbar-toggler { background: rgba(238,176,140,0.15); }
.nona-nav.scrolled .navbar-toggler:hover { background: rgba(238,176,140,0.28); }

/* Custom hamburger lines (replaces Bootstrap icon) */
.hamburger-box {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}
.hamburger-line {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}
.nona-nav.scrolled .hamburger-line { background: var(--text-body); }

/* Animate to X when open */
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Dropdown ── */
@media (max-width: 991px) {

    /* Keep logo + toggler in one clean row */
    .nav-three-col {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 0 4px;
    }

    /* Full-width slide-down panel */
    .nav-collapse-content {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        background: #fff;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 16px 40px rgba(100,60,30,0.13);
        overflow: hidden;
        /* Animate open/close */
        max-height: 0;
        transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-collapse-content.show {
        max-height: 480px;
    }

    /* Override Bootstrap */
    .nav-collapse-content:not(.show) { display: flex !important; }
    .nav-collapse-content.show { display: flex !important; }

    /* Nav links list */
    .nav-links-center {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        width: 100%;
        padding: 12px 0 0;
        gap: 0;
    }

    /* Each nav item */
    .nav-links-center .nav-item {
        border-bottom: 1px solid rgba(238,176,140,0.15);
    }
    .nav-links-center .nav-item:last-child {
        border-bottom: none;
    }

    /* Each link */
    .nav-links-center .nav-link {
        color: var(--text-body) !important;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        padding: 14px 24px !important;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background 0.2s, color 0.2s, padding-left 0.2s;
    }
    .nav-links-center .nav-link::before {
        content: '';
        display: inline-block;
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--salmon-main);
        flex-shrink: 0;
        opacity: 0;
        transition: opacity 0.2s;
    }
    .nav-links-center .nav-link:hover,
    .nav-links-center .nav-link.active-link {
        background: rgba(238,176,140,0.10);
        color: var(--salmon-dark) !important;
        padding-left: 28px !important;
    }
    .nav-links-center .nav-link:hover::before,
    .nav-links-center .nav-link.active-link::before {
        opacity: 1;
    }

    /* CTA button at the bottom of menu */
    .nav-cta-col {
        padding: 16px 20px 20px;
        width: 100%;
    }
    .nav-cta-col .btn-download-nav {
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--salmon-main);
        color: #fff !important;
        padding: 13px 20px;
        font-size: 0.95rem;
        border-radius: 14px;
    }
    .nav-cta-col .btn-download-nav:hover {
        background: var(--salmon-dark);
        transform: none;
    }
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--salmon-dark) 0%, var(--salmon-mid) 45%, var(--salmon-light) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero-blob-1 { width: 500px; height: 500px; background: rgba(255,255,255,0.18); top: -100px; right: -100px; }
.hero-blob-2 { width: 350px; height: 350px; background: rgba(107,169,219,0.12); bottom: 50px; left: -100px; }

.charleston-map-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 500px;
    pointer-events: none;
    animation: mapRotate 40s linear infinite;
}
.map-svg { width: 100%; height: 100%; }
@keyframes mapRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 60px; }
.min-vh-hero { min-height: calc(100vh - 80px); }

.location-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.25); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35); color: var(--white);
    border-radius: 50px; padding: 6px 16px; font-size: 0.82rem;
    font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px;
}
.pin-pulse {
    display: inline-block; width: 8px; height: 8px;
    background: var(--white); border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hero-title { font-size: clamp(2.6rem, 5.5vw, 4.2rem); color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-title em { color: rgba(255,255,255,0.85); font-style: italic; }
.title-sub { font-size: 0.55em; font-weight: 300; letter-spacing: 0.02em; opacity: 0.8; display: block; margin-top: 4px; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.7; max-width: 480px; margin-bottom: 28px; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
    color: var(--white); border-radius: 50px; padding: 5px 14px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
}
.badge-pill i { font-size: 0.7rem; }

/* Store buttons */
.store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    border-radius: var(--radius-btn); padding: 12px 22px;
    text-decoration: none; transition: var(--transition);
    font-family: 'Nunito', sans-serif; cursor: pointer;
}
.store-btn i { font-size: 1.5rem; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn span small { font-size: 0.68rem; font-weight: 400; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
.store-btn span strong { font-size: 0.95rem; font-weight: 700; }
.apple-btn  { background: var(--dark); color: var(--white); }
.google-btn { background: var(--white); color: var(--dark); }
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); color: inherit; }
.store-btn.large { padding: 14px 26px; }
.store-btn.large i { font-size: 1.8rem; }
.store-btn.large span strong { font-size: 1.05rem; }
.store-btn.small { padding: 8px 14px; }
.store-btn.small i { font-size: 1.1rem; }
.store-btn.small span small { font-size: 0.65rem; }

.hero-container .apple-btn:hover { color: var(--white); }

.hero-phone-col { display: flex; justify-content: center; align-items: center; padding: 40px 0; }
.phone-wrapper {
    position: relative; display: inline-block;
    animation: phoneFloat 4s ease-in-out infinite;
    transform: rotate(-4deg);
    filter: drop-shadow(0 30px 60px rgba(43,33,24,0.25));
}
@keyframes phoneFloat {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50%       { transform: rotate(-4deg) translateY(-18px); }
}
.phone-glow {
    position: absolute; bottom: -20px; left: 50%;
    transform: translateX(-50%); width: 70%; height: 40px;
    background: rgba(43,33,24,0.2); border-radius: 50%;
    filter: blur(16px); animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.4; }
    50%       { transform: translateX(-50%) scaleX(0.8); opacity: 0.2; }
}
.phone-img { width: 310px; max-width: 100%; display: block; position: relative; z-index: 1; }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 60px; }


/* ══════════════════════════════════════════════
   TRUST PILLARS
══════════════════════════════════════════════ */
.trust-section { background: var(--white); padding: 80px 0 60px; }
.trust-card {
    background: var(--off-white); border-radius: var(--radius-card); padding: 36px 30px; height: 100%;
    border: 1.5px solid rgba(238,176,140,0.15); transition: var(--transition); position: relative; overflow: hidden;
}
.trust-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--salmon-main), var(--salmon-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.trust-card:hover::before { transform: scaleX(1); }
.trust-card-accent { background: linear-gradient(145deg, var(--salmon-main), var(--salmon-dark)); }
.trust-card-accent h3, .trust-card-accent p { color: var(--white); }
.trust-card-accent::before { background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2)); }
.trust-icon-wrap {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, var(--salmon-main), var(--salmon-light));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white); margin-bottom: 20px; transition: transform 0.3s ease;
}
.trust-card-accent .trust-icon-wrap { background: rgba(255,255,255,0.25); }
.trust-card:hover .trust-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.trust-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--dark); }
.trust-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }


/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.hiw-section { background: var(--off-white); padding: 80px 0; }

.section-label {
    display: inline-block;
    background: linear-gradient(90deg, var(--salmon-main), var(--salmon-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }
.section-header .section-label { display: block; }

.hiw-steps { display: flex; gap: 0; position: relative; }
.hiw-step { flex: 1; position: relative; padding: 0 20px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hiw-connector {
    position: absolute; top: 30px; right: -18%; width: 36%; height: 2px;
    background: linear-gradient(90deg, var(--salmon-main), var(--salmon-light));
}
.hiw-connector::after { content: '→'; position: absolute; right: -10px; top: -12px; color: var(--salmon-main); font-size: 1rem; }
.hiw-step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300;
    color: rgba(238,176,140,0.15); line-height: 1; margin-bottom: -10px; transition: color 0.3s;
}
.hiw-step:hover .hiw-step-num { color: rgba(238,176,140,0.35); }
.hiw-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--salmon-main), var(--salmon-dark));
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--white); margin: 0 auto 15px auto;
    box-shadow: 0 8px 24px rgba(238,176,140,0.35); transition: var(--transition);
}
.hiw-step:hover .hiw-icon { transform: scale(1.1) rotate(-5deg); }
.hiw-step-content h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.hiw-step-content p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }


/* ══════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════ */
.services-section { padding: 90px 0; background: var(--white); position: relative; overflow: hidden; }
.services-bg-blob {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(243,210,190,0.25) 0%, transparent 70%);
    border-radius: 50%; top: -100px; right: -200px; pointer-events: none;
}
.service-card {
    border-radius: var(--radius-card); border: 1.5px solid rgba(238,176,140,0.2);
    overflow: hidden; height: 100%; transition: var(--transition); cursor: default; position: relative;
}
.service-card::after {
    content: attr(data-index); position: absolute; bottom: 16px; right: 20px;
    font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300;
    color: rgba(238,176,140,0.12); line-height: 1; pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card-inner { padding: 36px 30px; height: 100%; background: var(--off-white); transition: background 0.3s; }
.service-card:hover .service-card-inner { background: var(--white); }
.service-card-featured .service-card-inner { background: linear-gradient(160deg, var(--salmon-main) 0%, var(--salmon-dark) 100%); }
.service-card-featured:hover .service-card-inner { background: linear-gradient(160deg, var(--salmon-main) 0%, #E09A70 100%); }
.service-card-featured h3, .service-card-featured p,
.service-card-featured .service-tag, .service-card-featured .service-features span { color: var(--white); }
.service-card-featured .service-features span i { color: rgba(255,255,255,0.7); }
.service-emoji { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.service-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--salmon-main); display: block; margin-bottom: 12px; }
.service-card h3 { font-size: 1.35rem; color: var(--dark); margin-bottom: 12px; }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features span { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.service-features i { color: var(--salmon-main); font-size: 1rem; }

.provider-strip { margin-top: 50px; background: linear-gradient(135deg, var(--dark), #3D2A1A); border-radius: var(--radius-card); padding: 30px 40px; }
.provider-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.provider-strip h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.provider-strip p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }
.btn-provider-cta {
    background: linear-gradient(90deg, var(--salmon-main), var(--salmon-dark));
    color: var(--white); border-radius: var(--radius-btn); padding: 12px 26px;
    font-weight: 700; font-size: 0.88rem; text-decoration: none; white-space: nowrap; transition: var(--transition);
}
.btn-provider-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(238,176,140,0.4); color: var(--white); }


/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.features-section { background: var(--off-white); padding: 90px 0; }
.feature-row { margin-bottom: 70px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-text { padding: 20px 0; }
.feature-icon-lg {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--salmon-light), var(--salmon-main));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--white); margin-bottom: 18px;
}
.feature-icon-lg.blue { background: linear-gradient(135deg, var(--blue-light), var(--blue-main)); }
.feature-text h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 14px; }
.feature-text p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: center; font-size: 0.88rem; font-weight: 600; color: var(--text-body); }
.feature-list li i { color: var(--salmon-main); font-size: 1.4rem; margin-right: 2px; }

.feature-screen {
    width: 100%; height: 600px;
    object-fit: cover; object-position: top;
    border-radius: 14px;
    border: 1.2px solid #E09A70;
    border-bottom: 5px solid #E09A70;
}


/* ══════════════════════════════════════════════
   VIDEO — with real thumbnail image
══════════════════════════════════════════════ */
.video-section { background: var(--white); padding: 80px 0; }
.video-wrapper { max-width: 1100px; margin: 0 auto; }

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%;          /* 16:9 */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(238,176,140,0.3);
    cursor: pointer;
    background: var(--dark);      /* fallback while image loads */
}

/* Thumbnail image — fills the 16:9 box */
.video-thumbnail {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.video-placeholder:hover .video-thumbnail { transform: scale(1.03); }
.video-thumbnail.hidden { display: none; }

/* Dark scrim for text/button legibility */
.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(43,33,24,0.20) 0%,
        rgba(43,33,24,0.45) 100%
    );
    z-index: 1;
}
.video-thumb-overlay.hidden { display: none; }

/* Play button */
.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--salmon-dark);
    z-index: 2;
    border: none;
    transition: var(--transition);
    animation: playPulse 2s ease-in-out infinite;
    cursor: pointer;
}
@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    50%       { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
}
.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: none;
}
.video-play-btn.hidden { display: none; }

/* Overlay label */
.video-overlay-text {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.9);
    font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    z-index: 2; white-space: nowrap;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.video-overlay-text.hidden { display: none; }


/* ══════════════════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════════════════ */
.social-section { background: var(--off-white); padding: 80px 0; }
.stats-row {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    background: var(--white); border-radius: var(--radius-card); padding: 36px 0; box-shadow: var(--shadow-card);
}
.stat-item { flex: 1; min-width: 140px; text-align: center; padding: 16px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; color: var(--salmon-dark); }
.stat-sym { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--salmon-dark); }
.stat-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(238,176,140,0.25); }

.testimonial-card {
    background: var(--white); border-radius: var(--radius-card); padding: 30px;
    border: 1.5px solid rgba(238,176,140,0.15); height: 100%; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testimonial-card-accent { background: linear-gradient(145deg, var(--salmon-main), var(--salmon-dark)); }
.testimonial-card-accent p, .testimonial-card-accent .t-stars { color: var(--white); }
.testimonial-card-accent .t-author span { color: rgba(255,255,255,0.8); }
.t-stars { font-size: 1.1rem; color: var(--salmon-dark); margin-bottom: 14px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--salmon-main), var(--salmon-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 0.9rem;
}
.testimonial-card-accent .t-avatar { background: rgba(255,255,255,0.25); }
.t-author span { font-size: 0.82rem; font-weight: 700; color: var(--text-body); }


/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--salmon-dark) 0%, var(--salmon-mid) 50%, var(--salmon-light) 100%);
    position: relative; overflow: hidden; text-align: center;
}
.cta-blob-1, .cta-blob-2 { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-blob-1 { width: 400px; height: 400px; background: rgba(255,255,255,0.15); top: -100px; left: -100px; }
.cta-blob-2 { width: 300px; height: 300px; background: rgba(107,169,219,0.12); bottom: -80px; right: -80px; }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2.4rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 500px; margin: 0 auto 10px; line-height: 1.7; }
.cta-benefit {
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px); border-radius: 16px; padding: 28px 22px; height: 100%; transition: var(--transition);
}
.cta-benefit:hover { background: rgba(255,255,255,0.28); transform: translateY(-4px); }
.cta-benefit-icon { font-size: 1.8rem; margin-bottom: 12px; color: var(--white); }
.cta-benefit h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.cta-benefit p  { color: rgba(255,255,255,0.8); font-size: 0.85rem; line-height: 1.6; margin: 0; }
.cta-section .apple-btn  { background: var(--dark); color: var(--white); }
.cta-section .google-btn { background: var(--white); color: var(--dark); }


/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-section { background: var(--white); padding: 90px 0; }
.about-logo-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; padding: 0; }
.about-tag-float {
    position: absolute; bottom: 10px; right: 20px;
    background: var(--white); border: 1.5px solid rgba(238,176,140,0.3);
    border-radius: 50px; padding: 8px 18px; font-size: 0.82rem; font-weight: 700;
    color: var(--salmon-dark); box-shadow: 0 4px 16px rgba(238,176,140,0.2);
    animation: tagBob 3s ease-in-out infinite;
}
@keyframes tagBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.about-text { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-value-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--off-white); border: 1.5px solid rgba(238,176,140,0.25);
    border-radius: 50px; padding: 7px 16px; font-size: 0.8rem; font-weight: 700; color: var(--salmon-dark);
}
.about-value-pill i { font-size: 0.75rem; }


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.nona-footer { background: var(--dark); padding: 0; position: relative; }
.footer-wave { line-height: 0; position: absolute; top: -44px; width: 100%; }
.footer-wave svg { display: block; width: 100%; height: 50px; }
.footer-top { padding: 60px 0 40px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--salmon-main); margin-bottom: 10px; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 6px; }
.footer-loc { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-heading { color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Nunito', sans-serif; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--salmon-main); }
.footer-contact-text { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 8px; }
.footer-email { color: var(--salmon-main); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.footer-email:hover { color: var(--salmon-light); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55); font-size: 1rem; text-decoration: none; transition: var(--transition);
}
.footer-socials a:hover { background: var(--salmon-main); border-color: var(--salmon-main); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0; color: rgba(255,255,255,0.3); font-size: 0.78rem;
}


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 991px) {
    .phone-img { width: 200px; }
    .hiw-steps { flex-direction: column; align-items: center; gap: 30px; }
    .hiw-connector { display: none; }
    .hiw-step { max-width: 360px; }
    .provider-strip-inner { flex-direction: column; text-align: center; }
    .feature-text { order: 2; }
    .feature-visual { order: 1; margin-bottom: 20px; }
    .stats-row { gap: 0; }
    .stat-divider { display: none; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.4rem; }
    .hero-section { padding-top: 90px; }
    .section-title { font-size: 1.8rem; }
    .trust-section { padding: 50px 0; }
    .hiw-section, .services-section, .features-section,
    .video-section, .social-section, .about-section { padding: 60px 0; }
    .cta-section { padding: 70px 0; }
    .phone-img { width: 130px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .store-btn span strong { font-size: 0.85rem; }
}

@media only screen and (max-width: 500px) {
    .feature-screen { height: auto; }
    .feature-text { padding: 0 16px; }
    .hero-container {
    padding-top: 0px;
    padding-bottom: 20px;
}
body, html {
    overflow-x: hidden;
}
}


.btn-download-nav:hover {
    color: #000!important;
}

.trust-card-accent p, .trust-card-accent h3, .service-card-featured p, .service-card-featured h3, .testimonial-card-accent p {
    color: #fff;
}
/* ══════════════════════════════════════════════
   ADDITIONS & REVISIONS — Client Round 2
   ══════════════════════════════════════════════ */

/* ─── HIW Info Cards ─── */
.hiw-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px rgba(200,120,80,0.09);
  border-left: 4px solid var(--salmon);
}
.hiw-info-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.hiw-info-card p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}
.hiw-info-icon {
  font-size: 1.5rem;
  color: var(--salmon);
  margin-bottom: .75rem;
}
.hiw-feature-block {
  padding: 2.5rem 0 1rem;
}

/* ─── Work With Nona Section ─── */
.work-with-nona-section {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* ─── Flyer Image ─── */
.flyer-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(200,120,80,0.15);
  display: inline-block;
  max-width: 100%;
}
.nona-flyer-img {
  width: 100%;
  max-width: 480px;
  display: block;
  border-radius: 20px;
}

/* ─── Charleston Icon Below Flyer ─── */
.charleston-icon-below {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.charleston-label-svg {
  width: 200px;
  height: auto;
}

/* ─── Contact Section ─── */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fdf6f0 0%, #fff5ef 100%);
}
.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(200,120,80,0.12);
}
.contact-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.contact-input {
  width: 100%;
  border: 2px solid #f0e0d6;
  border-radius: 12px;
  padding: .875rem 1.125rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: #fdf9f7;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.contact-input:focus {
  border-color: var(--salmon);
  box-shadow: 0 0 0 3px rgba(238,176,140,0.2);
  background: #fff;
}
.contact-textarea {
  resize: vertical;
  min-height: 130px;
}
.btn-contact-submit {
  background: var(--salmon-mid);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 1rem 2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}
.btn-contact-submit:hover {
  background: var(--salmon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,120,80,0.25);
}
.contact-feedback {
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .95rem;
  margin-bottom: 1rem;
  font-family: 'Nunito', sans-serif;
}
.contact-feedback.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.contact-feedback.error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
.contact-info-row {
  text-align: center;
  border-top: 1px solid #f0e0d6;
  padding-top: 1.25rem;
}
.contact-email-link {
  color: var(--salmon-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color .2s;
}
.contact-email-link:hover {
  color: var(--salmon);
}

/* ─── Smooth scroll ─── */
html {
  scroll-behavior: smooth;
}

/* ─── Contact form mobile fix ─── */
@media (max-width: 767px) {
  .contact-card {
    padding: 2rem 1.25rem;
    overflow: visible;
  }
  .btn-contact-submit {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 0.5rem;
    width: 100%;
  }
}