/* ================================
   ACQAR Landing Page - Premium Styles
   ================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --royal-blue: #0047AB;
    --luxury-gold: #C9A961;
    --pure-white: #FFFFFF;
    --off-white: #FAFBFC;
    --deep-navy: #0A1F44;
    --refined-gray: #5A6C7D;
    --soft-gray: #E8ECF0;
    
    /* Spacing */
    --section-padding: 140px;
    --section-padding-mobile: 70px;
    --container-max: 1280px;
    --content-max: 720px;
    
    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--pure-white);
    color: var(--deep-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.logo {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--royal-blue);
    margin: 0;
}

.tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--refined-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--luxury-gold);
    margin-bottom: 16px;
}

.section-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--deep-navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subheadline {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--refined-gray);
    max-width: 680px;
    margin: 0 auto 48px;
}

/* Buttons */
.cta-primary {
    background: var(--royal-blue);
    color: var(--pure-white);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 71, 171, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    background: #003d96;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 71, 171, 0.35);
}

.cta-primary:active {
    transform: translateY(0);
}

.cta-primary.loading .btn-text {
    opacity: 0;
}

.cta-primary.loading .btn-loader {
    display: block;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--pure-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #FAFBFC 0%, var(--pure-white) 100%);
}

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

.brand-header {
    margin-bottom: 40px;
}

.hero-headline {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--deep-navy);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 22px;
    line-height: 1.6;
    color: var(--refined-gray);
    margin-bottom: 40px;
    max-width: 540px;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-navy);
}

.trust-item i {
    font-size: 20px;
    color: var(--royal-blue);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.launch-date {
    font-size: 15px;
    color: var(--refined-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.launch-date i {
    color: var(--luxury-gold);
}

/* Dashboard Mockup */
.dashboard-mockup {
    perspective: 1000px;
}

.mockup-screen {
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(10, 31, 68, 0.15);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.dashboard-mockup:hover .mockup-screen {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: var(--off-white);
    padding: 16px 20px;
    border-bottom: 1px solid var(--soft-gray);
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--soft-gray);
}

.mockup-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-navy);
}

.mockup-content {
    padding: 32px;
}

.valuation-card {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #0056d6 100%);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.val-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.val-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.confidence-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pure-white);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.insight-item {
    background: var(--off-white);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-navy);
    transition: var(--transition-fast);
}

.insight-item:hover {
    background: var(--soft-gray);
    transform: translateY(-2px);
}

.insight-item i {
    color: var(--royal-blue);
    font-size: 18px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--royal-blue);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--royal-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 0; top: 8px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 20px; }
}

/* ================================
   PROBLEM SECTION
   ================================ */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--pure-white);
}

.problem-section .section-headline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--off-white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.08);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.problem-icon i {
    font-size: 28px;
    color: var(--refined-gray);
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 16px;
    color: var(--refined-gray);
    line-height: 1.6;
}

.solution-reveal {
    text-align: center;
}

.transform-arrow {
    margin: 40px 0;
    font-size: 32px;
    color: var(--luxury-gold);
}

.solution-card {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #0056d6 100%);
    padding: 48px 40px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 71, 171, 0.25);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.solution-icon i {
    font-size: 36px;
    color: var(--pure-white);
}

.solution-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.solution-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ================================
   PRODUCT SECTION
   ================================ */
.product-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
    text-align: center;
}

.product-mockup {
    margin: 60px 0;
}

.mockup-device {
    max-width: 900px;
    margin: 0 auto;
    background: var(--deep-navy);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 40px 100px rgba(10, 31, 68, 0.2);
}

.device-screen {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
}

.product-ui {
    padding: 32px;
}

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

.ui-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
}

.status-badge {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #0056d6 100%);
    color: var(--pure-white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ui-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-box {
    background: var(--off-white);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--refined-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-navy);
}

.ui-chart {
    background: var(--off-white);
    padding: 24px;
    border-radius: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    gap: 12px;
}

.bar {
    flex: 1;
    background: var(--soft-gray);
    border-radius: 6px 6px 0 0;
    transition: var(--transition-smooth);
}

.bar.active {
    background: linear-gradient(to top, var(--royal-blue), #0056d6);
}

.bar:hover {
    opacity: 0.8;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 32px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--pure-white);
    border: 2px solid var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition-smooth);
}

.step-icon i {
    font-size: 24px;
    color: var(--royal-blue);
}

.process-step:hover .step-icon {
    background: var(--royal-blue);
    transform: scale(1.1);
}

.process-step:hover .step-icon i {
    color: var(--pure-white);
}

.step-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 8px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--refined-gray);
}

.process-step-final .step-icon {
    border-color: var(--luxury-gold);
    background: rgba(201, 169, 97, 0.1);
}

.process-step-final .step-icon i {
    color: var(--luxury-gold);
}

.process-step-final:hover .step-icon {
    background: var(--luxury-gold);
}

.process-step-final:hover .step-icon i {
    color: var(--pure-white);
}

.process-connector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--soft-gray);
}

.connector-line {
    width: 40px;
    height: 2px;
    background: var(--soft-gray);
}

.process-connector i {
    font-size: 16px;
}

.data-source {
    font-size: 14px;
    color: var(--refined-gray);
    font-style: italic;
}

/* ================================
   VISION SECTION
   ================================ */
.vision-section {
    padding: var(--section-padding) 0;
    background: var(--pure-white);
    text-align: center;
}

.timeline {
    max-width: 900px;
    margin: 60px auto 48px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--soft-gray);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-marker {
    position: relative;
    z-index: 2;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--soft-gray);
    border: 4px solid var(--pure-white);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.timeline-current .marker-dot {
    background: var(--luxury-gold);
    box-shadow: 0 0 0 8px rgba(201, 169, 97, 0.2);
}

.timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-year {
    font-size: 13px;
    font-weight: 700;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--refined-gray);
    line-height: 1.6;
}

.timeline-current .timeline-content h3 {
    color: var(--royal-blue);
}

.vision-tagline {
    font-size: 20px;
    font-weight: 500;
    color: var(--refined-gray);
    font-style: italic;
}

/* ================================
   WHY NOW SECTION
   ================================ */
.why-now-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
    text-align: center;
}

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

.momentum-card {
    background: var(--pure-white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.momentum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 31, 68, 0.1);
}

.momentum-highlight {
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, var(--pure-white) 100%);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon i {
    font-size: 28px;
    color: var(--royal-blue);
}

.momentum-highlight .card-icon {
    background: rgba(201, 169, 97, 0.1);
}

.momentum-highlight .card-icon i {
    color: var(--luxury-gold);
}

.momentum-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.momentum-stat {
    font-size: 16px;
    font-weight: 600;
    color: var(--luxury-gold);
    margin-bottom: 12px;
}

.momentum-card p {
    font-size: 16px;
    color: var(--refined-gray);
    line-height: 1.6;
}

/* ================================
   WAITLIST SECTION (PRIMARY CTA)
   ================================ */
.waitlist-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FAFBFC 0%, var(--pure-white) 100%);
}

.waitlist-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--pure-white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(10, 31, 68, 0.1);
    border: 2px solid var(--soft-gray);
    text-align: center;
}

.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #d4b676 100%);
    color: var(--pure-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 24px;
    margin: 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exclusive-badge i {
    margin-right: 8px;
}

.offer-headline {
    font-size: 24px;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 32px 0 24px;
}

.benefits-list {
    text-align: left;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--soft-gray);
}

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

.benefit-item i {
    font-size: 24px;
    color: var(--royal-blue);
    flex-shrink: 0;
}

.benefit-item div {
    flex: 1;
}

.benefit-item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 4px;
}

.benefit-item span {
    font-size: 15px;
    color: var(--refined-gray);
}

.value-proposition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.original-value {
    font-size: 18px;
    color: var(--refined-gray);
    text-decoration: line-through;
}

.arrow {
    font-size: 24px;
    color: var(--luxury-gold);
}

.your-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--luxury-gold);
}

/* Waitlist Form */
.waitlist-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--soft-gray);
    border-radius: 12px;
    background: var(--pure-white);
    color: var(--deep-navy);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 4px rgba(0, 71, 171, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%235A6C7D' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.waitlist-form .cta-primary {
    width: 100%;
    padding: 18px;
    margin-top: 8px;
}

/* Success Message */
.success-message {
    display: none;
    padding: 40px;
    text-align: center;
}

.success-message.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 200, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i {
    font-size: 40px;
    color: #00c864;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.success-message p {
    font-size: 18px;
    color: var(--refined-gray);
}

/* Trust Line & Progress */
.trust-line {
    font-size: 14px;
    color: var(--refined-gray);
    margin-bottom: 24px;
}

.trust-line i {
    margin-right: 4px;
}

.separator {
    margin: 0 12px;
    color: var(--soft-gray);
}

.progress-indicator {
    margin-top: 24px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--refined-gray);
    margin-bottom: 12px;
}

.progress-text i {
    color: #ff6b35;
    margin-right: 4px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--soft-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--luxury-gold) 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 58.2%;
}

/* ================================
   WISDOM QUOTE SECTION
   ================================ */
.wisdom-section {
    padding: calc(var(--section-padding) * 1.2) 0;
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--off-white) 100%);
    position: relative;
}

.wisdom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--soft-gray) 50%, transparent 100%);
}

.wisdom-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--luxury-gold) 50%, transparent 100%);
}

.quote-ornament i {
    font-size: 24px;
    color: var(--luxury-gold);
}

.wisdom-quote {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--deep-navy);
    font-style: italic;
    margin: 0 0 32px 0;
    letter-spacing: -0.01em;
}

.quote-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--luxury-gold);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

.wisdom-insight {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 32px;
    background: var(--pure-white);
    border-left: 3px solid var(--luxury-gold);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.05);
}

.wisdom-insight p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--refined-gray);
    margin: 0;
    text-align: left;
}

.wisdom-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(10, 31, 68, 0.08);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--royal-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--refined-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--soft-gray);
}

.wisdom-cta {
    text-align: center;
}

.wisdom-cta .cta-primary {
    padding: 20px 48px;
    font-size: 18px;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 15px;
    color: var(--refined-gray);
    font-style: italic;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--deep-navy);
    color: var(--pure-white);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand .logo {
    color: var(--pure-white);
    font-size: 32px;
    margin-bottom: 8px;
}

.footer-brand .tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--luxury-gold);
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 18px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--royal-blue);
    transform: translateY(-2px);
}

.footer-legal {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-links {
    font-size: 14px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--pure-white);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   ANIMATIONS & UTILITIES
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        order: 1;
    }
    
    .brand-header {
        order: 1;
        margin-bottom: 32px;
    }
    
    .hero-headline {
        font-size: 56px;
        order: 2;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        order: 3;
        margin-bottom: 32px;
    }
    
    .hero-visual {
        order: 4;
    }
    
    .trust-indicators {
        order: 5;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        order: 6;
    }
    
    .section-headline {
        font-size: 42px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .momentum-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 24px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }
    
    .timeline-content {
        grid-column: 2;
    }
    
    .wisdom-stats {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
    }
    
    .brand-header {
        order: 1;
        text-align: center;
        margin-bottom: 24px;
    }
    
    .hero-headline {
        font-size: 42px;
        order: 2;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        order: 3;
        text-align: center;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .hero-visual {
        order: 4;
        margin-bottom: 32px;
    }
    
    .trust-indicators {
        order: 5;
        justify-content: center;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        order: 6;
        align-items: center;
        width: 100%;
    }
    
    .hero-cta .cta-primary {
        width: 100%;
    }
    
    .section-headline {
        font-size: 36px;
    }
    
    .section-subheadline {
        font-size: 18px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 32px;
    }
    
    .process-connector {
        transform: rotate(90deg);
    }
    
    .waitlist-card {
        padding: 40px 24px;
    }
    
    .wisdom-quote {
        font-size: 28px;
    }
    
    .wisdom-insight p {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .ui-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 36px;
    }
    
    .section-headline {
        font-size: 28px;
    }
    
    .cta-primary {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .wisdom-quote {
        font-size: 24px;
    }
    
    .quote-ornament {
        gap: 16px;
    }
    
    .ornament-line {
        width: 40px;
    }
    
    .wisdom-insight {
        padding: 24px;
    }
    
    .wisdom-insight p {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .wisdom-stats {
        gap: 24px;
        padding: 24px 16px;
    }
}