/* ===== DESIGN TOKENS ===== */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAF9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F0FDF4;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --accent-blue: #059669;
    --accent-purple: #10B981;
    --accent-cyan: #06D6A0;
    --accent-green: #059669;
    --gradient-blue: linear-gradient(135deg, #059669, #10B981);
    --gradient-hero: linear-gradient(160deg, #F0FDF4 0%, #ECFDF5 40%, #F0FDF4 100%);
    --gradient-section: linear-gradient(180deg, #FFFFFF 0%, #F8FAF9 50%, #FFFFFF 100%);
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-accent: rgba(5, 150, 105, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 4px 24px rgba(5, 150, 105, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

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

section {
    padding: 100px 0;
    padding-bottom: 100px;
    position: relative;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    letter-spacing: -0.02em;
}

.nav-logo-text strong {
    font-weight: 800;
    color: #059669;
}

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

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 500;
}

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

.nav-cta {
    background: var(--gradient-blue);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.25);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-primary {
    background: var(--gradient-blue);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid var(--border-accent);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(5, 150, 105, 0.06);
    border-color: var(--accent-blue);
}

.trust-line {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-line span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-line .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: 40px 0 40px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.social-proof p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 16px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== FEATURE CARDS ===== */
.features {
    background: var(--gradient-section);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-blue);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(5, 150, 105, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== DEEP FEATURES ===== */
.deep-feature {
    position: relative;
}

.deep-feature:nth-child(even) {
    background: var(--bg-secondary);
}

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

.deep-content.reversed {
    direction: rtl;
}

.deep-content.reversed>* {
    direction: ltr;
}

.deep-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.deep-text>p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.deep-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.deep-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.deep-bullets li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.deep-cta {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.deep-cta:hover {
    gap: 12px;
}

.deep-cta::after {
    content: '→';
}

.deep-visual {
    background: transparent;
    border: none;
    border-radius: var(--radius-xl);
    padding: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.deep-feature-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    display: block;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.deep-visual::before {
    display: none;
}

.visual-mockup {
    position: relative;
    z-index: 1;
    text-align: center;
}

.visual-mockup .mockup-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.visual-mockup p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Pricing Engine Mockup --- */
.pricing-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8faf9;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.pricing-mockup-title {
    margin-left: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.pricing-mockup-body {
    padding: 20px;
}

.pricing-mockup-product {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.pricing-mockup-product-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-mockup-product-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pricing-mockup-product-base {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pricing-mockup-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 14px 0;
}

.pricing-mockup-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-mockup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-mockup-row span:nth-child(2) {
    flex: 1;
}

.pricing-mockup-row-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b7280;
    flex-shrink: 0;
}

.pricing-mockup-row-price {
    font-weight: 600;
    color: var(--accent-blue);
    white-space: nowrap;
}

.pricing-mockup-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.pricing-mockup-total-price {
    font-size: 1.15rem;
    color: var(--accent-blue);
}

.pricing-mockup-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 12px;
    background: #ecfdf5;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #047857;
}

/* --- Widget Layouts Mockup --- */
.widget-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.widget-mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8faf9;
    border-bottom: 1px solid #e5e7eb;
}

.widget-mockup-body {
    padding: 20px;
}

.widget-mockup-layouts {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
}

.widget-layout-card {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 6px 8px;
    text-align: center;
    cursor: default;
    transition: border-color 0.2s;
}

.widget-layout-card--active {
    border-color: var(--accent-blue);
    background: #ecfdf5;
}

.widget-layout-preview {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.widget-preview-browser {
    width: 100%;
    height: 50px;
    background: #f3f4f6;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.widget-preview-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px 4px 0 0;
}

.widget-preview-modal {
    width: 28px;
    height: 22px;
    background: var(--accent-blue);
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    opacity: 0.7;
}

.widget-preview-drawer-panel {
    width: 18px;
    height: 100%;
    background: var(--accent-blue);
    position: absolute;
    right: 0;
    top: 8px;
    opacity: 0.7;
    border-radius: 2px 0 0 0;
}

.widget-preview-fullscreen-overlay {
    width: 100%;
    height: 100%;
    background: var(--accent-blue);
    position: absolute;
    top: 8px;
    left: 0;
    opacity: 0.5;
}

.widget-layout-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.widget-layout-card--active .widget-layout-name {
    color: var(--accent-blue);
}

.widget-mockup-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-option-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.widget-option-colors {
    display: flex;
    gap: 6px;
}

.widget-option-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: default;
}

.widget-option-swatch--active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent-blue);
}

.widget-option-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-option-slider-track {
    width: 100px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    position: relative;
}

.widget-option-slider-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 3px;
}

.widget-option-slider-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.widget-option-slider-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 30px;
}

.widget-option-select {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-primary);
    background: #f3f4f6;
    padding: 5px 10px;
    border-radius: 6px;
}

.widget-mockup-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--accent-blue);
    color: #fff;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* --- Order Dashboard Mockup --- */
.order-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.order-mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8faf9;
    border-bottom: 1px solid #e5e7eb;
}

.order-mockup-body {
    padding: 20px;
}

.order-mockup-order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.order-mockup-order-id {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.order-mockup-order-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.order-mockup-badges {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.order-mockup-status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.order-mockup-status--paid {
    background: #ecfdf5;
    color: #047857;
}

.order-mockup-status--unfulfilled {
    background: #fef3c7;
    color: #92400e;
}

.order-mockup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.order-mockup-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    flex-shrink: 0;
}

.order-mockup-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.order-mockup-item-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.order-mockup-details {
    background: #f9fafb;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-mockup-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.order-mockup-detail-label {
    color: var(--text-muted);
    font-weight: 500;
}

.order-mockup-detail-value {
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.order-mockup-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.1);
}

.order-mockup-stats {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.order-mockup-stat {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    background: #f9fafb;
    border-radius: 8px;
}

.order-mockup-stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-blue);
}

.order-mockup-stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--gradient-section);
}

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

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-cyan), transparent);
}

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

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.2);
    position: relative;
    overflow: visible;
}

.step-number::before,
.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(5, 150, 105, 0.4);
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
}

.step-number::before {
    animation: ring-expand 3s ease-out infinite;
}

.step-number::after {
    animation: ring-expand-slow 3s ease-out infinite;
    animation-delay: 0.8s;
}

.step-card:nth-child(1) .step-number::before { animation-delay: 0s; }
.step-card:nth-child(1) .step-number::after { animation-delay: 0.8s; }
.step-card:nth-child(2) .step-number::before { animation-delay: 0.6s; }
.step-card:nth-child(2) .step-number::after { animation-delay: 1.4s; }
.step-card:nth-child(3) .step-number::before { animation-delay: 1.2s; }
.step-card:nth-child(3) .step-number::after { animation-delay: 2s; }
.step-card:nth-child(4) .step-number::before { animation-delay: 1.8s; }
.step-card:nth-child(4) .step-number::after { animation-delay: 2.6s; }

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== USE CASES ===== */
.use-cases {
    background: var(--bg-secondary);
}

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

.usecase-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.usecase-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.usecase-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.usecase-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.usecase-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--gradient-section);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.pricing-toggle span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-toggle span.active {
    color: var(--text-primary);
}

.toggle-switch {
    width: 56px;
    height: 30px;
    border-radius: 50px;
    cursor: pointer;
    background: var(--bg-card);
    border: 2px solid var(--border-accent);
    position: relative;
    transition: var(--transition);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    transition: var(--transition);
}

.toggle-switch.annual::after {
    transform: translateX(26px);
}

.toggle-switch.annual {
    background: rgba(5, 150, 105, 0.15);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 24px rgba(5, 150, 105, 0.12);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 8px 0;
    font-family: 'Outfit', sans-serif;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card .price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    min-height: 20px;
}

.pricing-card .plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-features li .check {
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features li .cross {
    color: var(--text-muted);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.pricing-btn.primary {
    background: var(--gradient-blue);
    color: #fff;
}

.pricing-btn.primary:hover {
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.2);
    transform: translateY(-2px);
}

.pricing-btn.outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
}

.pricing-btn.outline:hover {
    background: rgba(5, 150, 105, 0.06);
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #064e3b;
    color: #fff;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.cta-glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.25);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(5, 150, 105, 0.2);
    bottom: -100px;
    right: -100px;
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a7f3d0;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.cta-badge svg {
    stroke: #6ee7b7;
}

.final-cta h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

.final-cta .sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
}

.final-cta .btn-primary {
    position: relative;
    font-size: 1.1rem;
    padding: 18px 44px;
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 24px rgba(16,185,129,0.4);
}

.final-cta .btn-primary:hover {
    background: #059669;
    box-shadow: 0 6px 32px rgba(16,185,129,0.5);
}

.final-cta .secondary-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 20px;
    position: relative;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.cta-trust-item svg {
    stroke: #6ee7b7;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 64px 0 32px;
}

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

.footer-brand .nav-logo {
    margin-bottom: 12px;
    display: inline-block;
    font-size: 1.3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== BACKGROUND SHAPE ANIMATIONS ===== */
@keyframes geo-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes geo-float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(3deg) scale(1.02); }
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.8); opacity: 1; }
}

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

@keyframes ring-expand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes ring-expand-slow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

.bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Large geometric wireframe */
.bg-geo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: geo-float 20s ease-in-out infinite;
}

.bg-geo--right {
    left: auto;
    right: -10%;
    top: 50%;
    transform: translate(0, -50%);
    animation: geo-float 25s ease-in-out infinite;
}

.bg-geo--left {
    left: -10%;
    right: auto;
    top: 50%;
    transform: translate(0, -50%);
    animation: geo-float 22s ease-in-out infinite;
}

.bg-geo--spin {
    animation: geo-rotate 80s linear infinite;
}

/* Small scattered dots */
.bg-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.bg-dot--sm { width: 7px; height: 7px; }
.bg-dot--lg { width: 14px; height: 14px; }

.bg-dot--pulse {
    animation: dot-pulse 4s ease-in-out infinite;
}

.bg-dot--float {
    animation: dot-float 5s ease-in-out infinite;
}

.bg-dot--delay-1 { animation-delay: 0s; }
.bg-dot--delay-2 { animation-delay: -1.2s; }
.bg-dot--delay-3 { animation-delay: -2.5s; }
.bg-dot--delay-4 { animation-delay: -3.8s; }
.bg-dot--delay-5 { animation-delay: -4.5s; }

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-divider--top {
    bottom: auto;
    top: -1px;
    transform: rotate(180deg);
}

.wave-divider--flip svg {
    transform: scaleX(-1);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

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

    .steps-grid::before {
        display: none;
    }

    .deep-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .deep-content.reversed {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0 100px;
    }

    .wave-divider svg {
        height: 60px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bg-shapes {
        display: none;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .final-cta {
        padding: 80px 0 72px;
    }
}