/* ═══════════════════════════════════════════════
   KARINCA — Web Site
   Light, ferah, samimi — Supsis + Ikas hissi
   ═══════════════════════════════════════════════ */

:root {
    /* Renkler */
    --bg:           #FFFCF8;
    --bg-soft:      #FFF6EC;
    --bg-card:     #FFFFFF;
    --text:         #1A1A2E;
    --text-soft:    #5C5C7A;
    --text-mute:    #8B8BA7;
    --border:       #F0E8DC;
    --border-soft:  #F7F0E6;

    --primary:      #FF6B35;
    --primary-dark: #E85420;
    --primary-soft: #FFF1E8;
    --primary-glow: rgba(255, 107, 53, 0.18);

    --accent:       #FFB627;
    --accent-soft:  #FFF8E6;

    --success:      #22C55E;
    --success-soft: #E8FAEE;
    --info:         #3B82F6;
    --info-soft:    #E8F0FE;

    /* Gölgeler */
    --shadow-sm:    0 1px 3px rgba(26, 26, 46, 0.04), 0 1px 2px rgba(26, 26, 46, 0.03);
    --shadow:       0 4px 12px rgba(26, 26, 46, 0.06), 0 2px 4px rgba(26, 26, 46, 0.04);
    --shadow-lg:    0 12px 32px rgba(26, 26, 46, 0.08), 0 4px 8px rgba(26, 26, 46, 0.04);
    --shadow-xl:    0 24px 60px rgba(26, 26, 46, 0.12), 0 8px 16px rgba(26, 26, 46, 0.06);
    --shadow-glow:  0 8px 32px var(--primary-glow);

    /* Geometri */
    --radius-sm:    8px;
    --radius:       14px;
    --radius-lg:    20px;
    --radius-xl:    28px;

    /* Font */
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════ LAYOUT ═══════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: 820px; }

.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head .kicker {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}
.section-head .kicker-orange { background: var(--accent-soft); color: #B07900; }
.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-head p {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px var(--primary-glow);
}
.btn-outline {
    background: white;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
}
.btn-ghost:hover { color: var(--primary); }
.btn-link {
    background: transparent;
    color: var(--text);
    padding: 12px 4px;
}
.btn-link:hover { color: var(--primary); }
.btn-lg {
    padding: 16px 30px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}
.btn-block { width: 100%; }

/* ═══════════ NAV ═══════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 252, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.3px;
}
.nav-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-soft);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
}
.nav-burger span {
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 4px;
}

/* ═══════════ HERO ═══════════ */
.hero {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 39, 0.15), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05); }
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero h1 .hl {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 19px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-soft);
    font-size: 14px;
}
.avatars { display: flex; }
.avatars .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid white;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-left: -10px;
}
.avatars .av:first-child { margin-left: 0; }
.avatars .av:nth-child(2) { background: linear-gradient(135deg, #3B82F6, #06B6D4); }
.avatars .av:nth-child(3) { background: linear-gradient(135deg, #22C55E, #10B981); }
.avatars .av:nth-child(4) { background: var(--bg); color: var(--text); }

/* Hero Visual: Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone {
    width: 320px;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}
.phone-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #00A884, #008F73);
    color: white;
}
.phone-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.phone-name { font-weight: 700; font-size: 15px; }
.phone-status { font-size: 12px; opacity: 0.8; }
.phone-chat {
    padding: 20px 16px;
    background: #ECE5DD;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 0%, transparent 50%);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}
.msg-in {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 4px;
}
.msg-out {
    background: #DCF8C6;
    align-self: flex-end;
    border-top-right-radius: 4px;
}
.msg-img {
    margin-top: 6px;
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, #FFE4D6, #FFD6A5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.msg-success {
    background: #D4F4DD;
    border-left: 3px solid var(--success);
}

.float-card {
    position: absolute;
    background: white;
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-soft);
}
.float-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.float-card span {
    font-size: 12px;
    color: var(--text-mute);
}
.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.float-1 {
    top: 20px;
    left: -40px;
    animation: float 4s ease-in-out infinite;
}
.float-2 {
    bottom: 60px;
    right: -30px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ═══════════ LOGOS BAR ═══════════ */
.logos {
    padding: 40px 0 60px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: white;
}
.logos p {
    text-align: center;
    color: var(--text-mute);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}
.logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    align-items: center;
}
.logo-item {
    color: var(--text-mute);
    font-weight: 700;
    font-size: 18px;
    opacity: 0.65;
    transition: opacity 0.2s;
}
.logo-item:hover { opacity: 1; }

/* ═══════════ FEATURES (NELER YAPAR) ═══════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature {
    padding: 32px;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-soft);
}
.f-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.i-1 { background: #FFE4D6; }
.i-2 { background: #E8F0FE; }
.i-3 { background: #D4F4DD; }
.i-4 { background: #FEF3C7; }
.i-5 { background: #F3E8FF; }
.i-6 { background: #FFE4E6; }
.feature h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.feature p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* ═══════════ MAGIC (UNIQUE FEATURES) ═══════════ */
.magic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.magic:last-child { margin-bottom: 0; }
.magic-reverse .magic-text { order: 2; }
.magic-num {
    display: inline-block;
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.magic-text h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.magic-text p {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}
.check-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 1px;
}
.magic-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}
.magic-card-top, .magic-card-bottom {
    padding: 4px 0;
}
.magic-arrow {
    text-align: center;
    margin: 18px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding: 12px;
    background: var(--primary-soft);
    border-radius: var(--radius);
}
.magic-arrow .pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-grow 1.5s infinite;
}
@keyframes pulse-grow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}
.msg-bubble {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.5;
}
.msg-bubble.in {
    background: #F3F4F6;
    color: var(--text);
    border-top-left-radius: 4px;
}
.msg-bubble.out {
    background: #DCF8C6;
    color: var(--text);
    border-top-right-radius: 4px;
    margin-bottom: 12px;
}
.msg-bubble.small { font-size: 13px; padding: 12px 16px; }
.img-attach {
    margin-top: 10px;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #FFE4D6, #FFB627);
    border-radius: 8px;
}
.match-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--success-soft);
    border-radius: var(--radius);
    border: 1px solid #BBF0C8;
}
.match-img {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, white, #F5F5F5);
    border-radius: 10px;
    flex-shrink: 0;
}
.match-info { flex: 1; }
.match-info strong { display: block; font-size: 14px; }
.match-info span { font-size: 12px; color: var(--text-mute); }
.badge-green {
    background: var(--success);
    color: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 14px 0;
}
.color-chip {
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 8px;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.08);
}
.color-chip span {
    background: rgba(255,255,255,0.9);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.sim-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}
.sim-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.sim-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 8px;
}
.sim-img.i1 { background: linear-gradient(135deg, #FFE4D6, #FFB39C); }
.sim-img.i2 { background: linear-gradient(135deg, #E8F4FF, #A8C8FF); }
.sim-img.i3 { background: linear-gradient(135deg, #FFF4D6, #FFD93D); }
.sim-card strong { display: block; font-size: 12px; margin-bottom: 2px; }
.sim-card span { font-size: 11px; color: var(--text-mute); font-weight: 600; }

/* ═══════════ COMPARE ═══════════ */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}
.compare-col {
    padding: 36px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}
.compare-them { background: #FAFAFA; }
.compare-us {
    background: linear-gradient(180deg, white, #FFF9F4);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    position: relative;
}
.compare-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.compare-head span { font-size: 32px; }
.compare-head h4 { font-size: 22px; font-weight: 800; }
.badge-soft {
    margin-left: auto;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.compare-col ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-soft);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-col ul li:last-child { border-bottom: none; }
.compare-them ul li::before {
    content: '✕';
    width: 20px;
    height: 20px;
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.compare-us ul li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.compare-us ul li { color: var(--text); font-weight: 500; }

/* ═══════════ STEPS ═══════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.step {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    position: relative;
}
.step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow);
}
.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.step p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* ═══════════ STATS ═══════════ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #FF8456);
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
}

/* ═══════════ PRICING ═══════════ */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    background: white;
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.price-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
    position: relative;
}
.price-featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow);
}
.price-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-soft);
    margin-bottom: 12px;
}
.price-amount {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: -1px;
}
.price-amount .currency {
    font-size: 22px;
    font-weight: 700;
    vertical-align: top;
    margin-right: 2px;
}
.price-amount .period {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mute);
}
.price-desc {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-soft);
}
.price-features {
    flex: 1;
    margin-bottom: 28px;
}
.price-features li {
    padding: 10px 0;
    font-size: 14.5px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--success-soft);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.price-features li strong { color: var(--primary); font-weight: 700; }

/* ═══════════ FAQ ═══════════ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px 24px;
    transition: all 0.2s;
}
.faq-item:hover { border-color: var(--primary-soft); }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

/* ═══════════ CTA ═══════════ */
.cta {
    padding: 100px 0;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow), transparent 60%);
    filter: blur(80px);
    z-index: 0;
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.cta p {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    padding: 80px 0 30px;
    background: white;
    border-top: 1px solid var(--border-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand p {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 320px;
}
.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text);
}
.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-soft);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    color: var(--text-mute);
    font-size: 13.5px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta, .hero-trust { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .magic { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
    .magic-reverse .magic-text { order: unset; }
    .compare, .price-grid, .steps, .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .price-featured { transform: none; }
    .price-featured:hover { transform: translateY(-4px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { gap: 32px; }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .nav-burger { display: flex; }
    .nav-actions .btn-ghost { display: none; }
    .section { padding: 70px 0; }
    .section-head { margin-bottom: 44px; }
    .features-grid { grid-template-columns: 1fr; }
    .float-1, .float-2 { display: none; }
    .stats-grid { gap: 24px; }
    .stat-num { font-size: 38px; }
}
