:root {
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --gold-dark: #A07830;
    --navy: #0A1628;
    --navy-mid: #162340;
    --sky: #EBF3FF;
    --cream: #FDFAF4;
    --white: #FFFFFF;
    --muted: #6B7A99;
    --border: #E2E8F4;
    --text: #0D1B36;
    --green: #00C896;
    --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 40px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 24px 80px rgba(10, 22, 40, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--sky);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav.scrolled {
    height: 64px;
    box-shadow: var(--shadow-md);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--navy);
    background: var(--sky);
}

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

.btn-ghost {
    padding: 9px 20px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-ghost:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-primary {
    padding: 10px 22px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--navy);
    border: none;
    color: var(--white);
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
}

.btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.28);
}

.btn-gold {
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold), #E8C060);
    border: none;
    color: var(--navy);
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(10, 22, 40, 0.06) 0%, transparent 50%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.2);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px 0;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card-bg {
    position: absolute;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 24px;
    top: 24px;
    left: -24px;
    right: 24px;
    bottom: -24px;
    z-index: -1;
    animation: floatCard 4s 0.5s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-tag {
    background: rgba(0, 200, 150, 0.1);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.card-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.card-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.chart-bar-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: var(--sky);
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    animation: growBar 1s ease both;
}

.chart-bar.active {
    background: linear-gradient(to top, var(--gold), var(--gold-light));
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.mini-stats {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.mini-stat-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.mini-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: floatIn 0.8s ease both;
}

.float-badge-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0.5s;
}

.float-badge-2 {
    bottom: -16px;
    left: -20px;
    animation-delay: 0.8s;
}

@keyframes floatIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.fb-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.fb-val {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.78rem;
}

.fb-sub {
    color: var(--muted);
    font-size: 0.7rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TICKER */
.ticker {
    background: var(--navy);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.ticker-item .sym {
    color: var(--gold-light);
    font-weight: 500;
}

.ticker-item .up {
    color: #5EE8B0;
}

.ticker-item .dn {
    color: #FF7070;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* PARTNERS */
.partners {
    padding: 64px 48px;
    background: white;
}

.partners-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 36px;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #CBD5E0;
    transition: color 0.2s;
    letter-spacing: -0.02em;
    cursor: default;
}

.partner-logo:hover {
    color: var(--navy);
}

/* SECTION COMMON */
section {
    padding: 100px 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
}

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

/* FEATURES */
.features {
    background: var(--sky);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .section-desc {
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s, border-color 0.3s;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--sky), var(--cream));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    transition: gap 0.2s;
}

.feat-link:hover {
    gap: 10px;
}

/* STATS */
.stats-section {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.stats-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.stats-text .section-label {
    color: var(--gold-light);
}

.stats-text .section-label::before {
    background: var(--gold-light);
}

.stats-text h2 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
}

.stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-trend {
    font-size: 0.8rem;
    color: #5EE8B0;
    margin-top: 6px;
}

/* HOW */
.how-section {
    background: white;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--sky);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.3s;
}

.step.active .step-num {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.step h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.step p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.how-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-phone {
    width: 280px;
    background: white;
    border-radius: 32px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: floatCard 5s ease-in-out infinite;
    position: relative;
}

.how-phone-bg {
    position: absolute;
    inset: -24px;
    z-index: -1;
    background: linear-gradient(135deg, var(--sky), #D4E8FF);
    border-radius: 40px;
}

.phone-pill {
    background: var(--navy);
    color: white;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.tx-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sky);
}

.tx-row:last-child {
    border-bottom: none;
}

.tx-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.tx-info {
    flex: 1;
}

.tx-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.tx-date {
    font-size: 0.73rem;
    color: var(--muted);
}

.tx-amt {
    font-family: 'DM Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
}

.tx-amt.pos {
    color: var(--green);
}

.tx-amt.neg {
    color: #FF6B6B;
}

/* SOLUTIONS */
.solutions {
    background: var(--cream);
}

.solutions-header {
    margin-bottom: 60px;
}

.solutions-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    background: white;
    padding: 6px;
    border-radius: 14px;
    width: fit-content;
    border: 1px solid var(--border);
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    transition: all 0.2s;
}

.tab-btn.active {
    background: var(--navy);
    color: white;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sol-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.sol-text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.sol-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.sol-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
}

.sol-feat-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(0, 200, 150, 0.1);
    color: var(--green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.sol-image {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.sol-image video,
.sol-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

/* GLOBE */
.globe-section {
    background: white;
    text-align: center;
}

.globe-inner {
    max-width: 800px;
    margin: 0 auto;
}

.globe-vis {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 60px auto;
}

#globe-canvas {
    width: 100%;
    height: 100%;
}

.globe-ring {
    position: absolute;
    inset: -24px;
    border: 1.5px dashed rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
}

.globe-ring-2 {
    position: absolute;
    inset: -48px;
    border: 1px dashed rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: dotPulse 3s ease-in-out infinite;
}

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

.region-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.region-tag {
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.region-tag:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.region-tag i {
    font-size: 0.72rem;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1A3050 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline-white {
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
}

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.5);
    padding: 64px 48px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    color: white;
    margin-bottom: 16px;
    display: flex;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.soc-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 64px 24px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .tab-content.active {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .partners {
        padding: 40px 24px;
    }

    .partners-grid {
        gap: 28px;
    }
}