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

/* ============================================
   MERIDIAN — PATTERN B
   Colored nav (not flat white), pill buttons,
   rounded-24px cards, dawn-mesh accents.
============================================ */
:root {
    --ink:            #0b1b22;
    --body-c:         #344750;
    --muted-c:        #6b7f87;
    --muted-2:        #93a3a9;
    --canvas:         #ffffff;
    --canvas-parchment:#f6f5f1;
    --hairline:       rgba(11,27,34,0.08);
    --hairline-strong:rgba(11,27,34,0.14);
    --accent:         #0d6e6a;
    --accent-deep:    #0a5552;
    --accent-soft:    #e3f3f1;
    --coral:          #ff7a59;
    --coral-deep:     #e4603f;
    --coral-soft:     #fff0ea;
    --danger:         #c4453a;
    --danger-bg:      #fdeeec;
    --danger-border:  #f3c9c4;
    --success:        #1c8a5a;
    --success-bg:     #eaf7f0;
    --success-border: #bfe5d2;
    --font-display:   'Fraunces', Georgia, serif;
    --font-body:      'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono:      'JetBrains Mono', monospace;
    --radius-sm:    16px;
    --radius:       24px;

    --white:        var(--canvas);
    --off-white:    var(--canvas-parchment);
    --cream:        var(--canvas-parchment);
    --warm-gray:    var(--hairline-strong);
    --mid-gray:     var(--muted-2);
    --text-muted:   var(--muted-c);
    --text-body:    var(--body-c);
    --text-dark:    var(--ink);
    --gold:         var(--coral);
    --gold-light:   var(--coral-deep);
    --gold-pale:    var(--coral-soft);
    --indigo:       var(--accent);
    --indigo-light: var(--accent-deep);
    --border:       rgba(13,110,106,0.18);
    --border-soft:  var(--hairline);
}

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

/* dawn-mesh wash removed to match clean white screenshot */

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.3s;
}
.nav.scrolled {
    box-shadow: 0 4px 24px rgba(11,27,34,0.06);
}
.nav-inner {
    max-width: 1160px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; position: relative; z-index: 1;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.4rem; color: var(--ink);
    letter-spacing: -0.4px;
}
.nav-logo-mark {
    width: 38px; height: 38px;
    background: var(--accent);
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 16px; color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13,110,106,0.25);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; right: 0; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s ease;
    border-radius: 2px;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-btns { display: flex; gap: 12px; align-items: center; }
.btn-ghost {
    padding: 9px 18px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; color: var(--ink);
    cursor: pointer; transition: all 0.2s;
    font-family: var(--font-body);
}
.btn-ghost:hover { background: rgba(11,27,34,0.04); }
.btn-primary {
    padding: 10px 24px;
    background: #fff;
    border: 1.5px solid var(--warm-gray);
    border-radius: 50px;
    font-size: 0.9rem; font-weight: 700; color: var(--ink);
    cursor: pointer; transition: all 0.25s;
    font-family: var(--font-body);
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 6px rgba(11,27,34,0.03);
}
.btn-primary:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
    color: var(--accent-deep);
    box-shadow: 0 6px 16px rgba(13,110,106,0.1);
}

.nav-mobile-btn {
    display: none; background: none; border: none;
    color: #fff; font-size: 1.3rem; cursor: pointer;
}

/* Mobile panel */
.mobile-overlay {
    display: none; position: fixed; inset: 0; z-index: 1050;
    background: rgba(11,27,34,0.5); backdrop-filter: blur(4px);
    opacity: 0; transition: opacity 0.3s ease;
}
.mobile-overlay.open { display: block; opacity: 1; }
.mobile-panel {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100%;
    z-index: 1060; background: var(--white);
    border-left: 1px solid var(--border-soft);
    display: flex; flex-direction: column;
    padding: 88px 32px 36px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.mobile-panel.open { right: 0; }
.mobile-panel a {
    display: block; padding: 15px 0;
    font-size: 1rem; font-weight: 600; color: var(--text-muted);
    border-bottom: 1px solid var(--border-soft);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-panel a:hover { color: var(--text-dark); padding-left: 6px; }
.mobile-panel .mobile-btns {
    margin-top: auto; display: flex; flex-direction: column;
    gap: 10px; padding-top: 28px;
}
.mobile-panel .mobile-btns a {
    text-align: center; border-radius: 50px;
    border-bottom: none; padding: 13px;
}

@media (max-width: 768px) {
    .nav-links, .nav-btns { display: none; }
    .nav-mobile-btn { display: block; }
}

/* ── GOLD DIVIDER LINE (now teal/coral) ── */
.gold-line {
    display: flex; align-items: center; gap: 12px;
    margin: 0 auto 28px;
    width: 160px;
}
.gold-line::before, .gold-line::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-line::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.gold-line-diamond {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ── HERO ── */
.hero {
    padding: 130px 0 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
@media (max-width: 900px) {
    .hero { padding: 88px 0 0; }
}
@media (max-width: 480px) {
    .hero { padding: 78px 0 0; }
}

/* decorative arcs removed */

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 80px;
    position: relative; z-index: 1;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding-bottom: 48px;
    }
    .hero-visual { order: 1; }
}
@media (max-width: 480px) {
    .hero-inner { gap: 18px; padding-bottom: 36px; }
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
}
.hero-eyebrow-line {
    width: 36px; height: 1px;
    background: var(--gold);
}
.hero-eyebrow span {
    font-family: var(--font-mono);
    font-size: 0.7rem; font-weight: 500;
    color: var(--accent-deep);
    text-transform: uppercase; letter-spacing: 3px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 22px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent-deep);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .hero-sub { margin: 0 auto 36px; }
}

.hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 900px) {
    .hero-actions { justify-content: center; }
}
.btn-hero {
    padding: 15px 36px;
    background: var(--indigo);
    border: none; border-radius: 50px;
    font-size: 0.95rem; font-weight: 600; color: #fff;
    cursor: pointer; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}
.btn-hero:hover {
    background: var(--indigo-light);
    box-shadow: 0 12px 36px rgba(13,110,106,0.3);
    transform: translateY(-2px);
    color: #fff;
}
.btn-hero-ghost {
    padding: 14px 34px;
    background: transparent;
    border: 1.5px solid var(--warm-gray);
    border-radius: 50px;
    font-size: 0.95rem; font-weight: 600; color: var(--text-body);
    cursor: pointer; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body);
}
.btn-hero-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
}

/* Hero visual / phone mockup */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-phone {
    width: 280px;
    background: var(--white);
    border: 1px solid var(--warm-gray);
    border-radius: 36px;
    padding: 28px 24px;
    box-shadow:
        0 2px 4px rgba(11,27,34,0.04),
        0 8px 24px rgba(11,27,34,0.06),
        0 32px 80px rgba(11,27,34,0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    animation: float 4s ease-in-out infinite;
}
@media (max-width: 480px) {
    .hero-phone { width: 230px; padding: 20px 16px; border-radius: 28px; }
    .float-card { display: none; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.phone-notch {
    width: 80px; height: 6px;
    background: var(--warm-gray);
    border-radius: 3px;
    margin: 0 auto 20px;
}
.phone-app-row {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
    padding: 12px;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid var(--border-soft);
}
.phone-app-icon {
    width: 36px; height: 36px; border-radius: 12px;
    display: grid; place-items: center;
    font-size: 16px; flex-shrink: 0;
}
.phone-app-icon.wa { background: #25d36620; color: #25d366; }
.phone-app-icon.gg { background: #4285f420; color: #4285f4; }
.phone-app-icon.tg { background: #229ed920; color: #229ed9; }
.phone-app-text { flex: 1; }
.phone-app-name {
    font-size: 0.78rem; font-weight: 600; color: var(--text-dark);
    line-height: 1;
}
.phone-app-code {
    font-family: var(--font-mono);
    font-size: 0.72rem; color: var(--text-muted);
    margin-top: 3px;
}
.phone-badge {
    background: #1c8a5a15;
    border: 1px solid #1c8a5a30;
    color: #1c8a5a;
    font-family: var(--font-mono);
    font-size: 0.65rem; font-weight: 500;
    padding: 2px 8px; border-radius: 20px;
    flex-shrink: 0;
}
.phone-country-strip {
    display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px;
}
.country-chip {
    background: var(--gold-pale);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.7rem; font-weight: 500; color: var(--coral-deep);
    padding: 3px 10px;
    display: inline-flex; align-items: center; gap: 4px;
}

/* floating cards */
.float-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    box-shadow: 0 10px 28px rgba(11,27,34,0.1);
    font-size: 0.8rem; font-weight: 600; color: var(--text-dark);
    white-space: nowrap;
    animation: float-card 5s ease-in-out infinite;
}
.float-card-1 {
    top: 10%; right: -40px;
    animation-delay: -2s;
}
.float-card-2 {
    bottom: 18%; left: -50px;
    animation-delay: -1s;
}
@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}
.float-card .fc-label {
    font-size: 0.68rem; color: var(--text-muted); font-weight: 400;
    margin-bottom: 2px;
}
.float-card .fc-val {
    color: var(--accent-deep); font-weight: 800; font-size: 0.95rem;
}
.float-card .fc-val.dark {
    color: var(--ink);
}
.fc-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%; background: #1c8a5a;
    margin-right: 5px;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--indigo);
    padding: 36px 0;
    position: relative; z-index: 1;
}
.stats-strip::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h-5V25H0v-2h5v-2.5H20zm7.5-7.5c0 3.59-1.408 6.845-3.688 9.258l-1.07-1.08A10.458 10.458 0 0 0 25 13c0-2.791-1.085-5.328-2.858-7.217l1.07-1.072A11.95 11.95 0 0 1 27.5 13zM13 0C5.82 0 0 5.82 0 13s5.82 13 13 13 13-5.82 13-13S20.18 0 13 0zm0 24C6.925 24 2 19.075 2 13S6.925 2 13 2s11 4.925 11 11-4.925 11-11 11z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.stats-inner {
    display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 0 48px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    height: 36px; width: 1px;
    background: rgba(255,255,255,0.12);
}
.stat-val {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 600; color: #fff;
    line-height: 1;
}
.stat-val em { font-style: normal; color: var(--coral); }
.stat-lbl {
    font-size: 0.78rem; font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .stat-item { padding: 12px 24px; }
    .stat-item + .stat-item::before { display: none; }
}

/* ── SECTION SHARED ── */
.sect { padding: 120px 0; }
.sect-alt { background: #fdfdfd; }

.sect-header {
    text-align: center; margin-bottom: 64px;
}
.sect-eyebrow {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(13,110,106, 0.08); color: var(--accent-deep);
    padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.sect-eyebrow span {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px;
}
.sect-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700; letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
}
.sect-header h2 em { font-style: italic; color: var(--accent-deep); }
.sect-header p {
    font-size: 1.05rem; color: var(--text-muted); font-weight: 400;
    max-width: 540px; margin: 0 auto; line-height: 1.7;
}

/* ── PLATFORMS ── */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.platform-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.25s;
    cursor: default;
}
.platform-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.platform-card i {
    font-size: 1.6rem; margin-bottom: 10px;
    display: block;
    color: var(--accent-deep);
    transition: transform 0.25s;
}
.platform-card:hover i { transform: scale(1.1); }
.platform-card span {
    font-size: 0.84rem; font-weight: 600; color: var(--text-body);
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feat-card {
    background: var(--white);
    padding: 36px 32px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover {
    background: var(--off-white);
}

.feat-num {
    font-family: var(--font-mono);
    font-size: 0.65rem; font-weight: 500;
    color: var(--muted-2);
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative; z-index: 1;
}
.feat-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 1.1rem; margin-bottom: 16px;
    position: relative; z-index: 1;
}
.fi-1 { background: rgba(13,110,106,0.1); color: var(--accent-deep); }
.fi-2 { background: rgba(255,122,89,0.12); color: var(--coral-deep); }
.fi-3 { background: rgba(28,138,90,0.1); color: #1c8a5a; }
.fi-4 { background: rgba(13,86,124,0.1); color: #0d567c; }
.fi-5 { background: rgba(196,69,58,0.1); color: #c4453a; }
.fi-6 { background: rgba(124,58,237,0.1); color: #7c3aed; }

.feat-card h3 {
    font-size: 1rem; font-weight: 600; color: var(--text-dark);
    margin-bottom: 8px;
    position: relative; z-index: 1;
}
.feat-card p {
    font-size: 0.875rem; color: var(--text-muted);
    font-weight: 400; line-height: 1.65;
    position: relative; z-index: 1;
}

/* ── HOW IT WORKS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.steps-grid::after {
    content: '';
    position: absolute;
    top: 28px; left: calc(12.5%);
    right: calc(12.5%);
    height: 1px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--accent) 100%);
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::after { display: none; }
}
@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
}

.step-card {
    text-align: center; padding: 0 24px 24px;
    position: relative; z-index: 1;
}
.step-circle {
    width: 56px; height: 56px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: grid; place-items: center;
    margin: 0 auto 24px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(11,27,34,0.06);
    transition: all 0.3s;
}
.step-card:hover .step-circle {
    border-color: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-soft), 0 2px 8px rgba(11,27,34,0.06);
}
.step-num {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    color: var(--accent-deep);
}
.step-card h3 {
    font-size: 0.95rem; font-weight: 600; color: var(--text-dark);
    margin-bottom: 6px;
}
.step-card p {
    font-size: 0.82rem; color: var(--text-muted);
    font-weight: 400; line-height: 1.6;
}

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border-soft);
}
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 0;
    cursor: pointer; gap: 16px;
}
.faq-q h4 {
    font-size: 0.975rem; font-weight: 600;
    color: var(--text-dark); flex: 1;
    font-family: var(--font-body);
}
.faq-toggle {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--border-soft);
    display: grid; place-items: center;
    font-size: 0.68rem; color: var(--text-muted);
    transition: all 0.25s; flex-shrink: 0;
}
.faq-item.open .faq-toggle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(180deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 160px; }
.faq-a p {
    padding-bottom: 24px;
    font-size: 0.9rem; color: var(--text-muted);
    font-weight: 400; line-height: 1.75;
}

/* ── CTA ── */
.cta-sect { padding: 0 0 96px; }
.cta-box {
    background:
        linear-gradient(180deg, rgba(11,27,34,0.78) 0%, rgba(8,20,26,0.92) 100%),
        url("https://images.pexels.com/photos/4664063/pexels-photo-4664063.jpeg?auto=compress&cs=tinysrgb&w=1600") center 38% / cover no-repeat,
        var(--indigo);
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 100%, rgba(255,122,89,0.18), transparent),
        radial-gradient(ellipse 40% 40% at 90% 0%, rgba(13,110,106,0.22), transparent);
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    border: 1px solid rgba(255,122,89,0.18);
    border-radius: 50%;
}
.cta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
    position: relative; z-index: 1;
}
.cta-eyebrow-line { width: 24px; height: 1px; background: var(--coral); }
.cta-eyebrow span {
    font-family: var(--font-mono);
    font-size: 0.68rem; font-weight: 500;
    color: var(--coral);
    text-transform: uppercase; letter-spacing: 3px;
}
.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600; color: #fff;
    margin-bottom: 12px;
    position: relative; z-index: 1;
    line-height: 1.1;
}
.cta-box h2 em { font-style: italic; color: var(--coral); }
.cta-box p {
    font-size: 1rem; color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    position: relative; z-index: 1;
}
.btn-hero-gold {
    padding: 15px 38px;
    background: linear-gradient(135deg, var(--coral), var(--coral-deep));
    border: none; border-radius: 50px;
    font-size: 0.95rem; font-weight: 700; color: #fff;
    cursor: pointer; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body);
    position: relative; z-index: 1;
    letter-spacing: 0.01em;
}
.btn-hero-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255,122,89,0.4);
    color: #fff;
}

@media (max-width: 600px) { .cta-box { padding: 48px 28px; } }

/* ── FOOTER ── */
.footer {
    background: var(--text-dark);
    padding: 48px 0 28px;
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
}
.footer-brand {
    display: flex; align-items: center; gap: 10px;
}
.footer-logo-mark {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--accent), var(--coral));
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 12px; color: #fff;
    font-family: var(--font-mono);
}
.footer-brand-name {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.05rem; color: #fff;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
    font-weight: 500; transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }
.footer-copy {
    width: 100%; text-align: center;
    font-size: 0.75rem; color: rgba(255,255,255,0.25);
    font-weight: 400; margin-top: 20px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Contact block in footer */
.footer-contact {
    width: 100%;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 14px 28px;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-contact-item {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 0.85rem; color: rgba(255,255,255,0.65);
    font-weight: 500; transition: color 0.2s;
    white-space: nowrap;
}
.footer-contact-item i {
    color: var(--coral);
    font-size: 0.95rem;
    width: 16px; text-align: center;
}
.footer-contact-item:hover { color: var(--coral); }
.footer-contact-item:hover i { color: #fff; }
@media (max-width: 600px) {
    .footer-contact { gap: 12px 18px; }
    .footer-contact-item { font-size: 0.8rem; }
}

/* ── TRUST STRIP ── */
.trust-strip {
    padding: 20px 0 0;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
}
.trust-badge i { color: var(--accent-deep); font-size: 0.85rem; }

@media (max-width: 900px) {
    .trust-strip { justify-content: center; }
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
