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

:root {
    /* Warm Fintech Color Palette - Original with Gold CTAs */
    --color-bg-primary: #FDFBF7;
    --color-bg-secondary: #F8F6F1;
    --color-bg-cream: #FFFDF9;
    --color-surface: #FFFFFF;
    --color-dark-section: #1B2838;
    --color-dark-hover: #243447;
    --color-announcement: #1B2838;

    /* Text Colors */
    --color-text-primary: #1B2838;
    --color-text-secondary: #5C6B7A;
    --color-text-tertiary: #8B95A1;
    --color-text-light: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.7);

    /* Accent Colors - Gold for premium CTAs */
    --color-accent-gold: #C4A052;
    --color-accent-gold-dark: #B08D3E;
    --color-accent-gold-light: #D4B363;
    --color-accent-teal: #2D8A7B;
    --color-accent-teal-light: rgba(45, 138, 123, 0.1);
    --color-accent-green: #1B4332;

    /* Navy scale for reference */
    --navy-900: #0c1222;
    --navy-800: #1B2838;
    --navy-700: #243447;
    --navy-600: #1e293b;

    /* UI Colors */
    --color-border: rgba(27, 40, 56, 0.08);
    --color-border-light: rgba(27, 40, 56, 0.05);
    --color-success: #2D8A7B;
    --color-success-bg: rgba(45, 138, 123, 0.08);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(27, 40, 56, 0.04);
    --shadow-md: 0 4px 12px rgba(27, 40, 56, 0.06);
    --shadow-lg: 0 8px 24px rgba(27, 40, 56, 0.08);
    --shadow-xl: 0 16px 48px rgba(27, 40, 56, 0.1);
    --shadow-card: 0 1px 3px rgba(27, 40, 56, 0.04), 0 1px 2px rgba(27, 40, 56, 0.02);

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 56px;
    --space-11: 64px;
    --space-12: 80px;
    --space-13: 96px;
    --space-14: 120px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;

    /* Fonts - Reta v2 Typography */
    --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Monaco', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(22px, 2.5vw, 26px);
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
    background: var(--color-announcement);
    color: var(--color-text-light);
    text-align: center;
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
    font-weight: 500;
}

/* ==================== HEADER ==================== */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.nav-login {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-login:hover {
    color: var(--color-accent-teal);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 20px;
    background: var(--color-accent-gold);
    color: white !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--color-accent-gold-dark);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    z-index: 999;
    padding-top: 100px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: var(--space-6);
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-links a {
    display: block;
    padding: var(--space-5) 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
}

.mobile-nav-cta {
    display: block;
    margin-top: var(--space-6);
    padding: var(--space-4) var(--space-6);
    background: var(--color-accent-gold);
    color: white !important;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 600;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: var(--space-12) 0 var(--space-14);
    background: var(--color-bg-primary);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-7);
}

.trust-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: 50%;
}

.hero h1 {
    margin-bottom: var(--space-6);
    line-height: 1.15;
}

.hero h1 .highlight {
    color: var(--color-accent-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 460px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 14px 28px;
    background: var(--color-accent-gold);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-accent-gold-dark);
    transform: translateY(-1px);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

/* Navy variant for secondary importance */
.btn-primary-navy {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 14px 28px;
    background: var(--navy-800);
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-navy:hover {
    background: var(--navy-700);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 14px 24px;
    background: var(--color-surface);
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--color-text-tertiary);
    background: var(--color-bg-secondary);
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.trust-indicator svg {
    width: 16px;
    height: 16px;
    color: var(--color-text-tertiary);
}

/* Hero Visual / Product Mockup */
.hero-visual {
    position: relative;
}

.product-mockup {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF6B6B; }
.mockup-dots span:nth-child(2) { background: #FFD93D; }
.mockup-dots span:nth-child(3) { background: #6BCB77; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.mockup-content {
    padding: var(--space-6);
    background: var(--color-surface);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-5);
}

.dashboard-greeting h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--color-text-primary);
}

.dashboard-greeting p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.dashboard-date {
    font-size: 13px;
    color: var(--color-text-tertiary);
    background: var(--color-bg-secondary);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
}

.meeting-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.meeting-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    border-left: 3px solid var(--color-accent-teal);
}

.meeting-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.meeting-info {
    flex: 1;
    min-width: 0;
}

.meeting-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.meeting-time {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.meeting-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-accent-teal);
    background: var(--color-accent-teal-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reta-insight {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin-top: var(--space-2);
    border: 1px solid var(--color-border-light);
}

.reta-insight-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.reta-insight-icon {
    width: 20px;
    height: 20px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reta-insight-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.reta-insight-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.reta-insight p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.meeting-card-simple {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.meeting-card-simple .meeting-avatar {
    background: var(--color-bg-secondary);
    color: var(--color-text-tertiary);
}

/* ==================== VALUE PROPS SECTION ==================== */
.value-props {
    padding: var(--space-14) 0;
    background: var(--color-bg-secondary);
}

.value-props .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.value-props h2 {
    margin-bottom: var(--space-4);
}

.value-props .section-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 580px;
    margin: 0 auto;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.value-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
}

.value-card h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ==================== WORKFLOW SECTION ==================== */
.workflow {
    padding: var(--space-14) 0;
    background: var(--color-bg-primary);
}

.workflow .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.workflow-content h2 {
    margin-bottom: var(--space-4);
}

.workflow-content > p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.workflow-step {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.step-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-teal);
}

.step-content {
    flex: 1;
}

.step-time {
    font-size: 12px;
    color: var(--color-text-tertiary);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.step-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.step-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Workflow Visual */
.workflow-visual {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}

.brief-header {
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brief-header-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.brief-label {
    font-size: 11px;
    color: var(--color-text-tertiary);
    font-weight: 500;
}

.brief-header h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
}

.brief-status {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-accent-teal);
    background: var(--color-accent-teal-light);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.brief-content {
    padding: var(--space-6);
}

.brief-section {
    margin-bottom: var(--space-5);
}

.brief-section:last-child {
    margin-bottom: 0;
}

.brief-section-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
}

.talking-point {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    border-left: 3px solid var(--color-accent-gold);
}

.talking-point:last-child {
    margin-bottom: 0;
}

.talking-point-number {
    width: 22px;
    height: 22px;
    background: var(--color-accent-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.talking-point-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--color-text-primary);
}

.talking-point-content p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.brief-ai-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    margin-top: var(--space-5);
}

.ai-avatar {
    width: 28px;
    height: 28px;
    background: var(--color-accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-avatar svg {
    width: 14px;
    height: 14px;
    color: white;
}

.ai-note-content p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    padding: var(--space-14) 0;
    background: var(--color-bg-secondary);
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-3);
}

.how-it-works h2 {
    margin-bottom: var(--space-4);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 40px);
    right: calc(16.67% + 40px);
    height: 1px;
    background: var(--color-border);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-accent-gold);
    position: relative;
    z-index: 1;
    line-height: 1;
    padding-top: 2px; /* Optical adjustment for serif font baseline */
}

.step-card h3 {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.step-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: var(--space-14) 0;
    background: var(--color-bg-primary);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.testimonials h2 {
    margin-bottom: var(--space-4);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-7);
    border: 1px solid var(--color-border-light);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: var(--space-5);
    right: var(--space-6);
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-accent-gold);
    line-height: 1;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

/* ==================== TRUST/SECURITY SECTION ==================== */
.trust-section {
    padding: var(--space-14) 0;
    background: var(--color-dark-section);
}

.trust-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.trust-content h2 {
    font-family: var(--font-serif);
    color: var(--color-text-light);
    margin-bottom: var(--space-5);
}

.trust-content h2 .highlight {
    color: var(--color-accent-gold);
}

.trust-content > p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
    max-width: 460px;
    line-height: 1.7;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.trust-feature {
    display: flex;
    gap: var(--space-4);
}

.trust-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-gold);
}

.trust-feature h4 {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 2px;
}

.trust-feature p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Trust Visual */
.trust-visual {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-success);
    letter-spacing: 0.5px;
}

.security-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.security-logs {
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.security-log {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.security-log:last-child {
    border-bottom: none;
}

.log-prefix {
    color: var(--color-text-muted);
}

.log-success {
    color: var(--color-success);
    margin-left: auto;
}

.log-link {
    color: var(--color-accent-gold);
}

/* ==================== CASE STUDIES SECTION ==================== */
.case-studies {
    padding: var(--space-14) 0;
    background: var(--color-bg-secondary);
}

.case-studies .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.case-study-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-7);
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-5);
    gap: var(--space-3);
}

.case-study-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-category {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-accent-teal);
    background: var(--color-accent-teal-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.case-study-problem {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-3);
}

.case-study-arrow {
    display: flex;
    justify-content: center;
    margin: var(--space-3) 0;
}

.case-study-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-gold);
}

.case-study-outcome {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.case-study-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent-teal);
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta {
    padding: var(--space-14) 0;
    background: var(--color-bg-primary);
    text-align: center;
}

.final-cta.dark {
    background: var(--color-dark-section);
}

.final-cta.dark h2 {
    color: var(--color-text-light);
}

.final-cta.dark > .container > p {
    color: var(--color-text-muted);
}

.final-cta.dark .cta-note {
    color: rgba(255, 255, 255, 0.5);
}

.final-cta h2 {
    margin-bottom: var(--space-4);
}

.final-cta > .container > p {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto var(--space-8);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 16px 32px;
    background: var(--color-surface);
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-light:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-1px);
}

.btn-primary-light svg {
    width: 16px;
    height: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 14px 28px;
    background: transparent;
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--color-text-primary);
    background: var(--color-surface);
}

.cta-note {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: var(--space-12) 0 var(--space-6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.footer-brand {
    max-width: 260px;
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
}

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

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-text-primary);
}

.footer-contact p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.footer-contact a {
    color: var(--color-text-secondary);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: 13px;
    color: var(--color-text-tertiary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ==================== REVIEW-FIRST SECTION ==================== */
.review-first {
    padding: var(--space-14) 0;
    background: var(--color-bg-primary);
}

.review-first .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.review-first-content .section-label {
    margin-bottom: var(--space-3);
}

.review-first-content h2 {
    margin-bottom: var(--space-5);
}

.review-first-content > p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 460px;
    line-height: 1.7;
}

.review-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.review-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.review-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-teal);
    flex-shrink: 0;
}

.review-feature span {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* Approval Mockup */
.approval-mockup {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}

.approval-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-bg-secondary);
}

.approval-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.approval-count {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-accent-gold);
    background: rgba(196, 160, 82, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.approval-items {
    padding: var(--space-4) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.approval-item {
    padding: var(--space-4);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.approval-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
}

.approval-type {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.approval-client {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.approval-diff {
    margin-bottom: var(--space-3);
}

.diff-line {
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 2px;
    line-height: 1.5;
}

.diff-line.diff-add {
    color: #166534;
    background: rgba(22, 101, 52, 0.08);
}

.approval-preview p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-style: italic;
}

.approval-actions {
    display: flex;
    gap: var(--space-2);
}

.approval-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: default;
}

.approval-btn.approve {
    background: var(--color-accent-teal);
    color: white;
}

.approval-btn.edit {
    background: var(--color-surface);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

/* Testimonial avatar as icon */
.testimonial-card .author-avatar {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
}

.testimonial-card .author-avatar svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-tertiary);
}

/* Security log disabled state */
.log-disabled {
    color: var(--color-text-tertiary);
    margin-left: auto;
    font-size: 12px;
}

/* How it works subtitle */
.how-it-works .section-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 580px;
    margin: 0 auto;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-trust-indicators {
        justify-content: center;
    }

    .value-cards {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .workflow .container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .steps-grid::before {
        display: none;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .review-first .container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .trust-section .container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    header nav {
        height: 64px;
    }

    .hero {
        padding: var(--space-10) 0;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: var(--space-3);
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    .value-card,
    .testimonial-card {
        padding: var(--space-5);
    }

    .mockup-content {
        padding: var(--space-4);
    }
}

/* ==================== SOCIAL PROOF BAR ==================== */
.social-proof-bar {
    padding: var(--space-10) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.social-proof-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-6);
}

.logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-tertiary);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.logo-item:hover .company-logo {
    opacity: 1;
}

.company-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.logo-item:hover .company-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==================== STAT HIGHLIGHT ==================== */
.stat-highlight {
    padding: var(--space-12) 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-6);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-number.accent {
    color: var(--color-accent-gold);
}

.stat-label {
    font-size: 15px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.stat-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-gold);
}

.stat-description {
    font-size: 17px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.stat-note {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

/* ==================== INTEGRATIONS SECTION ==================== */
.integrations {
    padding: var(--space-10) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border-light);
}

.integrations-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-6);
}

.integration-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-5);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
}

.integration-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: var(--space-14) 0;
    background: var(--color-bg-primary);
}

.faq .section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-accent-teal);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-tertiary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-5);
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ==================== RESPONSIVE - NEW SECTIONS ==================== */
@media (max-width: 768px) {
    .logo-carousel {
        gap: var(--space-6);
    }

    .company-logo {
        font-size: 14px;
    }

    .company-logo-img {
        height: 22px;
    }

    .stats-grid {
        flex-direction: column;
        gap: var(--space-4);
    }

    .stat-arrow svg {
        transform: rotate(90deg);
    }

    .stat-number {
        font-size: 36px;
    }

    .integration-logos {
        gap: var(--space-4);
    }

    .integration-logo {
        padding: var(--space-2) var(--space-4);
    }

    .integration-logo span {
        font-size: 12px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --color-border: rgba(27, 40, 56, 0.2);
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent-teal);
    outline-offset: 2px;
}
