/* ============================================
   MyStoreFunding Landing Page Styles
   Professional Blue/Green Color Scheme
   ============================================ */

/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    /* Primary Colors */
    --primary-blue: #0066FF;
    --primary-green: #00C896;
    --primary-dark: #001F3F;
    
    /* Accent Colors */
    --accent-purple: #7C3AED;
    --accent-orange: #FF6B35;
    --accent-red: #EF4444;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Success/Warning/Danger */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00C896 100%);
    --gradient-secondary: linear-gradient(135deg, #7C3AED 0%, #0066FF 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);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-green);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 40px -5px rgba(0, 102, 255, 0.3);
    color: var(--white);
}

.btn-hero i {
    font-size: 1.25rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--white);
    padding: 4px;
    box-shadow: var(--shadow-sm);
}

.logo i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links .btn-primary {
    color: var(--white);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--gray-50);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 50%, #E6FFFA 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.hero-text .badge i {
    color: var(--warning);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--gray-700);
    margin-bottom: 20px;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.cta-note i {
    color: var(--success);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 60%), #0f172a;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.hero-media-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.hero-media-badge i {
    color: var(--primary-blue);
}

.hero-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.hero-screenshot:hover {
    transform: scale(1.02);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 2px dashed var(--gray-300);
    position: relative;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.image-note {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
    line-height: 1.5;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.badge-alt {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.how-it-works-section .badge-alt {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   Problem Section
   ============================================ */
.problem-section {
    padding: var(--section-padding);
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--danger);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.problem-icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.problem-icon.orange {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
}

.problem-icon.purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple);
}

.problem-icon.blue {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
}

.problem-detail {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 10px;
}

.problem-summary {
    max-width: 800px;
    margin: 0 auto;
}

.summary-box {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 2px solid var(--danger);
    border-radius: 16px;
    padding: 35px;
}

.summary-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--danger);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cost-calculation {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 1.125rem;
}

.cost-row:last-child {
    border-bottom: none;
}

.highlight-row {
    color: var(--danger);
    font-weight: 600;
}

.cost-row.total {
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid var(--gray-300);
    font-size: 1.375rem;
}

.cost-note {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--success);
    text-align: center;
    margin: 0;
}

/* ============================================
   Solution Section
   ============================================ */
.solution-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 20px;
}

.solution-highlight {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.savings-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: var(--success);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 15px;
}

.solution-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.solution-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
}

/* ============================================
   Comparison Section
   ============================================ */
.comparison-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--gradient-primary);
}

.comparison-table th {
    padding: 25px 20px;
    text-align: left;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table th:first-child {
    width: 30%;
}

.comparison-table .table-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}

.comparison-table .table-logo i {
    font-size: 1.5rem;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 1rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.highlight-col {
    background: rgba(0, 200, 150, 0.05);
    font-weight: 600;
}

.success {
    color: var(--success);
}

.warning {
    color: var(--warning);
}

.danger {
    color: var(--danger);
}

/* ============================================
   Savings Calculator
   ============================================ */
.savings-calculator {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.savings-calculator h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.75rem;
}

.calculator-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calculator-input {
    text-align: center;
}

.calculator-input label {
    display: block;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--gray-700);
}

.calculator-input input {
    width: 100%;
    max-width: 400px;
    padding: 15px 25px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.calculator-input input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-platform {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.result-platform h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--gray-600);
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.savings-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.savings-highlight .savings-icon {
    width: 120px;
    height: auto;
    border-radius: 12px;
}

.savings-highlight i {
    font-size: 3rem;
}

.savings-label {
    font-size: 1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: var(--section-padding);
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 20px;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 50%, #ECFDF5 100%);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-content {
    text-align: center;
    margin-top: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 0 auto 20px;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
}

.timeline-note {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 0 auto;
}

.timeline-note i {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.timeline-note p {
    margin: 0;
    display: flex;
    align-items: center;
}

/* ============================================
   Audience Section
   ============================================ */
.audience-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.audience-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.audience-card.primary {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 3px solid var(--primary-blue);
}

.audience-card.secondary {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 3px solid var(--primary-green);
}

.audience-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.audience-card.primary .audience-badge {
    color: var(--primary-blue);
}

.audience-card.secondary .audience-badge {
    color: var(--primary-green);
}

.audience-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.audience-card.primary .audience-icon {
    color: var(--primary-blue);
}

.audience-card.secondary .audience-icon {
    color: var(--primary-green);
}

.audience-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.audience-list {
    list-style: none;
    margin-bottom: 25px;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.audience-list i {
    color: var(--success);
    font-size: 1.125rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.audience-example {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.shopify-note {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--warning);
    border-radius: 8px;
    display: flex;
    gap: 12px;
}

.shopify-note i {
    color: var(--warning);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.shopify-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.shopify-note a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.testimonial-stats {
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--gray-700);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-benefit i {
    font-size: 1.5rem;
}

.cta-buttons {
    margin-bottom: 25px;
}

.cta-note-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 30px;
}

.cta-guarantee {
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-guarantee i {
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.cta-guarantee p {
    color: var(--white);
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.footer-logo i {
    font-size: 1.75rem;
    color: var(--primary-green);
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-300);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.footer-note {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-screenshot {
        border-radius: 12px;
    }

    .hero-media {
        border-radius: 16px;
    }

    .hero-media-badge {
        top: 12px;
        left: 12px;
        font-size: 0.8rem;
    }
    
    .problem-grid,
    .solution-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.875rem;
    }
    
    .result-row {
        grid-template-columns: 1fr;
    }
    
    .savings-highlight .savings-icon {
        width: 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .author-avatar-img {
        width: 45px;
        height: 45px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-image {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 1.25rem;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .savings-calculator {
        padding: 25px;
    }
    
    .calculator-input input {
        font-size: 1.25rem;
    }
    
    .result-amount,
    .savings-amount {
        font-size: 2rem;
    }
    
    .savings-highlight .savings-icon {
        width: 60px;
    }
    
    .author-avatar-img {
        width: 40px;
        height: 40px;
    }
    
    .cta-content h2 {
        font-size: 1.875rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .footer-logo-image {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* ============================================
   Animation Classes
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .mobile-menu,
    .footer-social,
    .btn-hero,
    .btn-primary {
        display: none;
    }
}
