/* ========================================
   MAINLINE - Landing Page Styles
   A bold, industrial-inspired design
   ======================================== */

/* CSS Variables */
:root {
    /* Core palette - Industrial warmth meets modern tech */
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --slate: #3d3d3d;
    --steel: #6b6b6b;
    --silver: #a8a8a8;
    --cream: #f5f2ed;
    --white: #ffffff;
    
    /* Accent - Construction/Safety orange */
    --amber: #ff6b2c;
    --amber-light: #ff8c5a;
    --amber-glow: rgba(255, 107, 44, 0.15);
    
    /* Supporting accents */
    --success: #22c55e;
    --info: #3b82f6;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* 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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
}

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

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0;
}

p {
    font-size: 1rem;
    color: var(--steel);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
}

.logo-img {
    height: 28px;
    width: auto;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--amber);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

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

.nav-links a {
    color: var(--silver);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

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

.btn-login {
    color: var(--silver);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
}

.btn-login:hover {
    color: var(--white);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--amber);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

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

.btn-primary.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--charcoal);
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    color: var(--amber);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: transparent;
    color: var(--charcoal);
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border: 2px solid var(--charcoal);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
}

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

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--charcoal) 0%, #252525 50%, var(--charcoal-light) 100%);
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 44, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 44, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.8;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 107, 44, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--silver);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.hero h1 .highlight {
    color: var(--amber);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--silver);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 44, 0.15);
    border-radius: var(--radius-md);
    color: var(--amber);
    flex-shrink: 0;
}

.hero-feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-feature-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.hero-feature-desc {
    font-size: 0.8125rem;
    color: var(--silver);
    line-height: 1.5;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.phone-mockup {
    width: 290px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    position: relative;
}

/* Phone notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

/* Phone speaker */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 3px;
    z-index: 11;
}

.phone-screen {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border-radius: 32px;
    padding: 0;
    min-height: 520px;
    overflow: hidden;
    position: relative;
}

.app-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-logo {
    color: var(--amber);
    font-size: 1.25rem;
}

.app-logo-img {
    height: 24px;
    width: auto;
}

/* SMS Screen Styles */
.sms-screen {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #000;
    min-height: 520px;
}

.sms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px var(--space-md) var(--space-sm);
    background: linear-gradient(180deg, rgba(30,30,30,0.98) 0%, rgba(20,20,20,0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sms-back {
    color: var(--amber);
    font-size: 1.25rem;
    font-weight: 400;
    width: 28px;
}

.sms-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.8125rem;
}

.sms-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--amber) 0%, #e55a1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
}

.sms-info {
    color: var(--amber);
    font-size: 1.25rem;
    width: 28px;
    text-align: right;
}

.sms-messages {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.sms-time {
    text-align: center;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
    font-weight: 500;
}

.sms-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.8125rem;
    line-height: 1.45;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sms-bubble.incoming {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sms-bubble.outgoing {
    background: linear-gradient(135deg, var(--amber) 0%, #e55a1b 100%);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 44, 0.25);
}

.sms-bubble p {
    color: inherit;
    margin-bottom: 6px;
}

.sms-bubble p:last-child {
    margin-bottom: 0;
}

.sms-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 8px 0;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 2px solid var(--amber);
}

.sms-details span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
}

.sms-cta {
    color: var(--amber) !important;
    font-weight: 600;
    margin-top: 4px;
}

.sms-contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sms-contact-info span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.9);
}

.sms-prompt {
    font-style: italic;
    opacity: 0.8;
    margin-top: 4px;
    font-size: 0.75rem;
}

.sms-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 12px 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sms-input-text {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

.sms-send {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--amber) 0%, #e55a1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 44, 0.3);
}

.lead-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.lead-card.faded {
    opacity: 0.5;
}

.lead-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--silver);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.lead-badge.new {
    background: var(--amber-glow);
    color: var(--amber);
}

.lead-card h4 {
    color: var(--white);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.lead-location {
    font-size: 0.75rem;
    color: var(--silver);
    margin-bottom: var(--space-sm);
}

.lead-desc {
    font-size: 0.8125rem;
    color: var(--steel);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.lead-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: var(--steel);
    margin-bottom: var(--space-md);
}

.lead-budget {
    color: var(--success);
    font-weight: 500;
}

.lead-accept {
    width: 100%;
    background: var(--amber);
    color: var(--white);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lead-accept:hover {
    background: var(--amber-light);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-badge .check {
    color: var(--success);
    font-weight: 700;
}

.floating-badge .notification {
    font-size: 1rem;
}

.badge-1 {
    top: 15%;
    left: -50px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -50px;
    animation-delay: 2s;
}

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

/* ========================================
   TRADES SECTION
   ======================================== */
.trades-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trades-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--steel);
    margin-bottom: var(--space-xl);
}

.trades-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trade-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all var(--transition-fast);
}

.trade-item:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.trade-icon {
    font-size: 1.125rem;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

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

.section-header p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
}

.step-card {
    flex: 1;
    max-width: 320px;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all var(--transition-base);
}

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

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--cream);
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border-radius: var(--radius-md);
    color: var(--amber);
    margin-bottom: var(--space-lg);
}

.step-card h3 {
    margin-bottom: var(--space-md);
}

.step-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    flex-shrink: 0;
    margin-top: 80px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.feature-card.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: var(--white);
}

.feature-card.feature-large h3 {
    color: var(--white);
}

.feature-card.feature-large p {
    color: var(--silver);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--amber);
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    margin-bottom: var(--space-md);
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* City Demo Animation */
.city-demo {
    position: relative;
    width: 280px;
    height: 260px;
    margin: 0 auto;
}

.city-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--amber) 0%, #e55a1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 44, 0.4);
    text-align: center;
    line-height: 1.2;
}

.city-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 44, 0.4);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    animation: cityFloat 3s ease-in-out infinite;
}

.city-tag::before {
    content: '✓';
    color: var(--amber);
    margin-right: 6px;
    font-weight: 700;
}

.city-1 { 
    top: 10%; 
    left: 50%; 
    transform: translateX(-50%);
    animation-delay: 0s; 
}

.city-2 { 
    top: 35%; 
    right: 0; 
    animation-delay: 0.5s; 
}

.city-3 { 
    bottom: 30%; 
    right: 5%; 
    animation-delay: 1s; 
}

.city-4 { 
    top: 40%; 
    left: 0; 
    animation-delay: 1.5s; 
}

@keyframes cityFloat {
    0%, 100% { transform: translateY(0); opacity: 0.9; }
    50% { transform: translateY(-4px); opacity: 1; }
}

.city-1 {
    animation: cityFloat1 3s ease-in-out infinite;
}

@keyframes cityFloat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
    50% { transform: translateX(-50%) translateY(-4px); opacity: 1; }
}

/* ========================================
   EARLY ACCESS SECTION
   ======================================== */
.early-access-section {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

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

.early-access-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    text-align: center;
}

.early-access-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.early-access-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--amber) 0%, #e55a1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--white);
}

.early-access-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.early-access-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--amber);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.author-trade {
    font-size: 0.8125rem;
    color: var(--steel);
}

.testimonial-card.featured .author-trade {
    color: var(--silver);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.pricing-single {
    display: flex;
    justify-content: center;
}

.pricing-card-main {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: var(--white);
    padding: var(--space-3xl) var(--space-4xl);
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-main .pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.pricing-amount-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.price-range {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--amber) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 1.125rem;
    color: var(--silver);
    font-weight: 500;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--steel);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.pricing-card-main .pricing-features {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.pricing-card-main .pricing-features li {
    color: var(--silver);
}

.pricing-card-main .pricing-features .check {
    color: var(--amber);
}

.pricing-card-main .btn-primary {
    width: 100%;
    justify-content: center;
}

.pricing-card.popular .period {
    color: var(--silver);
}

.pricing-features {
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.popular .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: var(--silver);
}

.pricing-features .check {
    color: var(--success);
    font-weight: bold;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
    justify-content: center;
}

.pricing-card.popular .btn-primary {
    background: var(--amber);
}

.pricing-card.popular .btn-primary:hover {
    background: var(--amber-light);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #252525 50%, var(--charcoal-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 44, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 44, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: 1.0625rem;
    color: var(--silver);
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    margin-bottom: var(--space-lg);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--steel);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--charcoal);
    padding: var(--space-3xl) 0 var(--space-xl);
    color: var(--silver);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-grid.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    gap: var(--space-4xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 320px;
    color: var(--steel);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--silver);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--amber);
    color: var(--white);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--steel);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
    color: var(--steel);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto var(--space-2xl);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .feature-card.feature-large {
        grid-column: span 3;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .early-access-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-main {
        padding: var(--space-2xl);
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .stat-divider {
        display: none;
    }
    
    .trades-grid {
        gap: var(--space-sm);
    }
    
    .trade-item {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.8125rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.feature-large {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary.btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .btn-secondary {
        justify-content: center;
    }
}

/* ========================================
   LEGAL PAGES (Terms, Privacy)
   ======================================== */
.legal-page {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-4xl);
    background: var(--cream);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.legal-updated {
    color: var(--steel);
    font-size: 0.875rem;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-4xl);
    background: var(--cream);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.contact-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--amber) 0%, #e55a1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--steel);
    margin-bottom: var(--space-sm);
}

.contact-link {
    color: var(--amber);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: #e55a1b;
}

.contact-detail {
    font-weight: 600;
    color: var(--charcoal);
}

.contact-form-container {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--steel);
}

.form-group select {
    cursor: pointer;
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-card {
        flex: 1;
        min-width: 200px;
    }
    
    .legal-content {
        padding: var(--space-xl);
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
}

