/* ==========================================================================
   Aries Liaison — Radical Overhaul (v2 - Clean, Tech, Animated)
   UK Tender Discovery & Outreach
   Refined for "menus", symbols, and radical interactions
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
    /* Core palette — kept from original */
    --cream: #fffbf5;
    --cream-dark: #f5f0e8;
    --cream-darker: #e8e3db;
    --charcoal: #1d1d1d;
    --charcoal-light: #2a2a2a;
    --text: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --gold: #f5c518;
    --gold-hover: #e6b800;
    --gold-subtle: rgba(245, 197, 24, 0.12);
    --gold-glow: rgba(245, 197, 24, 0.25);
    --green: #28a745;
    --green-subtle: rgba(40, 167, 69, 0.1);
    --red: #dc3545;
    --white: #ffffff;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --s1: 0.25rem;
    --s2: 0.5rem;
    --s3: 0.75rem;
    --s4: 1rem;
    --s5: 1.25rem;
    --s6: 1.5rem;
    --s8: 2rem;
    --s10: 2.5rem;
    --s12: 3rem;
    --s16: 4rem;
    --s20: 5rem;
    --s24: 6rem;
    --s32: 8rem;

    /* Layout */
    --container: 1200px;
    --header-h: 80px;

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;

    /* Shadows & Glows */
    --sh-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --sh-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --sh-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --sh-xl: 0 24px 60px rgba(0, 0, 0, 0.16);
    --sh-gold: 0 4px 20px rgba(245, 197, 24, 0.3);

    /* Animation Constants */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    cursor: default;
    /* We might add custom cursor later */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font);
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.04em;
    /* Tighter tracking for modern look */
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   Radical Interactions (Spotlight & Magnetic)
   -------------------------------------------------------------------------- */
/* Spotlight Effect Container */
.spotlight-target {
    position: relative;
    overflow: hidden;
    /* The radial gradient is handled by JS setting --x and --y */
}

.spotlight-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    /* inherit from parent */
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%),
            rgba(245, 197, 24, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.spotlight-target:hover::before {
    opacity: 1;
}

/* Magnetic Buttons */
.magnetic {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
    /* Faster, snappier */
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s6);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--s12);
    /* Reduced margin for tighter feel */
}

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

.section-header.light .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.section-header h2 {
    margin-bottom: var(--s3);
}

.section-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: var(--s3);
    border: 1px solid var(--gold-subtle);
    padding: 4px 12px;
    border-radius: var(--r-full);
}

.tag-light {
    background: transparent;
    border-color: rgba(245, 197, 24, 0.3);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    padding: var(--s3) var(--s6);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--cream-darker);
}

.btn-ghost:hover {
    border-color: var(--charcoal);
    background: rgba(0, 0, 0, 0.02);
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-lg {
    padding: var(--s4) var(--s8);
    font-size: 1.05rem;
    border-radius: var(--r-lg);
}

.btn-full {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 251, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s6);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--s2);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.03em;
}

.logo-icon {
    font-size: 1.4rem;
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--s6);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--charcoal);
}

.nav-cta {
    color: var(--charcoal) !important;
    background: var(--white);
    padding: var(--s2) var(--s4);
    border-radius: var(--r-md);
    border: 1px solid var(--cream-darker);
    font-weight: 600;
    box-shadow: var(--sh-sm);
}

.nav-cta:hover {
    border-color: var(--gold);
    box-shadow: var(--sh-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--s2);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    padding-top: calc(var(--header-h) + var(--s12));
    padding-bottom: var(--s12);
    min-height: 90vh;
    /* Make it feel grand */
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    /* Slightly more space for text */
    gap: var(--s12);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--s1) var(--s3);
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    margin-bottom: var(--s6);
}

.hero h1 {
    margin-bottom: var(--s5);
    line-height: 1.05;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--s8);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: var(--s3);
    margin-bottom: var(--s8);
}

.hero-proof {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.proof-check {
    color: var(--green);
    font-size: 1.2rem;
}

/* Hero Visual - Clean, no floating cards */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xl);
    transform: perspective(1000px) rotateY(-2deg);
    /* Subtle 3D perspective */
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
    /* Slight grading */
}

.hero-location-badge {
    position: absolute;
    bottom: var(--s4);
    right: var(--s4);
    background: rgba(29, 29, 29, 0.85);
    /* Dark badge */
    backdrop-filter: blur(12px);
    padding: var(--s2) var(--s4);
    border-radius: var(--r-md);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: var(--s2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

/* --------------------------------------------------------------------------
   Pain Points — Accordion System
   -------------------------------------------------------------------------- */
.pain-section {
    padding: var(--s24) 0;
    background: var(--white);
}

.pain-menu {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--s4);
}

.pain-item {
    border: 1px solid var(--cream-darker);
    border-radius: var(--r-lg);
    background: var(--cream);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pain-item.active {
    border-color: var(--gold);
    box-shadow: var(--sh-md);
    background: var(--white);
}

.pain-header {
    padding: var(--s5) var(--s6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s;
}

.pain-item:not(.active) .pain-header:hover {
    background: rgba(0, 0, 0, 0.01);
}

.pain-title {
    display: flex;
    align-items: center;
    gap: var(--s4);
}

.pain-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.pain-item.active .pain-icon {
    color: var(--gold);
}

.pain-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.pain-chevron {
    transition: transform 0.3s var(--ease-out-expo);
    color: var(--text-light);
}

.pain-item.active .pain-chevron {
    transform: rotate(180deg);
    color: var(--charcoal);
}

.pain-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}

.pain-item.active .pain-body {
    max-height: 200px;
}

.pain-content {
    padding: 0 var(--s6) var(--s6) calc(var(--s6) + 2rem + var(--s4));
    /* Indent text */
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   How It Works — Tabbed Interface
   -------------------------------------------------------------------------- */
.flow-section {
    padding: var(--s32) 0;
    background: var(--cream);
}

/* Tab Nav */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: var(--s3);
    margin-bottom: var(--s10);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--s2);
    padding: var(--s3) var(--s5);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--r-full);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: var(--charcoal);
    background: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--sh-md);
}

.tab-num {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.5;
}

.tab-btn.active .tab-num {
    color: var(--gold);
    opacity: 1;
}

/* Tab Content */
.tabs-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 400px;
    /* Prevent layout shift */
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.5s var(--ease-out-expo);
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0) scale(1);
    z-index: 10;
}

.phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    align-items: center;
    background: var(--white);
    padding: var(--s8);
    border-radius: var(--r-xl);
    border: 1px solid var(--cream-darker);
    box-shadow: var(--sh-lg);
}

.phase-text h3 {
    font-size: 1.8rem;
    margin-bottom: var(--s6);
    color: var(--charcoal);
}

.phase-steps {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
}

.phase-steps li {
    font-size: 1rem;
    color: var(--text-muted);
    padding-left: var(--s4);
    border-left: 2px solid var(--gold);
}

.phase-steps strong {
    color: var(--charcoal);
    display: block;
    margin-bottom: 2px;
}

.phase-visual {
    height: 320px;
    border-radius: var(--r-lg);
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.phase-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.visual-placeholder {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Platform
   -------------------------------------------------------------------------- */
.platform-section {
    padding: var(--s24) 0;
    background: var(--charcoal);
    color: var(--white);
}

.platform-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s12);
    align-items: center;
}

.platform-text h2 {
    color: var(--white);
    margin-bottom: var(--s6);
}

.platform-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: var(--s8);
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
}

.pf-item {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.pf-icon {
    font-size: 1.4rem;
}

.platform-img {
    border-radius: var(--r-xl);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Deliverables
   -------------------------------------------------------------------------- */
.deliverables-section {
    padding: var(--s32) 0;
    background: var(--cream);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s6);
    max-width: 1000px;
    margin: 0 auto;
}

.del-card {
    background: var(--white);
    padding: var(--s8);
    border-radius: var(--r-lg);
    border: 1px solid var(--cream-darker);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: var(--s5);
}

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

.del-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--charcoal);
    background: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    flex-shrink: 0;
}

.del-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--s2);
}

.del-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   USPs
   -------------------------------------------------------------------------- */
.usp-section {
    padding: var(--s32) 0;
    background: var(--charcoal);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s6);
}

.usp-card {
    background: var(--charcoal-light);
    padding: var(--s8);
    border-radius: var(--r-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.03);
}

.usp-card h4 {
    color: var(--white);
    margin-bottom: var(--s3);
}

.usp-card p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Sectors
   -------------------------------------------------------------------------- */
.sectors-section {
    padding: var(--s24) 0;
    background: var(--cream-dark);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s4);
}

.sector-card {
    background: var(--white);
    padding: var(--s6);
    border-radius: var(--r-lg);
    border: 1px solid var(--cream-darker);
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
}

.sector-card:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.sector-icon {
    font-size: 2.2rem;
    display: block;
    margin: 0 auto var(--s3);
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats-section {
    padding: var(--s16) 0;
    background: var(--cream);
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s12);
    background: var(--charcoal);
    border-radius: var(--r-xl);
    padding: var(--s8) var(--s12);
    box-shadow: var(--sh-xl);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--s2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-section {
    padding: var(--s32) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s6);
    align-items: stretch;
}

.price-card {
    background: var(--cream);
    border: 1px solid var(--cream-darker);
    border-radius: var(--r-xl);
    padding: var(--s8);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    background: var(--charcoal);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.05);
    /* Make it pop */
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.price-tier {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: var(--s4);
}

.price-amount {
    margin-bottom: var(--s2);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    width: 100%;
    display: block;
    letter-spacing: -3px;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-card.featured .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--s6);
    line-height: 1.5;
}

.price-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.6);
}

.price-features {
    margin-bottom: var(--s8);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.price-features li {
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.price-features li.excluded {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-features li.excluded::before {
    content: '×';
    color: var(--text-light);
}

.price-card.featured li {
    color: rgba(255, 255, 255, 0.9);
}

.price-card.featured li.excluded {
    color: rgba(255, 255, 255, 0.3);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.addons-bar {
    margin-top: var(--s12);
    text-align: center;
    border: 1px dashed var(--cream-darker);
    padding: var(--s6);
    border-radius: var(--r-lg);
}

.addons-bar h4 {
    margin-bottom: var(--s3);
    font-size: 1rem;
}

.addon-items {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.addon-sep {
    color: var(--gold);
    margin: 0 var(--s3);
}

/* --------------------------------------------------------------------------
   Guarantees
   -------------------------------------------------------------------------- */
.guarantee-section {
    padding: var(--s20) 0;
    background: var(--gold-subtle);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-card {
    background: var(--white);
    padding: var(--s8);
    border-radius: var(--r-lg);
    border: 2px solid var(--gold);
    text-align: center;
    transition: transform 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-4px);
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: var(--s4);
    display: block;
}

/* --------------------------------------------------------------------------
   FAQ - Clean Accordion
   -------------------------------------------------------------------------- */
.faq-section {
    padding: var(--s32) 0;
    background: var(--cream-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--r-lg);
    margin-bottom: var(--s3);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-q {
    width: 100%;
    padding: var(--s5) var(--s6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    text-align: left;
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: var(--gold);
    font-size: 1.2rem;
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a p {
    padding: 0 var(--s6) var(--s6);
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Team & Contact
   -------------------------------------------------------------------------- */
.team-section {
    padding: var(--s24) 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s8);
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--s4);
    border: 4px solid var(--white);
    box-shadow: var(--sh-md);
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--gold);
}

.team-role {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--s2);
}

.contact-section {
    padding: var(--s32) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s16);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-checks li {
    display: flex;
    align-items: center;
    gap: var(--s3);
    margin-bottom: var(--s3);
    color: var(--text-muted);
}

.contact-checks i {
    color: var(--green);
}

.contact-direct {
    margin-top: var(--s8);
    padding-top: var(--s6);
    border-top: 1px solid var(--cream-darker);
}

.contact-form {
    background: var(--cream);
    padding: var(--s8);
    border-radius: var(--r-xl);
    border: 1px solid var(--cream-darker);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s4);
    margin-bottom: var(--s4);
}

.form-group {
    margin-bottom: var(--s4);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--s2);
    color: var(--charcoal);
}

.form-group input {
    width: 100%;
    padding: var(--s3) var(--s4);
    font-family: var(--font);
    font-size: 1rem;
    border: 1px solid var(--cream-darker);
    border-radius: var(--r-md);
    background: var(--white);
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-subtle);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--charcoal);
    padding: var(--s12) 0;
    color: rgba(255, 255, 255, 0.4);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--s8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--s8);
}

.footer-logo {
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: var(--s2);
}

.footer-nav a {
    margin-left: var(--s6);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-tagline a {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    filter: blur(8px);
    /* Radical blur reveal */
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        align-items: center;
    }

    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
        transform: none !important;
    }

    .platform-layout {
        grid-template-columns: 1fr;
    }

    .platform-visual {
        order: -1;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--s6);
        border-bottom: 1px solid var(--cream-darker);
        display: none;
    }

    .nav.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .tabs-nav {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: var(--s6);
        padding: var(--s8);
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }
}