/* APSRecruits Landing Page Styles */

/* Global Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-orange: #f9550d;
    --primary-orange-light: #ff6b2b;
    --primary-orange-dark: #e8440a;
    --navy: #151133;
    --navy-light: #1e1a4a;
    --navy-dark: #0d0b26;
    --light-bg: #fafbff;
    --white: #ffffff;
    
    /* Social Colors */
    --gmail-red: #EA4335;
    --twitter-blue: #1DA1F2;
    
    /* Neutral Colors */
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    
    /* Success & Accent */
    --success: #38a169;
    --warning: #d69e2e;
    --accent: #4299e1;
    
    /* Typography */
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    
    /* 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;
    
    /* Container Max Width */
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-medium);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    /* NO TRANSITIONS */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    /* NO TRANSITIONS */
}

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

.cta-button {
    background: var(--primary-orange);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-primary);
    /* NO TRANSITIONS OR TRANSFORMS */
}

.cta-button:hover {
    background: var(--primary-orange-dark);
    /* NO TRANSFORMS OR SHADOWS */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    /* NO TRANSITIONS */
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(249, 85, 13, 0.1) 0%, 
        rgba(21, 17, 51, 0.9) 50%, 
        rgba(30, 26, 74, 0.95) 100%);
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.float-element {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.1;
    /* NO ANIMATIONS */
}

.float-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    top: 20%;
    left: 10%;
    /* NO ANIMATION DELAYS */
}

.float-2 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 60%;
    right: 15%;
    /* NO ANIMATION DELAYS */
}

.float-3 {
    width: 80px;
    height: 80px;
    background: var(--success);
    bottom: 20%;
    left: 20%;
    /* NO ANIMATION DELAYS */
}

/* REMOVE ALL KEYFRAMES */
/*
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
*/

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    background: rgba(249, 85, 13, 0.2);
    border: 1px solid rgba(249, 85, 13, 0.3);
    color: var(--primary-orange-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.primary-btn {
    background: var(--primary-orange);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    /* NO TRANSITIONS */
}

.primary-btn:hover {
    background: var(--primary-orange-dark);
    /* NO TRANSFORMS OR SHADOWS */
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    backdrop-filter: blur(10px);
    font-family: var(--font-primary);
    /* NO TRANSITIONS */
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    /* NO TRANSFORMS */
}

.download-badges {
    display: flex;
    gap: var(--space-md);
}

.store-badge {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    /* NO TRANSITIONS */
}

/* Fix Google Play badge size to match Apple badge */
.store-badge[alt*="Google Play"] {
    height: 60px;
    /* NO TRANSFORMS */
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 300px;
    max-height: 600px;
    background: linear-gradient(145deg, #2d3748, #4a5568);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    /* NO TRANSFORMS */
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.time {
    color: var(--text-dark);
}

.battery-indicator {
    width: 24px;
    height: 12px;
    border: 1px solid var(--text-light);
    border-radius: 2px;
    position: relative;
}

.battery-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    /* NO TRANSFORMS */
    width: 2px;
    height: 6px;
    background: var(--text-light);
    border-radius: 0 1px 1px 0;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.profile-preview {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.avatar-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.player-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.player-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.quick-stats {
    display: flex;
    gap: 8px;
}

.stat-pill {
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-medium);
}

.match-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 8px;
}

.match-item.featured {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(135deg, rgba(249, 85, 13, 0.05), white);
}

.school-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.school-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--gray-200);
}

.school-logo.stanford {
    background: linear-gradient(135deg, #8c1515, #b1040e);
}

.school-logo.ucla {
    background: linear-gradient(135deg, #2774ae, #005581);
}

.school-logo.arizona {
    background: linear-gradient(135deg, #ab0520, #8b0015);
}

.school-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-dark);
}

.school-info p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

.match-score {
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.match-score.dream {
    background: var(--success);
    color: white;
}

.match-score.target {
    background: var(--accent);
    color: white;
}

.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.app-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}

.primary-app {
    background: var(--primary-orange);
    color: white;
}

.secondary-app {
    background: var(--gray-100);
    color: var(--text-medium);
}

/* Section Styles */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    background: rgba(249, 85, 13, 0.1);
    border: 1px solid rgba(249, 85, 13, 0.2);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto var(--space-lg);
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Features Section */
.features {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    /* Remove all transitions to prevent fade issues */
}

.feature-screenshot {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    position: relative;
    z-index: 2;
}

.app-feature-image {
    max-width: 120px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Force visibility - clean display with no styling effects */
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 999 !important;
}

.feature-content {
    padding: var(--space-2xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.feature-content .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-lg);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    opacity: 0;
    /* NO TRANSITIONS */
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0;
}

/* Disable hover effects to prevent animation conflicts */
/*
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
*/

.feature-card.spotlight {
    border: 1px solid var(--gray-200);
    background: white;
}

.feature-card.spotlight::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    color: var(--text-medium);
    /* NO TRANSITIONS */
}

.feature-content .feature-icon {
    width: 60px;
    height: 60px;
}

.feature-icon.ai {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
}

.feature-icon.communication {
    background: linear-gradient(135deg, var(--gmail-red), #ff6b5b);
    color: white;
}

.feature-icon.profile {
    background: linear-gradient(135deg, var(--accent), #63b3ed);
    color: white;
}

.feature-icon.family {
    background: linear-gradient(135deg, var(--success), #68d391);
    color: white;
}

.feature-icon.tracking {
    background: linear-gradient(135deg, var(--warning), #f6e05e);
    color: white;
}

.feature-icon.verified {
    background: linear-gradient(135deg, #805ad5, #b794f6);
    color: white;
}

/* Disable hover effects to prevent animation conflicts */
/*
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}
*/

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: auto;
}

.feature-highlight {
    margin-top: var(--space-md);
    padding: 8px 16px;
    background: rgba(249, 85, 13, 0.1);
    border-radius: 20px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    background: white;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    max-width: 800px;
    margin: 0 auto;
}

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

.step-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    background: var(--light-bg);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.step-content {
    flex: 1;
    padding-top: var(--space-sm);
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    color: var(--text-medium);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.step-connector {
    display: flex;
    justify-content: center;
    position: relative;
    margin: var(--space-md) 0;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 1px;
}

.connector-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    /* NO TRANSFORMS */
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: var(--radius-full);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.testimonial-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card.featured {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(135deg, rgba(249, 85, 13, 0.05), white);
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

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

.quote-mark {
    font-size: 4rem;
    color: var(--primary-orange);
    line-height: 1;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.rating {
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
}

.author-avatar.emma {
    background: linear-gradient(135deg, #8c1515, #b1040e);
}

.author-avatar.lisa {
    background: linear-gradient(135deg, var(--accent), #63b3ed);
}

.author-avatar.maya {
    background: linear-gradient(135deg, #ab0520, #8b0015);
}

.author-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.achievement {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 2px;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

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

.success-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.success-stat .stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: var(--space-sm);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(249, 85, 13, 0.2) 0%, 
        rgba(21, 17, 51, 0.9) 50%, 
        rgba(30, 26, 74, 0.95) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.cta-text h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.download-section {
    text-align: center;
}

.download-section h3 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.download-btn img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.or-divider {
    position: relative;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.or-divider::before {
    left: -80px;
}

.or-divider::after {
    right: -80px;
}

.web-signup {
    text-align: center;
}

.signup-btn {
    background: var(--primary-orange);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    margin-bottom: var(--space-md);
}

.signup-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 85, 13, 0.4);
}

.signup-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Blog Styles
   ========================================== */
.blog-post {
    padding: 6rem 0 4rem;
    background: var(--light-bg);
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.blog-post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.blog-date, .blog-category {
    background: var(--primary-orange);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-category {
    background: var(--accent);
}

.blog-post-body {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1.05rem;
}

.blog-post-body h2 {
    color: var(--primary-orange);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.blog-post-body h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.blog-post-body h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.blog-post-body h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}

.blog-post-body p {
    margin-bottom: 1.25rem;
}

.blog-post-body ul, .blog-post-body ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.blog-post-body li {
    margin-bottom: 0.5rem;
}

.blog-hero-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin: 0.5rem 0 1.5rem;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 50/50 Image-Text Split Layout */
.image-text-split {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    margin: 2rem 0;
    min-height: 400px;
}

.image-text-split.reverse {
    flex-direction: row-reverse;
}

.image-text-split .text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.image-text-split .image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-text-split .image-container img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .image-text-split,
    .image-text-split.reverse {
        flex-direction: column;
        min-height: auto;
    }
    
    .image-text-split .image-container img {
        max-height: 300px;
    }
    
    .image-text-split .text-container {
        padding: 0;
        margin-top: 1rem;
    }
}

.blog-content-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.blog-callout {
    background: rgba(34, 139, 34, 0.08);
    border-left: 3px solid var(--primary-orange);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    font-size: 0.95rem;
}

.blog-template {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-example {
    background: rgba(255, 165, 0, 0.08);
    border-left: 3px solid var(--accent);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    font-style: italic;
    font-size: 0.95rem;
}

.blog-warning {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.blog-warning h4 {
    color: #dc3545;
    margin-top: 0;
    font-size: 1rem;
}

.blog-action-plan {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.08) 0%, rgba(34, 139, 34, 0.03) 100%);
    border: 1px solid rgba(34, 139, 34, 0.2);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.blog-action-plan ol {
    margin: 0;
    padding-left: 1.25rem;
}

.blog-action-plan li {
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.blog-conclusion {
    background: var(--gray-50);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.blog-conclusion p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.blog-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    padding: 2rem;
    margin: 2rem -2.5rem -2.5rem;
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.blog-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.download-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.download-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.footer-main {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-brand {
    margin: 0 auto;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 300px;
    margin-bottom: var(--space-xl);
    object-fit: contain;
    filter: grayscale(100%); /* Makes the logo black and white */
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

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

.footer-column h4 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.footer-badges {
    display: flex;
    gap: var(--space-md);
}

.security-badge,
.privacy-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer-main {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Navigation improvements */
    .navbar {
        padding: var(--space-sm) 0;
    }
    
    .nav-container {
        padding: var(--space-sm) var(--space-md);
    }
    
    .logo {
        height: 35px;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-xl);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        display: flex;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 1.125rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero section improvements */
    .hero {
        min-height: 100vh;
        padding: 120px 0 var(--space-3xl);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
        padding: 0 var(--space-md);
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: var(--space-xl);
    }
    
    .hero-badge span {
        font-size: 0.875rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-sm);
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-lg);
        margin-bottom: var(--space-xl);
    }
    
    .stat {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .download-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        max-width: 280px;
        margin: 0 auto;
    }
    
    .store-badge {
        max-width: 200px;
        height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .app-screenshot {
        width: 180px;
        height: 360px;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Other mobile improvements */
    .step {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .or-divider::before,
    .or-divider::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    /* Even more compact navbar */
    .nav-container {
        padding: var(--space-sm);
    }
    
    .logo {
        height: 32px;
    }
    
    /* Hero improvements for small screens */
    .hero {
        padding: 100px 0 var(--space-2xl);
    }
    
    .hero-content {
        padding: 0 var(--space-sm);
        gap: var(--space-xl);
    }
    
    .hero-badge span {
        font-size: 0.8125rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.1;
        margin-bottom: var(--space-sm);
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.4;
        margin-bottom: var(--space-lg);
        padding: 0;
    }
    
    .hero-stats {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    .download-badges {
        max-width: 260px;
        gap: var(--space-sm);
    }
    
    .store-badge {
        max-width: 180px;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .app-screenshot {
        width: 144px;
        height: 288px;
    }
    
    /* General text improvements */
    h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-sm);
    }
    
    .section-header h2 {
        font-size: 1.625rem;
    }
    
    /* CTA section mobile improvements */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }
    
    .cta-text p {
        font-size: 0.9375rem;
        line-height: 1.4;
    }
    
    .cta-features {
        justify-content: center;
        gap: var(--space-md);
    }
    
    .download-section h3 {
        font-size: 1.125rem;
        margin-bottom: var(--space-md);
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .download-btn img {
        max-width: 180px;
        height: auto;
    }

    .features-grid,
    .testimonials-grid {
        margin-bottom: var(--space-2xl);
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        padding: 15px;
    }
    
    .app-interface {
        padding: 15px;
    }

    /* Blog mobile styles */
    .blog-post {
        padding: 4rem 0 4rem;
    }

    .blog-post-content {
        padding: 2rem 1.25rem;
        margin: 0 1rem;
    }

    .blog-post-header h1 {
        font-size: 1.75rem;
    }

    .blog-post-meta {
        flex-wrap: wrap;
    }

    .blog-hero-image {
        height: 220px;
        margin: 0.5rem 0 1rem;
        object-fit: contain;
        object-position: center;
    }

    .blog-content-image {
        height: 200px;
        margin: 1rem 0;
        object-fit: contain;
        object-position: center;
    }

    .blog-cta {
        margin: 2rem -1.25rem -2rem;
        padding: 1.5rem;
    }

    .blog-cta h3 {
        font-size: 1.25rem;
    }

    .blog-template, .blog-callout, .blog-example, 
    .blog-warning, .blog-action-plan, .blog-conclusion {
        padding: 1rem;
        margin: 1rem 0;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .download-btn img {
        height: 45px;
    }
}
