/* ========================================
   SAFARI CLOUD - NEO-BRUTALIST DESIGN
   No rounded corners. Bold borders. Raw aesthetic.
   Inspired by African safari & savanna landscapes.
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Safari-inspired palette - warm golds, savanna tones */
    --bg-cream: #F7F3E9;    /* Warm savanna cream */
    --bg-dark: #1C1917;     /* Deep earth brown-black */
    --black: #0D0D0D;
    --white: #FFFFFF;
    --accent: #C9A227;      /* Golden amber - safari gold */
    --accent-light: #DEAF4A; /* Light gold */
    --accent-dark: #A68419;  /* Deep gold */
    --gray-dark: #3D3530;   /* Warm dark gray */
    --gray-mid: #6B6560;    /* Warm mid gray */
    --gray-light: #9A948E;  /* Warm light gray */
    --border: #0D0D0D;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --border-thick: 3px;
    --border-thin: 2px;
    --shadow-offset: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Selection */
::selection {
    background-color: var(--accent);
    color: var(--white);
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--accent);
    width: 0%;
    z-index: 200;
    transition: width 0.1s linear;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border: var(--border-thin) solid var(--black);
    font-family: var(--font-mono);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 150;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--accent);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--black);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========================================
   NAVIGATION - Stark top bar
   ======================================== */
.navbar {
    background: var(--white);
    border-bottom: var(--border-thick) solid var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 4px; /* Account for progress bar */
    z-index: 100;
}

.nav-links a.active {
    color: var(--accent);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--black);
}

.brand-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
}

.brand-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.25rem;
    border: var(--border-thin) solid var(--black);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
    transition: all 0.15s;
}

.nav-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: var(--border-thin) solid var(--black);
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: all 0.25s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO - Bold, asymmetric layout
   ======================================== */
.hero {
    background: var(--bg-dark);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(201, 162, 39, 0.08) 10px,
        rgba(201, 162, 39, 0.08) 20px
    );
}

/* Safari Scene Silhouette — layered panoramic savanna */
.safari-scene {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 700px;
    height: 560px;
    background-image: url('safari-scene.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1100px) {
    .safari-scene {
        width: 540px;
        height: 440px;
        opacity: 0.55;
        right: -20px;
    }
}

@media (max-width: 768px) {
    .safari-scene {
        width: 420px;
        height: 350px;
        opacity: 0.4;
        right: -15px;
    }
}

@media (max-width: 500px) {
    .safari-scene {
        display: none;
    }
}

.hero-layout {
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero-title .highlight {
    color: var(--accent);
    display: inline;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    border: var(--border-thin) solid var(--white);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--white);
    transition: all 0.15s;
}

.hero-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--white);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    border: var(--border-thin) solid var(--white);
    transition: all 0.15s;
}

.hero-btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-block {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-num {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
}

/* Dark section header overrides */
.industries-section .section-header h2 {
    color: var(--white);
}

/* ========================================
   WHAT WE OFFER - Grid with numbers
   ======================================== */
.what-section {
    padding: 6rem 0;
    background: var(--bg-cream);
    border-bottom: var(--border-thick) solid var(--black);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--border-thick) solid var(--black);
}

.offering-item {
    padding: 2rem;
    border-right: var(--border-thin) solid var(--black);
    border-bottom: var(--border-thin) solid var(--black);
    background: var(--white);
    transition: background 0.15s;
}

.offering-item:nth-child(3n) {
    border-right: none;
}

.offering-item:nth-child(4),
.offering-item:nth-child(5),
.offering-item:nth-child(6) {
    border-bottom: none;
}

.offering-item:hover {
    background: var(--accent);
    color: var(--white);
}

.offering-item:hover .offering-num {
    color: var(--white);
    border-color: var(--white);
}

.offering-num {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 28px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    border: var(--border-thin) solid var(--black);
    margin-bottom: 1rem;
}

.offering-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.offering-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-mid);
}

.offering-item:hover p {
    color: rgba(255,255,255,0.85);
}

/* ========================================
   SOLUTIONS HERO
   ======================================== */
.solutions-hero {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 0 4rem;
    border-bottom: var(--border-thick) solid var(--accent);
}

.solutions-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 1rem 0 0.75rem;
}

.solutions-hero-desc {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.solutions-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.jump-pill {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--white);
    border: var(--border-thin) solid rgba(255,255,255,0.3);
    background: transparent;
    transition: all 0.15s;
}

.jump-pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translate(2px, 2px);
}

/* ========================================
   INDUSTRIES SECTION (V2)
   ======================================== */
.industries-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: var(--white);
}

.industries-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ind-card {
    background: rgba(255,255,255,0.04);
    border: var(--border-thin) solid rgba(255,255,255,0.12);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    scroll-margin-top: 100px;
}

.ind-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.ind-card-top {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.ind-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ind-card-meta {
    flex: 1;
}

.industry-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.ind-card-meta h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.ind-stat {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(201,162,39,0.08);
    border-left: 3px solid var(--accent);
    margin-bottom: 1.5rem;
}

.ind-stat-num {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.ind-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.ind-usecases {
    list-style: none;
    margin-bottom: 1.25rem;
    flex: 1;
}

.ind-usecases li {
    font-size: 0.875rem;
    color: var(--gray-light);
    padding: 0.4rem 0 0.4rem 1rem;
    border-left: 2px solid rgba(255,255,255,0.15);
    margin-bottom: 0.375rem;
}

.ind-example {
    font-size: 0.8125rem;
    color: var(--gray-light);
    padding: 0.875rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.ind-example strong {
    color: var(--white);
}

.ind-cta {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.15s;
    align-self: flex-start;
}

.ind-cta:hover {
    color: var(--accent-light);
}

/* ========================================
   TECHNICAL USE CASES
   ======================================== */
.usecases-section {
    padding: 6rem 0;
    background: var(--bg-cream);
    border-bottom: var(--border-thick) solid var(--black);
}

.usecases-intro {
    font-size: 1.0625rem;
    color: var(--gray-mid);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Use Case Icon */
.uc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    padding: 0 0.5rem;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.usecases-tabs {
    display: flex;
    border: var(--border-thick) solid var(--black);
    margin-bottom: 0;
}

.usecase-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--white);
    color: var(--black);
    border: none;
    border-right: var(--border-thin) solid var(--black);
    cursor: pointer;
    transition: all 0.15s;
}

.usecase-tab:last-child {
    border-right: none;
}

.usecase-tab:hover {
    background: var(--bg-cream);
}

.usecase-tab.active {
    background: var(--black);
    color: var(--white);
}

.usecase-content {
    display: none;
    padding: 2.5rem;
    background: var(--white);
    border: var(--border-thick) solid var(--black);
    border-top: none;
}

.usecase-content.active {
    display: block;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.usecase-detail {
    padding: 1.5rem;
    background: var(--bg-cream);
    border: var(--border-thin) solid var(--black);
}

.usecase-detail h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.usecase-detail p {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.usecase-specs {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.usecase-specs span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-mid);
    padding-left: 0.75rem;
    border-left: 2px solid var(--accent);
}

/* ========================================
   PRICING - Table layout
   ======================================== */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-cream);
    border-bottom: var(--border-thick) solid var(--black);
}

.pricing-table {
    border: var(--border-thick) solid var(--black);
    background: var(--white);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    border-bottom: var(--border-thin) solid var(--black);
}

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

.pricing-row span {
    padding: 1.25rem 1.5rem;
    border-right: var(--border-thin) solid var(--black);
    font-size: 0.95rem;
}

.pricing-row span:last-child {
    border-right: none;
}

.pricing-header {
    background: var(--black);
    color: var(--white);
}

.pricing-header span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-color: var(--gray-dark);
}

.tier-name {
    font-weight: 600;
}

.tier-price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent);
}

.featured-row {
    background: #FDF8E8;
}

.popular-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Pricing Extras */
.pricing-intro {
    font-size: 1.125rem;
    color: var(--gray-mid);
    margin-bottom: 2rem;
}

.currency-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.currency-btn {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    color: var(--black);
    border: var(--border-thin) solid var(--black);
    cursor: pointer;
    transition: all 0.15s;
}

.currency-btn:hover {
    background: var(--black);
    color: var(--white);
}

.currency-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.currency-btn .currency-code {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.625rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.currency-btn:hover .currency-code {
    background: var(--white);
    color: var(--black);
}

.currency-btn.active .currency-code {
    background: var(--white);
    color: var(--accent);
}

.pricing-category {
    margin-bottom: 2.5rem;
}

.pricing-category-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--gray-mid);
    padding: 1rem;
    background: var(--white);
    border: var(--border-thin) solid var(--black);
    margin-top: 1rem;
}

/* ========================================
   INFRASTRUCTURE SECTION (Combined)
   ======================================== */
.infrastructure-section {
    padding: 6rem 0;
    background: var(--bg-cream);
    border-bottom: var(--border-thick) solid var(--black);
}

.infra-intro {
    font-size: 1.125rem;
    color: var(--gray-mid);
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.dc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.dc-intro {
    font-size: 1.125rem;
    color: var(--gray-mid);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.dc-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dc-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-cream);
    border: var(--border-thin) solid var(--black);
}

.dc-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.dc-location strong {
    display: block;
    font-size: 1rem;
}

.dc-location span {
    font-size: 0.8125rem;
    color: var(--gray-mid);
}

.dc-location.coming {
    opacity: 0.7;
}

.dc-location.coming .dc-flag {
    background: var(--gray-mid);
}

.dc-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dc-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: var(--border-thin) solid var(--black);
}

.dc-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.dc-feature strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.dc-feature p {
    font-size: 0.875rem;
    color: var(--gray-mid);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   COMPLIANCE TABS & CONTENT
   (Used within Infrastructure section)
   ======================================== */

/* Compliance Tabs */
.compliance-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: var(--border-thick) solid var(--black);
    background: var(--black);
    margin-bottom: 0;
}

.compliance-tab {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--white);
    color: var(--black);
    border: none;
    border-right: var(--border-thin) solid var(--black);
    cursor: pointer;
    transition: all 0.15s;
}

.compliance-tab:last-child {
    border-right: none;
}

.compliance-tab:hover {
    background: var(--bg-cream);
}

.compliance-tab.active {
    background: var(--accent);
    color: var(--white);
}

/* Tab Content */
.compliance-content {
    display: none;
    padding: 2.5rem;
    background: var(--white);
    border: var(--border-thick) solid var(--black);
    border-top: none;
}

.compliance-content.active {
    display: block;
}

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

.compliance-card {
    padding: 1.5rem;
    background: var(--bg-cream);
    border: var(--border-thin) solid var(--black);
}

.compliance-card.featured {
    position: relative;
    padding-top: 2rem;
}

.compliance-card .country-flag {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    font-size: 1.5rem;
    background: var(--white);
    padding: 0 0.5rem;
}

.compliance-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.compliance-card p {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.6;
    margin: 0;
}

.compliance-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-cream);
    border-left: 4px solid var(--accent);
    font-size: 0.875rem;
    color: var(--gray-mid);
}

/* Certifications */
.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-cream);
    border: var(--border-thin) solid var(--black);
}

.cert-item.coming-soon {
    opacity: 0.6;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.75rem 1rem;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}

.cert-item.coming-soon .cert-badge {
    background: var(--gray-mid);
}

.cert-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cert-item p {
    font-size: 0.875rem;
    color: var(--gray-mid);
    margin: 0;
    line-height: 1.5;
}

.compliance-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.compliance-cta p {
    margin: 0;
    font-size: 1rem;
}

.compliance-btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    border: var(--border-thin) solid var(--white);
    transition: all 0.15s;
}

.compliance-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ========================================
   APPLICATION FORM - Multi-step
   ======================================== */
.apply-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--white);
}

.apply-section .section-header h2 {
    color: var(--white);
}

.apply-intro {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.application-form {
    background: var(--white);
    color: var(--black);
    border: var(--border-thick) solid var(--black);
    box-shadow: 8px 8px 0 var(--accent);
    max-width: 800px;
}

/* Progress Indicator */
.form-progress {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--black);
    border-bottom: var(--border-thick) solid var(--black);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
}

.progress-step.active .step-num,
.progress-step.completed .step-num {
    background: var(--accent);
    border-color: var(--accent);
}

.step-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 0 1rem;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 2.5rem;
}

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: var(--border-thin) solid var(--black);
}

.step-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-header p {
    font-size: 0.9rem;
    color: var(--gray-mid);
}

/* Form Fields */
.field-group {
    margin-bottom: 1.5rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.field-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.field-input,
.field-textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    border: var(--border-thin) solid var(--black);
    transition: all 0.15s;
}

.field-input:focus,
.field-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 4px 4px 0 var(--accent);
}

.field-input::placeholder,
.field-textarea::placeholder {
    color: var(--gray-light);
}

select.field-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%230D0D0D'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.field-input option {
    background: var(--white);
    color: var(--black);
    padding: 0.5rem;
}

.field-textarea {
    min-height: 120px;
    resize: vertical;
}

.field-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-mid);
    margin-top: 0.5rem;
}

/* Terms & Checkboxes */
.terms-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #F5F5F5;
    border: var(--border-thin) solid var(--black);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: var(--border-thin) solid var(--black);
    background: var(--white);
    position: relative;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: var(--border-thin) solid var(--black);
}

.btn-back,
.btn-next,
.btn-submit {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.15s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-back {
    background: transparent;
    color: var(--black);
    border: var(--border-thin) solid var(--black);
}

.btn-back:hover {
    background: var(--black);
    color: var(--white);
}

.btn-next,
.btn-submit {
    background: var(--black);
    color: var(--white);
    border: var(--border-thin) solid var(--black);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--accent);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--accent);
}

.btn-submit {
    background: var(--accent);
}

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}

.form-success.active {
    display: block;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    border: var(--border-thick) solid var(--black);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--gray-mid);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.7;
}

.success-note {
    margin-top: 1.5rem !important;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--black) !important;
    padding: 1rem;
    background: #F5F5F5;
    border: var(--border-thin) solid var(--black);
    display: inline-block;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.home-cta,
.solutions-cta {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-link {
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border: var(--border-thin) solid var(--white);
    transition: all 0.15s;
}

.cta-link:hover {
    background: var(--white);
    color: var(--black);
}

/* ========================================
   APPLY PAGE STYLES
   ======================================== */
.apply-page .apply-section {
    padding-top: 4rem;
}

.apply-page-section {
    min-height: calc(100vh - 200px);
}

.back-home-btn {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent);
    font-family: var(--font-mono);
    text-decoration: none;
    font-size: 0.875rem;
}

.back-home-btn:hover {
    text-decoration: underline;
}

/* ========================================
   TRUST / SOCIAL PROOF SECTION
   ======================================== */
.trust-section {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: var(--border-thick) solid var(--black);
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.trust-backers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-backers-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.trust-backers-names {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

a.backer-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    transition: color 0.15s;
}

a.backer-name:hover {
    color: var(--accent);
}

.backer-sep {
    width: 4px;
    height: 4px;
    background: var(--accent);
}

.trust-counters {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-counter {
    text-align: center;
    min-width: 100px;
}

.trust-counter-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.trust-counter-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-top: 0.375rem;
}

/* ========================================
   WHY US VS COMPETITORS
   ======================================== */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--white);
    border-bottom: var(--border-thick) solid var(--accent);
}

.comparison-section .section-header h2 {
    color: var(--white);
}

.comparison-intro {
    font-size: 1.0625rem;
    color: var(--gray-light);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.comparison-table-wrap {
    border: var(--border-thick) solid rgba(255,255,255,0.2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    vertical-align: top;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table thead th {
    background: rgba(201,162,39,0.15);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: var(--border-thin) solid var(--accent);
    padding: 1.25rem;
}

.comparison-table thead th:first-child {
    background: transparent;
}

.comparison-table thead th.highlight-col {
    background: var(--accent);
    color: var(--white);
    position: relative;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .row-label {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.comparison-table .safari-col {
    background: rgba(201,162,39,0.06);
    color: var(--white);
    font-weight: 500;
}

.comparison-table .competitor-col {
    color: var(--gray-light);
}

.comp-check {
    color: #4ADE80;
    font-weight: 700;
}

.comp-cross {
    color: #F87171;
    f
    
    /* Trust section responsive */
    .trust-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-backers-names {
        justify-content: center;
    }
    
    .trust-counters {
        justify-content: center;
        gap: 2rem;
    }
    
    /* Comparison responsive */
    .comparison-table-wrap {
        margin: 0 -1.5rem;
    }
    
    /* Calculator responsive */
    .calc-controls {
        grid-template-columns: 1fr;
    }
    
    .calculator-wrap {
        padding: 1.5rem;
    }
    
    .calc-result-amount {
        font-size: 1.5rem;
    }
    
    /* FAQ responsive */
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }ont-weight: 700;
}

.comp-partial {
    color: var(--accent-light);
}

.comparison-verdict {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(201,162,39,0.08);
    border-left: 4px solid var(--accent);
}

.comparison-verdict p {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

.comparison-verdict strong {
    color: var(--white);
}

/* ========================================
   PRICING CALCULATOR
   ======================================== */
.calculator-wrap {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border: var(--border-thick) solid var(--black);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--accent);
}

    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand-col {
        grid-column: span 1;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
.calculator-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calculator-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
}

.calc-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-dark);
}

.calc-select,
.calc-input {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    border: var(--border-thin) solid var(--black);
    background: var(--white);
    appearance: none;
    cursor: pointer;
}

.calc-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%230D0D0D'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.calc-select:focus,
.calc-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 4px 4px 0 var(--accent);
}

.calc-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--black);
    color: var(--white);
    gap: 1rem;
    flex-wrap: wrap;
}

.calc-result-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.calc-result-amount {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.calc-result-note {
    width: 100%;
    font-size: 0.75rem;
    color: var(--gray-mid);
    font-family: var(--font-mono);
    margin-top: 0.25rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-cream);
    border-bottom: var(--border-thick) solid var(--black);
}

.faq-intro {
    font-size: 1.0625rem;
    color: var(--gray-mid);
    max-width: 550px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    border: var(--border-thick) solid var(--black);
}

.faq-item {
    border-bottom: var(--border-thin) solid var(--black);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background 0.15s;
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    background: var(--black);
    color: var(--white);
    transition: all 0.2s;
}

.faq-item.open .faq-toggle {
    background: var(--accent);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    background: var(--white);
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--gray-mid);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   FOOTER (Expanded)
   ======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 0;
    border-top: var(--border-thick) solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 700;
}

.footer-brand .brand-box {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--gray-mid);
    letter-spacing: 0.02em;
}

.footer-backers {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--gray-mid);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.footer-backers strong {
    color: var(--accent);
}

.footer-backers a {
    color: inherit;
    text-decoration: none;
}

.footer-backers a:hover {
    text-decoration: underline;
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray-light);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 1.25rem;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a {
    color: var(--gray-mid);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    transition: color 0.15s;
}

.footer-col-links a:hover {
    color: var(--accent);
}

.footer-col-links .coming-tag {
    font-size: 0.5625rem;
    color: var(--gray-mid);
    background: rgba(255,255,255,0.06);
    padding: 0.125rem 0.375rem;
    margin-left: 0.375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--gray-mid);
    font-family: var(--font-mono);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--gray-mid);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    transition: color 0.15s;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offering-item:nth-child(3n) {
        border-right: var(--border-thin) solid var(--black);
    }
    
    .offering-item:nth-child(2n) {
        border-right: none;
    }
    
    .offering-item:nth-child(4),
    .offering-item:nth-child(5) {
        border-bottom: var(--border-thin) solid var(--black);
    }
    
    .offering-item:nth-child(5),
    .offering-item:nth-child(6) {
        border-bottom: none;
    }
    
    .pricing-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-row span:nth-child(2) {
        border-right: none;
    }
    
    .pricing-row span:nth-child(3),
    .pricing-row span:nth-child(4) {
        border-top: 1px solid var(--black);
    }
    
    .pricing-header span:nth-child(3),
    .pricing-header span:nth-child(4) {
        border-top-color: var(--gray-dark);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: var(--border-thick) solid var(--black);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        z-index: 100;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links a:not(.nav-cta) {
        display: block;
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-links .nav-cta {
        margin-top: 0.75rem;
        text-align: center;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-links {
        flex-direction: column;
        align-items: center;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .offering-item {
        border-right: none !important;
        border-bottom: var(--border-thin) solid var(--black) !important;
    }
    
    .offering-item:last-child {
        border-bottom: none !important;
    }
    
    /* Solutions page responsive */
    .solutions-hero {
        padding: 3rem 0 2.5rem;
    }
    
    .solutions-jump-nav {
        gap: 0.375rem;
    }
    
    .jump-pill {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .industries-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ind-stat {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    /* Use cases tabs responsive */
    .usecases-tabs {
        flex-direction: column;
    }
    
    .usecase-tab {
        border-right: none;
        border-bottom: var(--border-thin) solid var(--black);
    }
    
    .usecase-tab:last-child {
        border-bottom: none;
    }
    
    .usecase-grid {
        grid-template-columns: 1fr;
    }
    
    .usecase-content {
        padding: 1.5rem;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-row span {
        border-right: none !important;
        border-bottom: 1px solid var(--black);
    }
    
    .pricing-row span:last-child {
        border-bottom: none;
    }
    
    .pricing-header span {
        border-bottom-color: var(--gray-dark);
    }
    
    .field-row {
        grid-template-columns: 1fr;
    }
    
    .form-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .progress-line {
        display: none;
    }
    
    .step-label {
        display: none;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .application-form {
        box-shadow: 4px 4px 0 var(--accent);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .dc-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-selector {
        justify-content: flex-start;
    }
    
    .currency-btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    
    .compliance-tabs {
        flex-direction: column;
    }
    
    .compliance-tab {
        border-right: none;
        border-bottom: var(--border-thin) solid var(--black);
    }
    
    .compliance-tab:last-child {
        border-bottom: none;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-content {
        padding: 1.5rem;
    }
    
    .compliance-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cert-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-btn,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cta-link {
        width: 100%;
        text-align: center;
    }
    
    .btn-back,
    .btn-next,
    .btn-submit {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
    }
}
