/*
 * T4Rent Login — Standalone Page Styles
 * Layout: Light hero · Clean form card · Alternating slides
 * Brand: T4R Navy #0D1F3C · T4R Orange #F25C05 · Ice #F7F9FC
 */

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
    --t4r-navy:          #0D1F3C;
    --t4r-navy-hover:    #162850;
    --t4r-navy-surface:  rgba(13, 31, 60, 0.06);
    --t4r-orange:        #F25C05;
    --t4r-orange-hover:  #D44E04;
    --t4r-orange-dim:    rgba(242, 92, 5, 0.08);
    --t4r-orange-border: rgba(242, 92, 5, 0.22);
    --t4r-white:         #FFFFFF;
    --t4r-ice:           #F7F9FC;
    --t4r-outline:       #DDE3EE;
    --t4r-slate:         #1A1A2E;
    --t4r-steel:         #4A5568;
    --t4r-muted:         #6B7280;
    --t4r-input-bg:      #FFFFFF;
    --t4r-input-border:  #DDE3EE;
    --t4r-radius:        14px;
    --t4r-radius-sm:     8px;
    --t4r-radius-lg:     20px;
    --t4r-font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Semantic */
    --t4r-success:       #16A34A;
    --t4r-success-bg:    #F0FDF4;
    --t4r-warning:       #D97706;
    --t4r-warning-bg:    #FFFBEB;
    --t4r-error:         #DC2626;
    --t4r-error-bg:      #FEF2F2;
    --t4r-info:          #2563EB;
    --t4r-info-bg:       #EFF6FF;

    /* Legacy aliases for slides */
    --af-navy:        #0D1F3C;
    --af-navy-dark:   #080C16;
    --af-navy-mid:    #162850;
    --af-teal:        #F25C05;
    --af-teal-dim:    rgba(242, 92, 5, 0.08);
    --af-teal-border: rgba(242, 92, 5, 0.22);
    --af-white:       #FFFFFF;
    --af-gray-50:     #F7F9FC;
    --af-gray-100:    #F0F3F8;
    --af-gray-200:    #DDE3EE;
    --af-gray-300:    #C4CDD8;
    --af-gray-400:    #6B7280;
    --af-gray-500:    #4A5568;
    --af-gray-600:    #1A1A2E;
    --af-gray-800:    #0D1F3C;
    --af-radius:      14px;
    --af-radius-sm:   8px;
    --af-radius-lg:   20px;
    --af-font:        'Inter', sans-serif;
    --af-font-display:'Inter', sans-serif;
}

/* ─── BASE ────────────────────────────────────────────────── */
body {
    font-family: var(--t4r-font);
    background: var(--t4r-white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    color: var(--t4r-slate);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════════
   HERO — Light canvas
══════════════════════════════════════════════════════════ */

.t4r-hero {
    min-height: 100vh;
    background: var(--t4r-ice);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Subtle dot grid */
.t4r-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(13,31,60,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Top-right decorative navy shape */
.t4r-hero::after {
    content: '';
    position: absolute;
    top: -180px; right: -100px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,31,60,0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Bottom-left orange accent orb */
.t4r-glow-bottom {
    position: absolute;
    bottom: -100px; left: 8%;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,92,5,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.t4r-topbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 52px;
    background: var(--t4r-white);
    border-bottom: 1px solid var(--t4r-outline);
    box-shadow: 0 1px 3px rgba(13,31,60,0.06);
}

.t4r-logo { display: flex; align-items: baseline; }
.t4r-logo-bold  { font-size: 22px; font-weight: 900; color: var(--t4r-navy); letter-spacing: -0.5px; }
.t4r-logo-light { font-size: 22px; font-weight: 300; color: var(--t4r-orange); letter-spacing: -0.5px; }

.t4r-topbar-nav { display: flex; align-items: center; gap: 32px; }
.t4r-topbar-link {
    font-size: 13px; font-weight: 500;
    color: var(--t4r-steel);
    transition: color 0.2s;
}
.t4r-topbar-link:hover { color: var(--t4r-navy); }

.t4r-topbar-cta {
    font-size: 13px; font-weight: 700;
    color: var(--t4r-orange);
    padding: 8px 22px;
    border: 2px solid var(--t4r-orange);
    border-radius: 9999px;
    transition: background 0.2s, color 0.2s;
}
.t4r-topbar-cta:hover { background: var(--t4r-orange); color: #fff; }

/* ── HERO BODY ──────────────────────────────────────────── */
.t4r-hero-body {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 72px;
    padding: 64px 52px 80px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* LEFT — brand content */
.t4r-hero-content {
    flex: 1.15;
    display: flex;
    flex-direction: column;
}

.t4r-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--t4r-orange);
    margin-bottom: 22px;
}
.t4r-eyebrow::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--t4r-orange);
    display: block;
}

.t4r-headline {
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 900;
    color: var(--t4r-navy);
    line-height: 1.10;
    letter-spacing: -2px;
    margin-bottom: 22px;
}
.t4r-headline-accent { color: var(--t4r-orange); }

.t4r-lead {
    font-size: 15px;
    color: var(--t4r-steel);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 44px;
}

/* Stats */
.t4r-stats {
    display: flex;
    gap: 0;
    margin-bottom: 52px;
}
.t4r-stat {
    padding: 0 32px 0 0;
    margin-right: 32px;
    border-right: 1px solid var(--t4r-outline);
}
.t4r-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.t4r-stat-val {
    font-size: 30px; font-weight: 900;
    color: var(--t4r-navy);
    letter-spacing: -1px; line-height: 1;
    margin-bottom: 5px;
}
.t4r-stat-val span { color: var(--t4r-orange); }
.t4r-stat-label { font-size: 11px; color: var(--t4r-muted); font-weight: 500; line-height: 1.4; }

/* Feature list */
.t4r-features { display: flex; flex-direction: column; gap: 14px; }
.t4r-feature {
    display: flex; align-items: center; gap: 13px;
    opacity: 0;
    animation: fadeSlideIn 0.4s ease forwards;
}
.t4r-feature:nth-child(1) { animation-delay: 0.5s; }
.t4r-feature:nth-child(2) { animation-delay: 0.7s; }
.t4r-feature:nth-child(3) { animation-delay: 0.9s; }

.t4r-feature-icon {
    width: 36px; height: 36px;
    border-radius: var(--t4r-radius-sm);
    background: var(--t4r-orange-dim);
    border: 1px solid var(--t4r-orange-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--t4r-orange); font-size: 14px;
}
.t4r-feature-text { font-size: 13px; color: var(--t4r-steel); font-weight: 500; }

/* Scroll hint */
.t4r-scroll-hint { margin-top: 44px; }
.t4r-scroll-hint a {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--t4r-muted); font-weight: 500;
    transition: color 0.2s;
    animation: bounceY 2s ease-in-out infinite;
}
.t4r-scroll-hint a:hover { color: var(--t4r-orange); }

/* RIGHT — Clean form card */
.t4r-hero-form { flex: 0 0 400px; }

.t4r-form-card {
    background: var(--t4r-white);
    border: 1px solid var(--t4r-outline);
    border-radius: var(--t4r-radius-lg);
    padding: 40px 36px;
    box-shadow:
        0 4px 6px rgba(13,31,60,0.04),
        0 20px 60px rgba(13,31,60,0.10);
    position: relative;
    overflow: hidden;
}
/* Top edge orange accent line */
.t4r-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--t4r-orange);
    border-radius: var(--t4r-radius-lg) var(--t4r-radius-lg) 0 0;
}

.t4r-form-header { margin-bottom: 28px; }
.t4r-form-title {
    font-size: 22px; font-weight: 800;
    color: var(--t4r-navy);
    margin-bottom: 5px; letter-spacing: -0.3px;
}
.t4r-form-subtitle { font-size: 13px; color: var(--t4r-steel); }

.t4r-form-group { margin-bottom: 18px; }

.t4r-label {
    display: block;
    font-size: 10px; font-weight: 700;
    color: var(--t4r-steel);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
}

.t4r-input-wrap { position: relative; }

.t4r-input {
    width: 100%; height: 46px;
    padding: 0 14px;
    background: var(--t4r-ice);
    border: 1px solid var(--t4r-input-border);
    border-radius: var(--t4r-radius-sm);
    font-size: 14px; font-family: var(--t4r-font);
    color: var(--t4r-slate);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.t4r-input::placeholder { color: #B0BAC9; }
.t4r-input:focus {
    border-color: var(--t4r-orange);
    background: var(--t4r-white);
    box-shadow: 0 0 0 3px rgba(242,92,5,0.10);
}
.t4r-input-with-icon { padding-right: 44px; }

.t4r-input-toggle {
    position: absolute; right: 13px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: #B0BAC9;
    cursor: pointer; font-size: 13px; padding: 4px;
    transition: color 0.2s;
}
.t4r-input-toggle:hover { color: var(--t4r-orange); }

.t4r-form-inline {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.t4r-link {
    font-size: 12px; color: var(--t4r-orange); font-weight: 600;
    transition: opacity 0.2s;
}
.t4r-link:hover { opacity: 0.75; }
.t4r-link-muted {
    font-size: 12px; color: var(--t4r-muted); cursor: pointer;
    transition: color 0.2s;
}
.t4r-link-muted:hover { color: var(--t4r-navy); }

.t4r-recaptcha-wrap {
    transform: scale(0.87);
    transform-origin: left center;
    margin: 16px 0 4px;
}

/* Submit button — orange on white */
.t4r-btn-submit {
    width: 100%; height: 48px;
    background: var(--t4r-orange);
    color: #FFFFFF;
    border: none;
    border-radius: var(--t4r-radius-sm);
    font-size: 14px; font-weight: 700;
    font-family: var(--t4r-font);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; letter-spacing: 0.3px;
    margin-top: 14px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.t4r-btn-submit:hover {
    background: var(--t4r-orange-hover);
    box-shadow: 0 4px 24px rgba(242,92,5,0.30);
}
.t4r-btn-submit:active { transform: scale(0.99); }

.t4r-loading { display: none; text-align: center; padding: 10px 0; }
.t4r-loading-text {
    font-size: 13px; color: var(--t4r-steel);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.t4r-dots span {
    display: inline-block; width: 5px; height: 5px;
    border-radius: 50%; background: var(--t4r-orange);
    animation: dotBounce 1.2s infinite ease-in-out;
}
.t4r-dots span:nth-child(2) { animation-delay: 0.2s; }
.t4r-dots span:nth-child(3) { animation-delay: 0.4s; }

.t4r-divider {
    display: flex; align-items: center; gap: 12px;
    margin: 22px 0;
}
.t4r-divider::before,
.t4r-divider::after { content: ''; flex: 1; height: 1px; background: var(--t4r-outline); }
.t4r-divider span { font-size: 10px; color: var(--t4r-muted); font-weight: 700; letter-spacing: 1.5px; }

.t4r-signup { text-align: center; font-size: 13px; color: var(--t4r-steel); }
.t4r-signup a { color: var(--t4r-orange); font-weight: 700; margin-left: 4px; }
.t4r-signup a:hover { opacity: 0.8; }

/* ══════════════════════════════════════════════════════════
   SLIDES — alternating light palette
══════════════════════════════════════════════════════════ */
.af-slide { padding: 100px 52px; position: relative; overflow: hidden; }
.af-slide-inner { max-width: 1120px; margin: 0 auto; width: 100%; }
.af-slide-inner-center { text-align: center; }

.af-slide-navy  { background: var(--t4r-white); }
.af-slide-white { background: var(--t4r-ice); }
.af-slide-dim   { background: var(--t4r-white); }
.af-slide-ai    { background: var(--t4r-ice); }
.af-slide-stats { background: var(--t4r-navy); }
.af-slide-cta   { background: var(--t4r-navy); }

/* Eyebrow / section tags */
.af-eyebrow, .af-section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--t4r-orange);
    margin-bottom: 16px;
}
.af-eyebrow::before, .af-section-tag::before {
    content: ''; width: 20px; height: 1.5px;
    background: var(--t4r-orange); display: block;
}
.af-eyebrow-teal, .af-tag-teal { color: var(--t4r-orange); }

.af-slide-headline {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900; color: var(--t4r-navy);
    line-height: 1.12; letter-spacing: -1px;
    margin-bottom: 18px;
}
/* Headlines inside dark slides */
.af-slide-stats .af-cta-headline,
.af-slide-cta .af-cta-headline,
.af-slide-stats .af-slide-headline,
.af-slide-cta .af-slide-headline { color: #FFFFFF; }

.af-dark-text { color: var(--t4r-navy); }
.af-teal-text { color: var(--t4r-orange); }

.af-slide-lead {
    font-size: 16px; color: var(--t4r-steel);
    max-width: 600px; line-height: 1.7;
    margin-bottom: 56px;
}
.af-lead-dark { color: var(--t4r-steel); }
.af-slide-inner-center .af-slide-lead { margin-left: auto; margin-right: auto; }
/* Lead inside dark slides */
.af-slide-stats .af-slide-lead,
.af-slide-cta .af-slide-lead,
.af-slide-stats .af-cta-lead,
.af-slide-cta .af-cta-lead { color: rgba(255,255,255,0.65); }

/* ── PILLARS ────────────────────────────────────────── */
.af-pillars {
    display: flex; align-items: center;
    justify-content: center; gap: 0; margin-top: 48px;
}
.af-pillar { padding: 0 48px; }
.af-pillar-num {
    font-size: 52px; font-weight: 900;
    color: var(--t4r-orange); letter-spacing: -2px;
    line-height: 1; margin-bottom: 8px;
}
.af-pillar-label { font-size: 13px; color: var(--t4r-steel); font-weight: 500; line-height: 1.4; }
.af-pillar-divider { width: 1px; height: 64px; background: var(--t4r-outline); flex-shrink: 0; }

/* ── AUDIENCE ───────────────────────────────────────── */
.af-audience-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 16px; margin-top: 48px;
}
.af-audience-card {
    background: var(--t4r-white);
    border: 1px solid var(--t4r-outline);
    border-radius: var(--t4r-radius); padding: 28px 22px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.af-audience-card:hover {
    border-color: var(--t4r-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(242,92,5,0.08);
}
.af-audience-card-featured {
    border-color: var(--t4r-orange);
    background: var(--t4r-orange-dim);
}
.af-audience-card-featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--t4r-orange);
    border-radius: var(--t4r-radius) var(--t4r-radius) 0 0;
}
.af-audience-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--t4r-orange); color: #fff;
    font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 12px; border-radius: 9999px; white-space: nowrap;
}
.af-audience-icon {
    width: 44px; height: 44px; border-radius: var(--t4r-radius-sm);
    background: var(--t4r-ice); border: 1px solid var(--t4r-outline);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 18px; color: var(--t4r-muted);
}
.af-audience-icon-teal {
    background: var(--t4r-orange-dim); border-color: var(--t4r-orange-border); color: var(--t4r-orange);
}
.af-audience-title { font-size: 15px; font-weight: 700; color: var(--t4r-navy); margin-bottom: 10px; }
.af-audience-desc  { font-size: 13px; color: var(--t4r-steel); line-height: 1.6; margin-bottom: 16px; }
.af-audience-list  { display: flex; flex-direction: column; gap: 7px; }
.af-audience-list li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px; color: var(--t4r-steel);
}
.af-audience-list li i { color: var(--t4r-orange); font-size: 10px; margin-top: 3px; flex-shrink: 0; }

/* ── EXECUTIVE BLOCKS ───────────────────────────────── */
.af-exec-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; margin-bottom: 80px;
}
.af-exec-block:last-child { margin-bottom: 0; }
.af-exec-block-reverse { direction: rtl; }
.af-exec-block-reverse > * { direction: ltr; }
.af-exec-number {
    font-size: 64px; font-weight: 900;
    color: rgba(242,92,5,0.10); letter-spacing: -3px; line-height: 1; margin-bottom: 12px;
}
.af-exec-title  { font-size: 22px; font-weight: 700; color: var(--t4r-navy); margin-bottom: 14px; line-height: 1.3; }
.af-exec-desc   { font-size: 14px; color: var(--t4r-steel); line-height: 1.7; margin-bottom: 20px; }
.af-exec-list   { display: flex; flex-direction: column; gap: 9px; }
.af-exec-list li {
    font-size: 13px; color: var(--t4r-steel);
    padding-left: 16px; position: relative;
}
.af-exec-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--t4r-orange); opacity: 0.6;
}
.af-exec-visual { display: flex; justify-content: center; }
.af-exec-mockup {
    background: var(--t4r-white);
    border: 1px solid var(--t4r-outline);
    border-radius: var(--t4r-radius); padding: 24px;
    width: 100%; max-width: 380px;
    box-shadow: 0 8px 32px rgba(13,31,60,0.10);
}
.af-mock-row {
    display: flex; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid var(--t4r-outline);
}
.af-mock-kpi { flex: 1; text-align: center; }
.af-mock-val { font-size: 24px; font-weight: 800; color: var(--t4r-navy); line-height: 1; margin-bottom: 4px; }
.af-val-teal { color: var(--t4r-orange); }
.af-mock-lbl { font-size: 10px; color: var(--t4r-muted); font-weight: 500; }
.af-mock-bar-chart { display: flex; gap: 6px; align-items: flex-end; height: 60px; }
.af-mock-bar { flex: 1; background: var(--t4r-ice); border-radius: 3px 3px 0 0; border: 1px solid var(--t4r-outline); }
.af-bar-teal { background: rgba(242,92,5,0.35); border-color: var(--t4r-orange-border); }
.af-mock-client-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--t4r-outline);
}
.af-mock-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--t4r-orange-dim); border: 1.5px solid var(--t4r-orange-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--t4r-orange); flex-shrink: 0;
}
.af-mock-name { font-size: 13px; font-weight: 600; color: var(--t4r-navy); }
.af-mock-meta { font-size: 11px; color: var(--t4r-muted); }
.af-mock-chip {
    margin-left: auto;
    background: var(--t4r-orange-dim); color: var(--t4r-orange);
    font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-radius: 9999px; border: 1px solid var(--t4r-orange-border);
}
.af-mock-timeline { display: flex; flex-direction: column; gap: 12px; }
.af-mock-tl-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--t4r-steel); }
.af-mock-tl-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.af-tl-done   .af-mock-tl-dot { background: var(--t4r-orange); }
.af-tl-active .af-mock-tl-dot { background: var(--t4r-orange); box-shadow: 0 0 6px rgba(242,92,5,0.5); }
.af-tl-pending .af-mock-tl-dot { background: var(--t4r-outline); }
.af-tl-active { color: var(--t4r-navy); font-weight: 500; }
.af-mock-alert-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--t4r-outline);
}
.af-mock-alert-item:last-child { border-bottom: none; padding-bottom: 0; }
.af-mock-alert-item > i { font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.af-alert-title { font-size: 12px; font-weight: 600; color: var(--t4r-navy); margin-bottom: 2px; }
.af-alert-sub   { font-size: 11px; color: var(--t4r-muted); }
.af-alert-warn    > i { color: #D97706; }
.af-alert-info    > i { color: #2563EB; }
.af-alert-success > i { color: #16A34A; }

/* ── MODULES GRID ────────────────────────────────────── */
.af-modules-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 16px; margin-top: 48px;
}
.af-module-card {
    background: var(--t4r-white); border: 1px solid var(--t4r-outline);
    border-radius: var(--t4r-radius); padding: 24px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.af-module-card:hover {
    border-color: var(--t4r-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(242,92,5,0.08);
}
.af-module-icon {
    width: 40px; height: 40px; border-radius: var(--t4r-radius-sm);
    background: var(--t4r-ice); border: 1px solid var(--t4r-outline);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--t4r-muted); margin-bottom: 14px;
}
.af-icon-teal { background: var(--t4r-orange-dim); border-color: var(--t4r-orange-border); color: var(--t4r-orange); }
.af-module-title { font-size: 14px; font-weight: 700; color: var(--t4r-navy); margin-bottom: 8px; line-height: 1.3; }
.af-module-desc  { font-size: 12px; color: var(--t4r-steel); line-height: 1.6; }

/* ── SERVICES / AI SLIDE ─────────────────────────────── */
.af-ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.af-ai-caps  { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.af-ai-cap   { display: flex; gap: 16px; align-items: flex-start; }
.af-ai-cap-icon {
    width: 38px; height: 38px; border-radius: var(--t4r-radius-sm);
    background: var(--t4r-orange-dim); border: 1px solid var(--t4r-orange-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 14px; color: var(--t4r-orange);
}
.af-ai-cap-title { font-size: 14px; font-weight: 600; color: var(--t4r-navy); margin-bottom: 3px; }
.af-ai-cap-desc  { font-size: 12px; color: var(--t4r-steel); line-height: 1.5; }

.af-chat-mockup {
    background: var(--t4r-white); border: 1px solid var(--t4r-outline);
    border-radius: var(--t4r-radius); overflow: hidden;
    box-shadow: 0 8px 32px rgba(13,31,60,0.10);
}
.af-chat-header {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; background: var(--t4r-navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px; font-weight: 600; color: #FFFFFF;
}
.af-chat-dot { width: 8px; height: 8px; border-radius: 50%; }
.af-dot-teal { background: var(--t4r-orange); box-shadow: 0 0 6px rgba(242,92,5,0.6); }
.af-chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.af-chat-bubble {
    max-width: 86%; padding: 10px 14px;
    border-radius: 12px; font-size: 13px; line-height: 1.55;
}
.af-bubble-user {
    background: var(--t4r-navy); color: #FFFFFF;
    align-self: flex-end; border-bottom-right-radius: 4px; text-align: right;
}
.af-bubble-ai {
    background: var(--t4r-orange-dim); border: 1px solid var(--t4r-orange-border);
    color: var(--t4r-steel); align-self: flex-start; border-bottom-left-radius: 4px;
}
.af-bubble-ai strong { color: var(--t4r-navy); }
.af-ai-badge {
    display: inline-block; background: var(--t4r-orange); color: #fff;
    font-size: 8px; font-weight: 800; letter-spacing: 1px;
    padding: 2px 6px; border-radius: 4px; margin-right: 6px; vertical-align: 1px;
}

/* ── STATS GRID (inside dark .af-slide-stats) ────────── */
.af-stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 16px; margin-top: 48px;
}
.af-stat-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--t4r-radius); padding: 28px 24px; text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.af-stat-card:hover { border-color: rgba(242,92,5,0.35); transform: translateY(-3px); }
.af-stat-icon {
    width: 48px; height: 48px; border-radius: var(--t4r-radius-sm);
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: rgba(255,255,255,0.4); margin: 0 auto 16px;
}
.af-stat-icon-teal { background: var(--t4r-orange-dim); border-color: var(--t4r-orange-border); color: var(--t4r-orange); }
.af-stat-val   { font-size: 16px; font-weight: 800; color: #FFFFFF; margin-bottom: 8px; }
.af-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── CTA (inside dark .af-slide-cta) ────────────────── */
.af-cta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--t4r-orange-dim); border: 1px solid var(--t4r-orange-border);
    color: var(--t4r-orange); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 9999px; margin-bottom: 24px;
}
.af-cta-headline {
    font-size: clamp(32px, 4vw, 52px); font-weight: 900;
    color: #FFFFFF; letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 18px;
}
.af-cta-lead {
    font-size: 16px; color: rgba(255,255,255,0.60);
    max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}
.af-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.af-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 9999px;
    font-size: 14px; font-weight: 700; font-family: var(--t4r-font);
    transition: all 0.2s;
}
.af-cta-btn-solid { background: var(--t4r-orange); color: #fff; border: 2px solid transparent; }
.af-cta-btn-solid:hover { background: var(--t4r-orange-hover); box-shadow: 0 6px 24px rgba(242,92,5,0.35); color: #fff; }
.af-cta-btn-outline { background: transparent; color: #FFFFFF; border: 2px solid rgba(255,255,255,0.20); }
.af-cta-btn-outline:hover { border-color: var(--t4r-orange-border); color: var(--t4r-orange); }

/* ── FOOTER ──────────────────────────────────────────── */
.af-footer { background: var(--t4r-navy); border-top: none; padding: 56px 52px; }
.af-footer-inner {
    max-width: 1120px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.af-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.7; margin-top: 12px; }
.af-footer-tagline strong { color: rgba(255,255,255,0.70); }
.af-footer-col-title {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.30); margin-bottom: 16px;
}
.af-footer-links { display: flex; flex-direction: column; gap: 10px; }
.af-footer-links a { font-size: 13px; color: rgba(255,255,255,0.50); transition: color 0.2s; }
.af-footer-links a:hover { color: var(--t4r-orange); }

/* Footer brand logo */
.af-brand-logo { display: flex; align-items: baseline; gap: 0; }
.af-brand-logo-bold  { font-size: 20px; font-weight: 900; color: #FFFFFF; }
.af-brand-logo-light { font-size: 20px; font-weight: 300; color: var(--t4r-orange); }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════ */
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%,100% { opacity: 0.45; }
    50%      { opacity: 1; }
}
@keyframes floatBox {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}
@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}
@keyframes arrowIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes dotBounce {
    0%,80%,100% { transform: scaleY(1); }
    40%         { transform: scaleY(1.5); }
}
@keyframes bounceY {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(6px); }
}

.af-draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: drawPath 0.8s ease forwards; }
.af-draw-1 { animation-delay: 0.15s; }
.af-draw-2 { animation-delay: 0.45s; }
.af-draw-3 { animation-delay: 0.65s; }
.af-draw-4 { animation-delay: 0.90s; }
.af-arrow-group { opacity: 0; animation: arrowIn 0.5s ease 1.2s forwards; }
.af-logo-svg { animation: floatBox 4s ease-in-out infinite; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .af-audience-grid,
    .af-modules-grid,
    .af-stats-grid { grid-template-columns: repeat(2,1fr); }
    .t4r-hero-body { gap: 40px; padding: 40px 32px 60px; }
    .t4r-hero-form { flex: 0 0 360px; }
}
@media (max-width: 860px) {
    .t4r-topbar { padding: 16px 24px; }
    .t4r-topbar-nav { display: none; }
    .t4r-hero-body { flex-direction: column; padding: 40px 24px 60px; text-align: center; }
    .t4r-eyebrow { justify-content: center; }
    .t4r-hero-form { flex: none; width: 100%; max-width: 440px; margin: 0 auto; }
    .t4r-stats { justify-content: center; }
    .t4r-lead { margin-left: auto; margin-right: auto; }
    .t4r-features { align-items: center; }
    .t4r-scroll-hint { text-align: center; }
    .af-exec-block { grid-template-columns: 1fr; gap: 32px; }
    .af-exec-block-reverse { direction: ltr; }
    .af-ai-inner { grid-template-columns: 1fr; gap: 40px; }
    .af-slide { padding: 64px 24px; }
    .af-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .af-audience-grid,
    .af-modules-grid,
    .af-stats-grid { grid-template-columns: 1fr; }
    .af-pillars { flex-direction: column; gap: 24px; }
    .af-pillar-divider { width: 48px; height: 1px; }
    .t4r-form-card { padding: 28px 20px; }
    .af-footer-inner { grid-template-columns: 1fr; }
}
