/* ============================================
   KurbanApp — Landing Page Styles
   ============================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    --color-primary: #0F766E;
    --color-primary-dark: #0D6660;
    --color-secondary: #14B8A6;
    --color-secondary-light: #5EEAD4;
    --color-accent: #F59E0B;
    --color-accent-light: #FCD34D;

    --color-bg-white: #FFFFFF;
    --color-bg-light: #F8FAFB;
    --color-bg-dark: #0F172A;

    --color-text-primary: #1E293B;
    --color-text-secondary: #64748B;
    --color-text-white: #FFFFFF;
    --color-text-light: #94A3B8;

    --color-border: #E2E8F0;
    --color-danger: #EF4444;
    --color-danger-light: #FEE2E2;
    --color-danger-text: #DC2626;
    --color-warning: #F97316;
    --color-warning-light: #FFF7ED;

    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container-max: 1640px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ---------- UTILITY ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section-light {
    background-color: var(--color-bg-light);
}

.section-white {
    background-color: var(--color-bg-white);
}

.page-up-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-text-white);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-fast);
}

.page-up-btn svg {
    width: 22px;
    height: 22px;
}

.page-up-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.page-up-btn:hover {
    background: var(--color-primary-dark);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-white);
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(13, 102, 96, 0.4);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(15, 118, 110, 0.04);
    transform: translateY(-2px);
}

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

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

/* ============================================
   SECTION 1 — NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
}

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.navbar-logo svg,
.navbar-logo-img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    display: block;
}

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

.navbar-nav a {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    padding: 4px 0;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.navbar-nav a:hover {
    color: var(--color-primary-dark);
}

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

.navbar-cta {
    font-size: 1.06rem !important;
    padding: 14px 34px !important;
    border-radius: 12px !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-cta-mobile {
    display: none;
}

/* ============================================
   SECTION 2 — HERO
   ============================================ */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, rgba(15, 118, 110, 0.06) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 0.95fr 1.65fr;
    gap: 56px;
    align-items: center;
}

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

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

/* Devices Wrapper — Telefon + Oklar + Dashboard yan yana */
.hero-devices-wrapper {
    display: block;
    position: relative;
    width: 100%;
    min-height: 560px;
    padding-top: 12px;
}

/* ── Telefon Mockup ── */
.phone-mockup {
    width: 192px;
    flex-shrink: 0;
    background: #DCE5EF;
    border-radius: 24px;
    padding: 7px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(100, 116, 139, 0.25) inset;
    position: absolute;
    left: 4px;
    bottom: 0;
    z-index: 3;
}

.phone-notch {
    width: 68px;
    height: 16px;
    background: #CBD5E1;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    margin-top: -4px;
}

.phone-screen {
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    margin-top: -12px;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 6px;
}

.phone-time {
    font-size: 0.688rem;
    font-weight: 700;
    color: #0F172A;
}

.phone-status-icons {
    display: flex;
    gap: 4px;
    color: #334155;
}

/* Video kayıt alanı */
.phone-video-area {
    background: linear-gradient(135deg, #ECFEFF 0%, #E2E8F0 100%);
    margin: 0 8px;
    border-radius: 10px;
    height: 92px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-video-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(15, 23, 42, 0.03) 2px,
            rgba(15, 23, 42, 0.03) 4px);
    pointer-events: none;
}

.phone-rec-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(220, 38, 38, 0.9);
    color: #FFFFFF;
    font-size: 0.563rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.rec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    animation: rec-pulse 1s ease-in-out infinite;
}

@keyframes rec-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.phone-video-timer {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.7);
    font-variant-numeric: tabular-nums;
}

.phone-video-placeholder {
    opacity: 0.7;
}

/* Hissedar listesi */
.phone-shareholders {
    padding: 9px 10px 12px;
}

.phone-section-title {
    font-size: 0.563rem;
    font-weight: 700;
    color: #0F766E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 0 4px;
}

.phone-shareholder-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    margin-bottom: 2px;
    font-size: 0.688rem;
    color: #94A3B8;
    transition: all var(--transition-fast);
}

.phone-shareholder-item.done {
    color: #64748B;
}

.phone-shareholder-item.active {
    background: rgba(15, 118, 110, 0.1);
    color: #0F766E;
    font-weight: 600;
}

.phone-shareholder-item.pending {
    color: #94A3B8;
}

.shareholder-radio {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid currentColor;
    flex-shrink: 0;
}

.phone-shareholder-item.active .shareholder-radio {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.phone-home-bar {
    width: 60px;
    height: 4px;
    background: rgba(100, 116, 139, 0.35);
    border-radius: 2px;
    margin: 8px auto;
}

.shareholder-ghost {
    display: block;
    height: 8px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #E2E8F0 0%, #F8FAFC 50%, #E2E8F0 100%);
    background-size: 180% 100%;
    animation: ghost-shimmer 1.8s ease-in-out infinite;
}

.shareholder-ghost.w-85 {
    width: 85%;
}

.shareholder-ghost.w-80 {
    width: 80%;
}

.shareholder-ghost.w-75 {
    width: 75%;
}

.shareholder-ghost.w-70 {
    width: 70%;
}

.shareholder-ghost.w-65 {
    width: 65%;
}

.shareholder-ghost.w-60 {
    width: 60%;
}

.shareholder-ghost.w-55 {
    width: 55%;
}

@keyframes ghost-shimmer {

    0%,
    100% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }
}

/* ── Flow Arrows SVG ── */
.flow-arrows {
    width: 96px;
    height: 300px;
    position: absolute;
    left: 198px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* ── Dashboard Wrapper ── */
.dashboard-mockup-wrapper {
    width: 69%;
    margin-left: auto;
    position: relative;
    top: -22px;
    right: 0;
    z-index: 1;
}

.hero-mockup {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 28px;
    border: 1px solid var(--color-border);
    position: relative;
}

.hero-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

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

.mockup-dot.red {
    background: #EF4444;
}

.mockup-dot.yellow {
    background: #F59E0B;
}

.mockup-dot.green {
    background: #22C55E;
}

.hero-mockup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mockup-stat-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--color-border);
}

.mockup-stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-stat-card .stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.mockup-stat-card .stat-bar {
    margin-top: 12px;
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.mockup-stat-card .stat-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.mockup-progress-card {
    grid-column: 1 / -1;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--color-border);
}

.mockup-progress-card .progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mockup-progress-card .progress-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-progress-card .progress-percent {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.mockup-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-row-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-row-icon.green {
    background: #D1FAE5;
    color: #059669;
}

.mockup-row-icon.blue {
    background: #DBEAFE;
    color: #2563EB;
}

.mockup-row-icon.amber {
    background: #FEF3C7;
    color: #D97706;
}

.mockup-row-bar {
    flex: 1;
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.mockup-row-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.hero-mockup-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: #D1FAE5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}

.float-text .float-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.float-text .float-desc {
    font-size: 0.688rem;
    color: var(--color-text-secondary);
}

/* ============================================
   SECTION 3 — PROBLEM
   ============================================ */
.problems {
    padding: var(--section-padding);
}

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

.problem-card {
    background: var(--color-bg-white);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.04), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    border-color: rgba(226, 232, 240, 1);
}

/* Text Highlight Utility */
.text-gradient-danger,
.text-gradient-primary {
    position: relative;
    display: inline-block;
    color: var(--color-primary);
    font-weight: 900;
    padding-bottom: 2px;
}

.text-gradient-danger::after,
.text-gradient-primary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: var(--color-primary);
}

.problem-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.problem-pill {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: #F1F5F9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.4s ease;
}

.problem-card:hover .problem-pill {
    background: var(--color-bg-white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.problem-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-icon-box.box-danger {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, rgba(15, 118, 110, 0.04) 100%);
    color: #0F766E;
    border: 1px solid rgba(15, 118, 110, 0.24);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.1) inset;
}

.problem-icon-box.box-warning {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, rgba(15, 118, 110, 0.04) 100%);
    color: #0F766E;
    border: 1px solid rgba(15, 118, 110, 0.24);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.1) inset;
}

.problem-card:hover .problem-icon-box {
    transform: scale(1.1) translateY(-4px) rotate(-6deg);
}

.problem-card:hover .box-danger {
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18), 0 4px 12px rgba(15, 118, 110, 0.1) inset;
}

.problem-card:hover .box-warning {
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18), 0 4px 12px rgba(15, 118, 110, 0.1) inset;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.938rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   SECTION 4 — TIMELINE (OP FLOW)
   ============================================ */
.timeline-section {
    padding: var(--section-padding);
    background: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1220px;
    margin: 60px auto 0;
    padding: 12px 0 0;
}

.flow-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flow-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr) 78px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
}

.flow-card {
    background: var(--color-bg-white);
    padding: 26px 28px;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
    min-height: 182px;
}

.flow-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 18px 36px rgba(15, 118, 110, 0.12);
}

.flow-step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: var(--color-bg-white);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.95), 0 4px 10px rgba(20, 184, 166, 0.2);
}

.flow-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

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

.flow-h-connector {
    height: 0;
    border-top: 2px dashed rgba(15, 118, 110, 0.55);
    position: relative;
}

.flow-h-connector::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -7px;
    border-left: 10px solid #0F766E;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.row-reverse .flow-h-connector::after {
    right: auto;
    left: -2px;
    border-left: none;
    border-right: 10px solid #0F766E;
}

.flow-turn {
    width: 0;
    height: 64px;
    border-left: 2px dashed rgba(15, 118, 110, 0.55);
    position: relative;
}

.flow-turn::after {
    content: '';
    position: absolute;
    left: -6px;
    bottom: -2px;
    border-top: 10px solid #0F766E;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.flow-turn.right {
    margin-left: calc(100% - 170px);
}

.flow-turn.left {
    margin-left: 170px;
}

/* ============================================
   SECTION 5 — HOW IT WORKS
   ============================================ */
/* ============================================
   SECTION 5 — PLATFORM SHOWCASE (PREMIUM)
   ============================================ */
.platform-showcase {
    padding: var(--section-padding);
    background: radial-gradient(circle at 50% 100%, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.showcase-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.floating-mobile {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 220px;
    aspect-ratio: 9/19.5; /* Modern iPhone ratio */
    border-radius: 32px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    border: 8px solid #0f172a;
    z-index: 10;
    overflow: hidden;
    background: #000;
}

.floating-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(4deg); }
}

.showcase-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
}

.showcase-feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.showcase-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sf-icon {
    width: 52px;
    height: 52px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.showcase-feature-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 6px;
    color: var(--color-text-primary);
}

.showcase-feature-item p {
    font-size: 0.938rem;
    color: var(--color-text-secondary);
}

/* ============================================
   SECTION 6 — INTERACTIVE PROCESS MAP
   ============================================ */
.process-map {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.map-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
}

.map-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.step-icon-wrap {
    width: 84px;
    height: 84px;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.map-step:hover .step-icon-wrap {
    transform: scale(1.1);
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 15px 30px rgba(15, 118, 110, 0.3);
}

.step-num-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.813rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

.map-step h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.06rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.map-step p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 42px; /* Half of 84px icon height */
    left: 42px;
    right: 42px;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

.map-connector-svg {
    display: none;
}

.laptop-frame {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #0f172a;
    border-radius: 12px 12px 0 0;
    padding: 8px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(226, 232, 240, 0.1);
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -5%;
    width: 110%;
    height: 12px;
    background: #1e293b;
    border-radius: 0 0 120px 120px / 0 0 20px 20px;
    border-bottom: 4px solid #0f172a;
}

.laptop-screen {
    position: relative;
    background: #fff;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    width: 100%;
    height: 100%;
}

.laptop-screen img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: fill !important;
    display: block !important;
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .showcase-image-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .floating-mobile {
        position: relative;
        right: auto;
        bottom: auto;
        width: 180px;
        margin: 0 auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    .showcase-feature-item {
        text-align: left;
    }
    .map-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
        margin-top: 40px;
    }
    .map-connector-svg {
        display: none;
    }
    .map-step {
        width: 100%;
        max-width: 360px;
    }
}

.step-item:last-child .step-connector {
    display: none;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-text-white);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.step-number svg {
    width: 28px;
    height: 28px;
}

.step-item h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   SECTION 6 — STATS
   ============================================ */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

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

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value .accent {
    color: var(--color-accent-light);
}

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

.stats-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION 7 — WHY US
   ============================================ */
.why-us {
    padding: var(--section-padding);
    background: #F3F7F8;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-us-text h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-us-green {
    color: var(--color-primary);
}

.why-us-text .subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.why-us-highlight {
    background: #EAF1F3;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.why-us-highlight p {
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: 500;
    line-height: 1.7;
}

.why-us-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.value-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(15, 118, 110, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.value-card-icon svg {
    width: 22px;
    height: 22px;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   SECTION 8 — TARGET AUDIENCE
   ============================================ */
.audience {
    padding: var(--section-padding);
}

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

.audience-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 118, 110, 0.08);
    border-color: rgba(20, 184, 166, 0.4);
}

.audience-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.audience-icon svg {
    width: 32px;
    height: 32px;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
    background: rgba(15, 118, 110, 0.12);
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.audience-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   SECTION 9+10 — FAQ + CTA COMBINED
   ============================================ */
.faq-section {
    padding: var(--section-padding);
}

.contact-section {
    padding: var(--section-padding);
    padding-bottom: 64px; /* Space for merged footer */
    background: #fdfdfd; 
    position: relative;
    overflow: hidden;
}

.contact-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-wave-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 400px;
    bottom: 0;
}

.relative-z {
    position: relative;
    z-index: 5;
}

/* Wave Animation */
.parallax > use {
    animation: move-forever 50s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 15s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 20s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 25s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 40s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 48px;
}

.contact-form-container {
    max-width: var(--container-max);
    margin: 48px auto 0;
}

.contact-form-wrapper {
    position: relative;
    z-index: 2;
}

.form-trust-footer {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    font-size: 0.813rem;
    font-weight: 600;
}

.trust-badge svg {
    color: var(--color-primary);
    opacity: 0.7;
}

.contact-section::after {
    display: none;
}

.faq-cta-header {
    margin-bottom: 28px;
}

.faq-sub-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.faq-cta-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.faq-cta-header p {
    font-size: 0.938rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    background: var(--color-bg-white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary-dark);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-secondary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.cta-form {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.85);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.938rem;
    color: var(--color-text-primary);
    background: var(--color-white);
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
    outline: none;
}

.cta-form .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

/* ============================================
   SECTION 11 — FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F8FA 100%);
    padding: 64px 0 0;
    border-top: 1px solid #E2E8F0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #E2E8F0;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand .footer-logo svg,
.footer-brand .footer-logo-img {
    width: 96px;
    height: 96px;
    border-radius: 6px;
    object-fit: contain;
}

.footer-brand .footer-tagline {
    font-size: 0.938rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.938rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.938rem;
    color: var(--color-text-secondary);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: #EEF2F6;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: #0F766E;
    color: var(--color-text-white);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-bottom p {
    font-size: 0.813rem;
    color: var(--color-text-secondary);
}

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

.footer-bottom-links a {
    font-size: 0.813rem;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-secondary);
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.25s;
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(7) {
    transition-delay: 0.35s;
}

.stagger-children.visible>*:nth-child(8) {
    transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(9) {
    transition-delay: 0.45s;
}

.stagger-children.visible>*:nth-child(10) {
    transition-delay: 0.5s;
}

.stagger-children.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* counter animation */
@keyframes count-up {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading Spinner */
@keyframes animate-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin {
    animation: animate-spin 1s linear infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-devices-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        min-height: auto;
        padding-top: 0;
    }

    .dashboard-mockup-wrapper {
        width: 100%;
        margin-left: 0;
        top: 0;
        order: 1;
    }

    .flow-arrows {
        display: block;
        position: relative;
        left: auto;
        top: auto;
        width: 42px;
        height: 86px;
        margin: 2px 0;
        transform: rotate(90deg);
        order: 2;
    }

    .flow-arrows path:not(:first-of-type),
    .flow-arrows polygon:not(:first-of-type) {
        display: none;
    }

    .phone-mockup {
        display: block;
        position: relative;
        left: auto;
        bottom: auto;
        width: 188px;
        margin: 0 auto;
        order: 3;
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-visual {
        position: static;
    }

    .flow-row {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .flow-h-connector,
    .flow-turn {
        display: none;
    }

    .flow-card {
        min-height: 0;
        padding: 22px;
    }

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

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .navbar,
    .navbar.scrolled {
        padding: 12px 0;
    }

    .navbar-logo {
        gap: 16px;
        font-size: 1.4rem;
    }

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

    .navbar-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

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

    .page-up-btn {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }

    .navbar-nav .navbar-cta-mobile {
        display: inline-flex;
        color: var(--color-text-white);
    }

    .navbar-cta-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.125rem;
    }

    .hero-subtitle {
        font-size: 1.063rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

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

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

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

    .steps-container {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .step-item {
        max-width: 320px;
    }

    .step-connector {
        display: none;
    }

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

    .stat-value {
        font-size: 2.25rem;
    }

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

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

    .contact-layout {
        margin-top: 32px;
    }

    .faq-cta-header h2 {
        font-size: 1.75rem;
    }

    .cta-form {
        padding: 28px 20px;
    }

    .cta-form .form-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

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

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

    .section-header {
        margin-bottom: 40px;
    }
}
/* ========== NEW SECTIONS: MODULES & INTEGRATIONS ========== */

.modules-section {
    padding: var(--section-padding);
    overflow: hidden;
}

.module-block {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 120px;
}

.module-block:last-child {
    margin-bottom: 0;
}

.module-block.reverse {
    flex-direction: row-reverse;
}

.module-content {
    flex: 1;
}

.module-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.module-badge.green {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.module-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    line-height: 1.25;
}

.module-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.module-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 500;
}

.module-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.module-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Dashboard Mockup */
.glass-mockup {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    padding: 16px;
}

.glass-mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.glass-mockup-header .dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.glass-mockup-header .red { background: #ff5f56;}
.glass-mockup-header .yellow { background: #ffbd2e;}
.glass-mockup-header .green { background: #27c93f;}

.mockup-dashboard {
    display: flex;
    gap: 12px;
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
}
.mockup-sidebar {
    width: 64px;
    background: #E2E8F0;
    opacity: 0.5;
}
.mockup-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mockup-topbar {
    height: 24px;
    background: #CBD5E1;
    border-radius: 6px;
    opacity: 0.3;
}
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.mockup-card {
    height: 60px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.mockup-table {
    flex: 1;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}
.mockup-tr {
    height: 12px;
    background: #F1F5F9;
    border-radius: 4px;
}
.mockup-tr.header { background: #E2E8F0; width: 60%; }

/* Glass Phone Mockup */
.glass-phone-mockup {
    width: 240px;
    height: 480px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 4px solid #F8FAFC;
    border-radius: 40px;
    box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.2);
    position: relative;
    padding: 8px;
}
.p-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #F8FAFC;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}
.p-screen {
    background: linear-gradient(135deg, #1E293B, #0F172A);
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.p-header {
    height: 70px;
    background: rgba(255,255,255,0.05);
}
.p-camera-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.p-rec {
    position: absolute;
    top: 20px;
    left: 20px;
    color: red;
    font-weight: bold;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.p-rec::before {
    content:'';
    width:8px; height:8px;
    background:red;
    border-radius:50%;
    animation: pulse 1s infinite;
}
.p-btn-record {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #FFF;
    margin: 20px auto 30px;
    position: relative;
}
.p-btn-record::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #EF4444;
    border-radius: 50%;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.integrations-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.integration-col {
    flex: 1;
    text-align: center;
}

.integration-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}
.integration-icon svg {
    width: 32px; height: 32px;
}

.integration-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.integration-col p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.integration-separator {
    width: 1px;
    height: 100px;
    background: var(--color-border);
    margin-top: 20px;
}

@media (max-width: 992px) {
    .module-block, .module-block.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    .integrations-wrapper {
        flex-direction: column;
        gap: 48px;
    }
    .integration-separator {
        display: none;
    }
}
