:root {
    --flow-blue: #08A7DF;
    --flow-teal: #19BDC6;
    --flow-mint: #31F4D2;
    --flow-dark: #203141;
    --flow-navy: #0F2847;
    --flow-slate: #1E3A5F;
    --flow-gray: #64748B;
    --flow-gray-light: #94A3B8;
    --flow-light: #F8FAFC;
    --flow-white: #FFFFFF;
    --flow-cream: #FAFBFC;
    --flow-border: #E2E8F0;
    --flow-red: #EF4444;
    --flow-red-light: #FEF2F2;
    --flow-red-dark: #BF1111;
    
    --gradient-brand: linear-gradient(135deg, var(--flow-blue) 0%, var(--flow-teal) 50%, var(--flow-mint) 100%);
    --gradient-subtle: linear-gradient(180deg, var(--flow-white) 0%, var(--flow-cream) 100%);
    --gradient-dark: linear-gradient(135deg, var(--flow-dark) 0%, var(--flow-navy) 100%);
    
    --font-display: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-brand: 0 4px 14px 0 rgba(8, 167, 223, 0.39);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--flow-white);
    color: var(--flow-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--flow-teal);
    color: var(--flow-white);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.red-emphasis {
    color: #BF1111;
}

.hero-highlight {
    color: #08A7DF;
    font-weight: 700;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease-smooth);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--flow-border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--flow-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-brand);
    color: var(--flow-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 14px rgba(8, 167, 223, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 167, 223, 0.4);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: var(--gradient-subtle);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(8, 167, 223, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(8, 167, 223, 0.1);
    border: 1px solid rgba(8, 167, 223, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--flow-blue);
    margin-bottom: 24px;
    animation: fadeUp 0.6s var(--ease-smooth) forwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--flow-teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--flow-dark);
    margin-bottom: 24px;
    animation: fadeUp 0.6s var(--ease-smooth) 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--flow-gray);
    margin-bottom: 40px;
    animation: fadeUp 0.6s var(--ease-smooth) 0.2s forwards;
    opacity: 0;
}

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

.hero-subtitle strong.hero-highlight {
    color: #08A7DF;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s var(--ease-smooth) 0.3s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--gradient-brand);
    color: var(--flow-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 167, 223, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--flow-white);
    color: var(--flow-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid var(--flow-border);
    transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
    border-color: var(--flow-teal);
    color: var(--flow-teal);
}

.hero-btn {
    min-width: 240px;
    justify-content: center;
    text-align: center;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeUp 0.8s var(--ease-smooth) 0.4s forwards;
    opacity: 0;
}

.hero-card {
    background: var(--flow-white);
    border: 1px solid var(--flow-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.time-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--flow-border);
}

.time-block {
    text-align: center;
}

.time-block.before .time-value {
    color: var(--flow-red);
    text-decoration: line-through;
    text-decoration-color: var(--flow-red);
    opacity: 0.7;
}

.time-block.after .time-value {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-value {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-small {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--flow-gray);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.time-label {
    font-size: 0.8rem;
    color: var(--flow-gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.time-arrow {
    width: 48px;
    height: 48px;
    background: var(--flow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--flow-teal);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.hero-stat {
    text-align: center;
    padding: 16px;
    background: var(--flow-light);
    border-radius: 12px;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--flow-dark);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--flow-gray);
    margin-top: 4px;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    background: var(--flow-white);
    border: 1px solid var(--flow-border);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

.floating-badge-icon {
    width: 32px;
    height: 32px;
    background: rgba(49, 244, 210, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.floating-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--flow-dark);
}

.floating-badge-text span {
    display: block;
    font-weight: 700;
    color: var(--flow-gray);
    font-size: 0.7rem;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--flow-teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-header {
    max-width: 700px;
    margin-bottom: 64px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--flow-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--flow-gray);
}

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

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

.problem-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--flow-dark);
    margin-bottom: 32px;
}

.problem-narrative {
    font-size: 1.1rem;
    color: var(--flow-gray);
    margin-bottom: 40px;
}

.problem-narrative p {
    margin-bottom: 16px;
}

.problem-narrative strong {
    color: var(--flow-dark);
}

.problem-narrative strong.red-emphasis {
    color: #BF1111;
}

.pain-points {
    display: grid;
    gap: 16px;
}

.pain-point {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--flow-red-light);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.pain-point:hover {
    transform: translateX(4px);
}

.pain-point-icon {
    width: 44px;
    height: 44px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pain-point h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--flow-dark);
    margin-bottom: 4px;
}

.pain-point p {
    font-size: 0.9rem;
    color: var(--flow-gray);
}

/* Solution Section */
.solution-section {
    background: var(--flow-light);
}

.solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.solution-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-intro p {
    font-size: 1.15rem;
    color: var(--flow-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 96px;
    height: 96px;
    background: var(--flow-white);
    border: 2px solid var(--flow-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-smooth);
}

.step-card:hover .step-number {
    border-color: var(--flow-teal);
    box-shadow: 0 0 0 8px rgba(25, 189, 198, 0.1);
}

.step-number span {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--flow-dark);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--flow-gray);
    max-width: 280px;
    margin: 0 auto;
}

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

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

.feature-card {
    padding: 32px;
    background: var(--flow-light);
    border: 1px solid var(--flow-border);
    border-radius: 16px;
    transition: all 0.3s var(--ease-smooth);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(8, 167, 223, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--flow-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--flow-gray);
}

/* Testimonial Section */
.testimonial-section {
    background: var(--gradient-dark);
    color: var(--flow-white);
}

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

.testimonial-card {
    text-align: center;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--flow-mint);
    margin-bottom: 40px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 48px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    line-height: 1;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--flow-dark);
}

.testimonial-info {
    text-align: left;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.testimonial-stat-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    color: var(--flow-mint);
    margin-bottom: 8px;
}

.testimonial-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ROI Calculator */
.calculator-section {
    background: var(--flow-light);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: var(--flow-white);
    border: 1px solid var(--flow-border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.calculator-inputs h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--flow-dark);
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--flow-dark);
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--flow-border);
    border-radius: 10px;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--flow-teal);
    box-shadow: 0 0 0 4px rgba(25, 189, 198, 0.1);
}

.calculator-results {
    background: var(--flow-light);
    border-radius: 16px;
    padding: 32px;
}

.calculator-results h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--flow-dark);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--flow-border);
}

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

.result-item.highlight {
    background: rgba(49, 244, 210, 0.1);
    margin: 16px -16px;
    padding: 20px 16px;
    border-radius: 12px;
    border: none;
}

.result-label {
    font-size: 0.9rem;
    color: var(--flow-gray);
}

.result-value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--flow-dark);
}

.result-item.highlight .result-value {
    font-size: 1.5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-item.highlight-red {
    background: rgba(191, 17, 17, 0.06);
    margin: 8px -16px;
    padding: 20px 16px;
    border-radius: 12px;
    border: none;
}

.result-item.highlight-red .result-value {
    font-size: 1.3rem;
    color: #BF1111;
    font-weight: 700;
}

.calculator-divider {
    height: 1px;
    background: var(--flow-border);
    margin: 24px 0;
}

/* Comparison Section */
.comparison-section {
    background: var(--flow-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 48px;
}

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

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--flow-border);
}

.comparison-table th {
    background: var(--flow-light);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--flow-dark);
}

.comparison-table th:nth-child(2) {
    background: rgba(8, 167, 223, 0.1);
    color: var(--flow-blue);
}

.comparison-table td {
    font-size: 0.9rem;
    color: var(--flow-gray);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--flow-dark);
}

.comparison-table td:nth-child(2) {
    background: rgba(8, 167, 223, 0.03);
}

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

.check {
    color: var(--flow-teal);
    font-weight: 600;
}

.cross {
    color: var(--flow-red);
}

.partial {
    color: #F59E0B;
}

/* Timeline Section */
.timeline-section {
    background: var(--flow-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    bottom: 0;
    width: 2px;
    background: var(--gradient-brand);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 64px;
    height: 64px;
    background: var(--flow-white);
    border: 3px solid var(--flow-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-marker span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--flow-teal);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--flow-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--flow-gray);
}

/* Security Section */
.security-section {
    background: var(--flow-white);
}

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

.security-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--flow-light);
    border: 1px solid var(--flow-border);
    border-radius: 16px;
}

.security-icon {
    width: 52px;
    height: 52px;
    background: rgba(8, 167, 223, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--flow-dark);
    margin-bottom: 8px;
}

.security-card p {
    font-size: 0.9rem;
    color: var(--flow-gray);
}

/* Pricing Section */
.pricing-section {
    background: var(--flow-light);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--flow-white);
    border: 2px solid var(--flow-border);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: 24px 24px 0 0;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-brand);
    color: var(--flow-white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.pricing-description {
    font-size: 1rem;
    color: var(--flow-gray);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--flow-border);
    font-size: 0.95rem;
    color: var(--flow-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(49, 244, 210, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--flow-teal);
    flex-shrink: 0;
}

.pricing-cta {
    margin-bottom: 20px;
}

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

.pricing-note {
    font-size: 0.85rem;
    color: var(--flow-gray);
    font-style: italic;
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--flow-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--flow-dark);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--flow-teal);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--flow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s var(--ease-smooth);
    flex-shrink: 0;
    color: var(--flow-gray);
}

.faq-item.active .faq-icon {
    background: var(--gradient-brand);
    color: var(--flow-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
}

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--flow-gray);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-dark);
    color: var(--flow-white);
    text-align: center;
}

.final-cta.final-cta-light {
    background: var(--flow-light);
    color: var(--flow-dark);
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.final-cta.final-cta-light p {
    color: var(--flow-gray);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.final-cta .btn-secondary {
    background: transparent;
    color: var(--flow-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--flow-mint);
    color: var(--flow-mint);
}

.final-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
}

.final-cta.final-cta-light .final-cta-note {
    color: var(--flow-gray);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    margin-bottom: 24px;
}

.final-cta-light .contact-form {
    background: var(--flow-white);
    border: 1px solid var(--flow-border);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.final-cta-light .form-group label {
    color: var(--flow-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--flow-white);
    transition: all 0.3s;
}

.form-group select {
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--flow-white);
    transition: all 0.3s;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--flow-light);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23203141' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.final-cta-light .form-group input,
.final-cta-light .form-group textarea {
    background: var(--flow-light);
    border: 1px solid var(--flow-border);
    color: var(--flow-dark);
}

.final-cta-light .form-group select {
    border: 1px solid var(--flow-border);
    color: var(--flow-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.final-cta-light .form-group input::placeholder,
.final-cta-light .form-group textarea::placeholder {
    color: var(--flow-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--flow-teal);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(25, 189, 198, 0.15);
}

.final-cta-light .form-group input:focus,
.final-cta-light .form-group select:focus,
.final-cta-light .form-group textarea:focus {
    background: var(--flow-white);
}

.form-group select option {
    background: var(--flow-dark);
    color: var(--flow-white);
}

.final-cta-light .form-group select option {
    background: var(--flow-white);
    color: var(--flow-dark);
}

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

.form-submit {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

/* Footer */
footer {
    padding: 48px 0;
    background: var(--flow-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer.footer-light {
    background: var(--flow-light);
    border-top: 1px solid var(--flow-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--flow-white);
}

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

.footer-light .footer-logo {
    color: var(--flow-dark);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-light .footer-links a {
    color: var(--flow-gray);
}

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

.footer-light .footer-links a:hover {
    color: var(--flow-teal);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-light .footer-copyright {
    color: var(--flow-gray);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .steps-grid {
        gap: 24px;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .time-comparison {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .time-arrow {
        transform: rotate(90deg);
        align-self: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-marker span {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .nav-cta {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Form mobile styles */
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form {
        padding: 24px;
    }
}
