/* ========================================
   MODERN CONVERSION-FOCUSED DESIGN
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #1E40AF;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #0EA5E9;
    --accent: #8B5CF6;
    --success: #10B981;
    --warning: #F59E0B;

    /* Neutrals */
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #0EA5E9 0%, #8B5CF6 100%);
    --gradient-accent: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);

    /* 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 100px;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

/* Trust Bar - Mobile First */
.trust-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.75rem;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
}

.trust-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .trust-bar {
        padding: 12px 0;
        font-size: 0.875rem;
    }

    .trust-items {
        gap: 2rem;
    }

    .trust-item {
        gap: 0.5rem;
        font-size: inherit;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 1024px) {
    .trust-items {
        gap: 3rem;
    }
}

/* ========================================
   NAVIGATION - MODERN MOBILE-FIRST DESIGN
   ======================================== */

/* Navbar - Smooth transitions */
.navbar {
    background: var(--white);
    padding: 0.875rem 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--gray-200);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0.625rem 0;
}

/* Nav Container - Flex layout */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - Mobile First */
.logo-link {
    display: inline-flex;
    align-items: center;
    z-index: 1001;
    transition: transform var(--transition-base);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: height var(--transition-base);
}

.navbar.scrolled .logo-img {
    height: 32px;
}

@media (min-width: 768px) {
    .logo-img {
        height: 44px;
        max-width: 160px;
    }

    .navbar.scrolled .logo-img {
        height: 38px;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 50px;
        max-width: 200px;
    }

    .navbar.scrolled .logo-img {
        height: 44px;
    }
}

/* Desktop Navigation Content - Hidden on mobile */
.nav-content {
    display: none;
}

@media (min-width: 1024px) {
    .nav-content {
        display: flex;
        align-items: center;
        gap: 3rem;
        flex: 1;
        justify-content: flex-end;
    }
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    transition: color var(--transition-base);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Desktop Nav Actions (Sign In + Get Started) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-signin {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    transition: all var(--transition-base);
    border-radius: 6px;
}

.btn-signin:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

/* Mobile Menu Button - Visible only on mobile */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-btn:hover {
    background: var(--gray-100);
    border-radius: 8px;
}

.menu-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-icon::before {
    top: -7px;
}

.menu-icon::after {
    top: 7px;
}

/* Animated hamburger to X */
.menu-btn.active .menu-icon {
    background: transparent;
}

.menu-btn.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-btn.active .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

/* Mobile Backdrop */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    pointer-events: none;
    z-index: 997;
}

.mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu - Clean Slide-in */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transition: right var(--transition-base);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

@media (min-width: 1024px) {
    .mobile-menu,
    .mobile-backdrop {
        display: none;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 80px 0 24px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 24px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav-link.active {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--gray-100);
    font-weight: 600;
}

.mobile-nav-link.secondary {
    color: var(--gray-500);
}

.mobile-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.75rem 24px;
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 60px 0 60px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: var(--section-padding) 0 80px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.badge-white {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

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

.hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 600;
}

/* Value Props */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.value-prop svg {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost:hover {
    background: rgba(30, 64, 175, 0.05);
}

.btn-outline-small {
    padding: 8px 20px;
    font-size: 0.9375rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        margin-bottom: 2.5rem;
    }
}

/* Social Proof */
.social-proof {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: #F59E0B;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* Hero Image & Images */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

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

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
    max-height: 600px;
}

.mission-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* Image Placeholders (for reference if needed) */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-400);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.placeholder-text {
    font-weight: 700;
    color: var(--gray-500);
    font-size: 1.125rem;
    text-align: center;
    z-index: 1;
    position: relative;
}

.image-placeholder.large {
    aspect-ratio: 6/7;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--shadow-xl);
    animation: floatCard 4s ease-in-out infinite;
}

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

.stat-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1s;
}

.stat-card-3 {
    top: 50%;
    right: -8%;
    animation-delay: 2s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray-400);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gray-400);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

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

/* Stats Banner - Mobile First */
.stats-banner {
    background: var(--white);
    padding: 2.5rem 0;
    box-shadow: var(--shadow-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem 1rem;
}

@media (min-width: 768px) {
    .stats-banner {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .stats-banner {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.stat-divider {
    display: none;
}

@media (min-width: 1024px) {
    .stat-divider {
        display: block;
        width: 1px;
        height: 60px;
        background: var(--gray-300);
    }

    .stat-divider:nth-child(5),
    .stat-divider:nth-child(7) {
        display: block;
    }
}

/* Section Headers - Mobile First */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-header {
        margin: 0 auto 3rem;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin: 0 auto 4rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* How It Works - Mobile First */
.how-it-works {
    padding: 60px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .how-it-works {
        padding: var(--section-padding) 0;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-base);
}

.step-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.step-link:hover {
    gap: 0.5rem;
}

/* Testimonials - Mobile First */
.testimonials {
    padding: 60px 0;
    background: var(--gray-100);
}

@media (min-width: 1024px) {
    .testimonials {
        padding: var(--section-padding) 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.role {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.rating {
    color: #F59E0B;
    font-size: 1rem;
}

blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.verified-badge {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
}

.date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Carousel styles removed - using static grid now */

/* Mission Section - Mobile First */
.mission {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mission {
        padding: var(--section-padding) 0;
    }

    .mission-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.mission-visual {
    order: -1;
}

@media (min-width: 1024px) {
    .mission-visual {
        order: 0;
    }
}

.mission-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.trust-indicator svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.trust-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* CTA Section - Mobile First */
.cta-section {
    padding: 60px 0;
    background: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: var(--section-padding) 0;
    }

    .cta-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cta-text > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.cta-benefits li {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.cta-box {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.quick-signup-form input,
.quick-signup-form select {
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    transition: all var(--transition-base);
}

.quick-signup-form input:focus,
.quick-signup-form select:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-badges span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin: 1.5rem 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-certifications {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Additional Mobile Refinements */
.floating-card {
    display: none;
}

@media (min-width: 1024px) {
    .floating-card {
        display: block;
    }
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .cta-group {
        flex-direction: row;
        gap: 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Carousel wrapper styles removed - using static grid now */

.hero-img,
.mission-img {
    border-radius: 12px;
    max-height: 350px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-img,
    .mission-img {
        max-height: 450px;
    }
}

@media (min-width: 1024px) {
    .hero-img {
        border-radius: 20px;
        max-height: 600px;
    }

    .mission-img {
        border-radius: 20px;
        max-height: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .trust-bar,
    .mobile-menu-toggle {
        display: none;
    }
}
