/* =============================================
   SBS Tech — Sales Page
   Light Warm Theme | RTL Hebrew | Heebo
   Target: Non-technical blue-collar business owners
   ============================================= */

/* ── Variables ─────────────────────────────── */
:root {
    --bg:           #FAFAF7;
    --bg2:          #F2F1EC;
    --bg-card:      #FFFFFF;
    --accent:       #E87722;
    --accent-dark:  #C4611A;
    --accent-light: rgba(232,119,34,0.1);
    --wa:           #25D366;
    --wa-dark:      #1DA851;
    --text:         #1C1917;
    --text-muted:   #78716C;
    --text-dim:     #A8A29E;
    --border:       rgba(0,0,0,0.09);
    --border2:      rgba(0,0,0,0.15);
    --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
    --shadow:       0 4px 16px rgba(0,0,0,0.09);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.13);
    --nav-h:        64px;
    --banner-h:     44px;
    --radius:       12px;
    --radius-lg:    16px;
    --font:         'Heebo', sans-serif;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    padding-top: calc(var(--nav-h) + var(--banner-h));
}
body.no-banner {
    padding-top: var(--nav-h);
    --banner-h: 0px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Shared ─────────────────────────────────── */
.section-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ── Promo Banner ───────────────────────────── */
.promo-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--banner-h);
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
}
.promo-banner.hidden {
    height: 0;
    opacity: 0;
    pointer-events: none;
}
.promo-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.promo-text strong { font-weight: 900; }
.promo-close {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    padding: 6px 8px;
    flex-shrink: 0;
    transition: color 0.2s;
    line-height: 1;
}
.promo-close:hover { color: #fff; }

/* ── Navbar ─────────────────────────────────── */
.navbar {
    position: fixed;
    top: var(--banner-h);
    left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    transition: top 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}
.nav-inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    font-size: 1.3rem;
    font-weight: 900;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}
.logo-sbs { color: var(--accent); }
.logo-digital { color: var(--text); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
    color: var(--text);
    background: var(--bg);
}
.nav-cta {
    background: var(--wa) !important;
    color: #fff !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
    background: var(--wa-dark) !important;
    transform: translateY(-1px) !important;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--nav-h) + var(--banner-h));
    left: 0; right: 0;
    z-index: 99;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 16px;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-mobile-link:hover { color: var(--text); background: var(--bg); }
.nav-mobile-cta {
    margin-top: 8px;
    background: var(--wa);
    color: #fff !important;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
}
.nav-mobile-cta:hover { background: var(--wa-dark); }

/* ── Hero ───────────────────────────────────── */
.hero {
    background: linear-gradient(145deg, #180900 0%, #2a1100 45%, #1a0d00 100%);
    padding: 56px 24px 72px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
/* Animated mesh blob 1 — upper right */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -80px;
    left: auto;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232,119,34,0.22) 0%, transparent 60%);
    pointer-events: none;
    transform: none;
    animation: hero-blob-1 9s ease-in-out infinite;
    will-change: transform;
}
/* Animated mesh blob 2 — lower left */
.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -80px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(232,119,34,0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: hero-blob-2 13s ease-in-out infinite;
    will-change: transform;
}
@keyframes hero-blob-1 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(-80px, 60px) scale(1.1); }
    66%       { transform: translate(40px, -40px) scale(0.92); }
}
@keyframes hero-blob-2 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%       { transform: translate(100px, -80px) scale(1.18); }
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
}

/* Hero Split Layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
}

.hero-content {
    text-align: right;
}

/* Hero Visual — Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hero-slide-in 0.7s ease both;
}

@keyframes hero-slide-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.phone-mockup {
    width: 280px;
    height: 578px;
    background: #0a0a0a;
    border-radius: 50px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 0 1.5px #333,
        0 0 0 3px #0a0a0a,
        0 32px 72px rgba(0,0,0,0.55),
        0 8px 24px rgba(232,119,34,0.18);
    image-rendering: -webkit-optimize-contrast;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #0a0a0a;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 38px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* Guarantee Badge */
.guarantee-badge {
    position: absolute;
    top: -18px;
    left: -22px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    color: #fff;
    font-family: var(--font);
    font-weight: 900;
    font-size: 0.6rem;
    text-align: center;
    line-height: 1.3;
    box-shadow:
        0 6px 24px rgba(232,119,34,0.5),
        0 0 0 3px #fff,
        0 0 0 5px rgba(232,119,34,0.25);
    z-index: 3;
    animation: badge-pulse 3s ease-in-out infinite;
    padding: 8px;
}

.guarantee-badge i {
    font-size: 1rem;
    margin-bottom: 4px;
}

.guarantee-badge span {
    display: block;
    font-size: 0.58rem;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}

/* ── Mobile: disable heavy infinite hero animations ─────────
   The two blob ::before/::after radial gradients animate
   translate/scale every 9-13s. On mobile GPUs this caused the
   phone-mockup image to appear to shimmer/jump because the
   layers behind it repaint constantly. Decorative only — safe
   to drop on small screens. */
@media (max-width: 768px) {
    .hero::before,
    .hero::after { animation: none; }
}

/* ── Respect users who prefer reduced motion ───────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .guarantee-badge,
    .hero-visual { animation: none !important; }
}

/* Hero Guarantee Block */
.hero-guarantee {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    padding: 18px 20px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: 3px solid rgba(232,119,34,0.75);
    border-radius: 0 12px 12px 0;
}

.hero-guarantee-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.hero-guarantee-header > i {
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}
.hero-guarantee-header > strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
}

.hero-guarantee-text {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Outcome typewriter cycle — ✓ / ✕ */
.hero-guarantee-cycle {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 14px;
    min-height: 1.6rem;
}
.hgc-icon {
    font-size: 1.05rem;
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.3s;
}
.hgc-text {
    font-size: 0.96rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
}
.hgc-cursor {
    color: var(--accent);
    margin-right: 1px;
}

.hero-guarantee-pills {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.hero-guarantee-pills span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
}
.hero-guarantee-pills i {
    color: #22c55e;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Hero Hook Text */
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text);
}
.hero-accent {
    color: var(--accent);
    position: relative;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.6;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-flex;
}
.hero-cta:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.45);
}
.hero-cta i { font-size: 1.3rem; }


/* Promo text variants */
.promo-text--mob { display: none; }

/* ── Pain Points ────────────────────────────── */
.pain-section {
    padding: 80px 0;
    background: var(--bg2);
}

.pain-section .pain-title {
    color: var(--text);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.3;
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease,
                border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.pain-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-card:nth-child(2) { transition-delay: 0.15s; }
.pain-card:nth-child(3) { transition-delay: 0.3s; }

.pain-card:hover {
    border-color: rgba(232,119,34,0.35);
    box-shadow: 0 8px 32px rgba(232,119,34,0.1), var(--shadow);
}

.pain-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
    color: var(--accent);
}

.pain-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Mini Form ──────────────────────────────── */
.mini-form-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.mini-form-section::before {
    content: '';
    position: absolute;
    inset: 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.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mini-form-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.mini-form-text { flex: 1; }

.mini-form-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.mini-form-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.mini-form { flex-shrink: 0; }

.mini-form-fields {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.mini-form-fields input {
    padding: 13px 18px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    font-family: var(--font);
    font-size: 0.95rem;
    color: #fff;
    direction: rtl;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 180px;
}

.mini-form-fields input::placeholder { color: rgba(255,255,255,0.6); }
.mini-form-fields input:focus {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.22);
}
.mini-form-fields input.has-error { border-color: #FCA5A5; }

.mini-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #fff;
    color: var(--accent-dark);
    font-family: var(--font);
    font-weight: 900;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.mini-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.mini-form-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.mini-form-btn i { color: var(--wa); font-size: 1.1rem; }

.mini-form-status {
    display: block;
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    min-height: 1.2em;
}

/* ── 3 Promises ─────────────────────────────── */
.promises-section {
    padding: 80px 0;
    background: var(--bg);
}
.promises-section .section-title { text-align: center; margin-bottom: 36px; }
.promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.promise-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.promise-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: rgba(232,119,34,0.25);
}
.promise-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}
.promise-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}
.promise-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Showcase Section ───────────────────────── */
.showcase-section {
    padding: 80px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}
.showcase-section .section-title { text-align: center; }
.showcase-section .section-subtitle { text-align: center; }

/* Filter Tabs */
.filter-tabs-wrap {
    position: relative;
    margin-top: 24px;
    margin-bottom: 28px;
}
.filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-scroll-hint { display: none; }
.filter-tab {
    padding: 9px 20px;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border2);
    cursor: pointer;
    transition: all 0.2s;
}
.filter-tab:hover {
    color: var(--text);
    border-color: rgba(232,119,34,0.3);
    background: var(--accent-light);
}
.filter-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(232,119,34,0.28);
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.results-count {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 18px;
}

/* Gallery Header (title + toggle button) */
.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
    /* Sticky — stays visible while scrolling through gallery cards */
    position: sticky;
    top: calc(var(--nav-h) + var(--banner-h));
    z-index: 50;
    background: var(--bg2);
    /* Bleed to full section width via negative margin + matching padding */
    margin-left: -24px;
    margin-right: -24px;
    padding: 14px 24px 12px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}
body.no-banner .gallery-header {
    top: var(--nav-h);
}
.gallery-header .section-title { margin-bottom: 4px; }
.gallery-header .section-subtitle { margin-bottom: 0; font-size: 0.9rem; }

/* Toggle button — solid orange when open, outline when closed */
.gallery-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 11px 22px;
    background: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(232,119,34,0.28);
}
.gallery-toggle-btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 5px 18px rgba(232,119,34,0.4);
}
/* Closed state — outline style */
.gallery-toggle-btn[aria-expanded="false"] {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: none;
}
.gallery-toggle-btn[aria-expanded="false"]:hover {
    background: var(--accent-light);
    box-shadow: none;
}
.gallery-toggle-btn i {
    font-size: 0.82rem;
    transition: transform 0.35s ease;
}
.gallery-toggle-btn[aria-expanded="false"] i {
    transform: rotate(180deg);
}

/* Collapsible gallery body */
.gallery-collapsible {
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* No results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
}
.no-results i { font-size: 2rem; color: var(--text-dim); display: block; margin-bottom: 12px; }
.no-results h3 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 6px; }
.no-results p { font-size: 0.88rem; color: var(--text-dim); }

/* ── Project Card ───────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(232,119,34,0.25);
}
.card.hidden { display: none; }

/* Hover-scroll image */
.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--bg2);
    flex-shrink: 0;
}
.card-img-wrapper img {
    width: 100%;
    display: block;
    transform: translateY(0);
    transition: transform 5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    object-position: top center;
}
.card:hover .card-img-wrapper img {
    transform: translateY(calc(-100% + 220px));
}

/* Live demo badge */
.card-live-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.72);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.card-live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: live-blink 1.6s ease-in-out infinite;
}
@keyframes live-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* Hover click overlay */
.card-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.card:hover .card-hover-overlay { opacity: 1; }
.card-hover-overlay span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transform: translateY(6px);
    transition: transform 0.25s ease;
}
.card:hover .card-hover-overlay span { transform: translateY(0); }
.card-hover-overlay i { color: var(--accent); font-size: 0.9rem; }

/* Placeholder overlay */
.card-placeholder-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250,250,247,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    backdrop-filter: blur(2px);
}
.card-placeholder-overlay span {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    background: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border2);
}

/* Card body */
.card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.card-profession {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 100px;
    width: fit-content;
}
.card-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
}
.card-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}
.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-top: 4px;
    padding: 9px 18px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}
.card-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.card-btn--disabled {
    background: var(--bg2);
    color: var(--text-dim);
    cursor: not-allowed;
    pointer-events: none;
}

/* Card actions row (landing + website buttons) */
.card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.card-actions .card-btn { margin-top: 0; }

.card-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 8px;
    border: 1.5px solid var(--accent);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    text-decoration: none;
}
.card-btn-alt:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

/* ── Pricing Section ─────────────────────────── */
.pricing-section {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.pricing-section .section-title { text-align: center; }
.pricing-section .section-subtitle { text-align: center; }
.pricing-section { text-align: center; }
.pricing-grid { text-align: right; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.price-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent), var(--shadow);
    transform: translateY(-8px);
    background: #fff;
}
.price-card--featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg);
}

.price-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-tier {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
}
.price-card--featured .price-tier { color: var(--accent); }

.price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.price-amount-wrap { margin-bottom: 0; }

.price-strike {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-decoration: line-through;
    display: block;
    margin-bottom: 3px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-bottom: 4px;
}
.price-main--from { align-items: baseline; gap: 4px; }
.price-from-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}
.price-currency {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text);
}
.price-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}
.price-card--featured .price-currency,
.price-card--featured .price-num { color: var(--accent); }
.price-card--featured .price-num {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

/* Marketing features highlight */
.price-feature--highlight {
    background: var(--accent-light);
    border-radius: 6px;
    padding: 5px 8px;
    margin: 2px 0;
    flex-wrap: nowrap;
    align-items: center;
}
.price-feature--highlight > i:first-child { color: var(--accent) !important; }

.price-save {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #16A34A;
    margin-bottom: 0;
}
.price-save--neutral { color: var(--text-muted); }

.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.price-features li i {
    color: var(--wa);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.price-features strong { color: var(--text); }

.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    background: var(--bg2);
    color: var(--text);
    border: 1px solid var(--border2);
}
.price-btn:hover {
    background: var(--bg);
    box-shadow: var(--shadow-sm);
}

.price-btn--featured {
    background: var(--wa);
    color: #fff;
    border-color: var(--wa);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.price-btn--featured:hover {
    background: var(--wa-dark);
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transform: translateY(-1px);
    color: #fff;
}

.price-disclaimer {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 10px;
    text-align: center;
    line-height: 1.5;
}

/* ── Feature Info Tooltip ────────────────────── */
.feat-tip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 5px; /* RTL: pushes icon away from text */
    cursor: help;
    color: var(--text-dim);
    font-size: 0.78rem;
    flex-shrink: 0;
    outline: none;
}
.feat-tip i { transition: color 0.2s; }
.feat-tip:hover i,
.feat-tip:focus i { color: var(--accent); }

.feat-tip__bubble {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: var(--text);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.6;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    transform: translateY(4px);
    z-index: 20;
    white-space: normal;
    text-align: right;
}
/* Arrow */
.feat-tip__bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    border: 6px solid transparent;
    border-top-color: var(--text);
}
.feat-tip:hover .feat-tip__bubble,
.feat-tip:focus .feat-tip__bubble,
.feat-tip:focus-within .feat-tip__bubble {
    opacity: 1;
    transform: translateY(0);
}

/* ── Pricing Terms Box ───────────────────────── */
.pricing-terms-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 36px;
    background: rgba(232,119,34,0.07);
    border: 1px solid rgba(232,119,34,0.2);
    border-right: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 20px 20px 24px;
}
.pricing-terms-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(232,119,34,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    margin-top: 1px;
}
.pricing-terms-title {
    font-size: 0.92rem;
    font-weight: 900;
    color: var(--accent-dark);
    margin-bottom: 10px;
}
.pricing-terms-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pricing-terms-list li {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.pricing-terms-list li strong {
    color: var(--accent-dark);
    font-weight: 800;
}

/* ── Process Section ─────────────────────────── */
.process-section {
    padding: 80px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}
.process-section .section-title { text-align: center; }
.process-section .section-subtitle { text-align: center; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 8px;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 31px;
    right: calc(100% / 6);
    left: calc(100% / 6);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232,119,34,0.3), transparent);
    z-index: 0;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(232,119,34,0.3);
}
.process-step h3 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── FAQ Section ─────────────────────────────── */
.faq-section {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.faq-section .section-title { text-align: center; margin-bottom: 36px; }

#faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open {
    border-color: rgba(232,119,34,0.3);
    box-shadow: 0 0 0 2px rgba(232,119,34,0.1), var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-family: var(--font);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
    text-align: right;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }

.faq-question i {
    color: var(--text-dim);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

/* ── Footer ──────────────────────────────────── */
.footer { background: var(--text); color: #fff; }

/* Big CTA Band */
.footer-cta-band {
    padding: 64px 0 52px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.footer-cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
}
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 18px 40px;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-wa-btn:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.footer-wa-btn i { font-size: 1.4rem; }
.footer-cta-or {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* Footer body */
.footer-body { padding: 48px 0 0; }

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    display: block;
}
.footer-logo .logo-sbs { color: var(--accent); }
.footer-logo .logo-digital { color: #fff; }

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    text-decoration: none;
}
.footer-contacts a:hover { color: #fff; }
.footer-contacts i { color: var(--accent); width: 16px; }

/* Footer Form */
.footer-form-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}
.footer-form-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.footer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-field input,
.footer-form select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: #fff;
    direction: rtl;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus,
.footer-form select:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}
.form-field input.has-error { border-color: #F87171; }
.footer-form select {
    margin-bottom: 10px;
    display: block;
    width: 100%;
    color: rgba(255,255,255,0.7);
}
.footer-form select option { background: var(--text); color: #fff; }

.field-error {
    font-size: 0.75rem;
    color: #FCA5A5;
}

.footer-form-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}
.footer-form-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.footer-form-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

#footer-secret-dot {
    display: inline-block;
    padding: 8px 6px;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.55;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    transition: opacity 0.2s, transform 0.2s;
}

#footer-secret-dot.is-active {
    opacity: 1;
    transform: scale(1.2);
}

/* ── Toast ───────────────────────────────────── */
#toast-message {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--text);
    color: #fff;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    z-index: 1000;
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    pointer-events: none;
}
#toast-message.show {
    transform: translateX(-50%) translateY(0);
}

/* ── WhatsApp Float ──────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 500;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.wa-float::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.3);
    animation: wa-ring 2.5s ease-out infinite;
}
@keyframes wa-ring {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ── Modal ───────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.96);
    transition: transform 0.3s;
    scrollbar-width: thin;
}
.modal-overlay.open .modal-content { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg2);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
    border: none;
}
.modal-close:hover { background: var(--accent-light); color: var(--accent); }

.modal-image {
    width: 100%;
    display: block;
    max-height: 260px;
    object-fit: cover;
    object-position: top;
}
.modal-body { padding: 24px; }
.modal-profession {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}
.modal-body h2 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}
.modal-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.modal-placeholder {
    font-size: 0.88rem;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 8px;
}
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-actions .card-btn,
.modal-actions .card-btn-alt {
    flex: 1;
    justify-content: center;
    align-self: auto;
    font-size: 0.9rem;
    padding: 11px 16px;
    margin-top: 0;
    min-width: 120px;
}

/* ── Hero Share Link ────────────────────────── */
.hero-share-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-share-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}
.hero-share-link i { font-size: 0.82rem; }

/* ── Share Strip ─────────────────────────────── */
.share-strip {
    background: var(--text);
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.share-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.share-strip-text {
    display: flex;
    align-items: center;
    gap: 14px;
}
.share-strip-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}
.share-strip-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}
.share-strip-sub {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 12px 26px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232,119,34,0.35);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.share-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,119,34,0.45);
}
.share-btn i { font-size: 0.9rem; }

/* ── Floating Share Button ───────────────────── */
.share-float {
    position: fixed;
    bottom: 104px; /* above WA float: 28 + 58 + 18 */
    left: 28px;
    z-index: 500;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--text);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 3px 14px rgba(0,0,0,0.22);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.share-float:hover {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(232,119,34,0.4);
}
/* Tooltip label on hover */
.share-float__tooltip {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--text);
    color: #fff;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.share-float__tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--text);
}
.share-float:hover .share-float__tooltip { opacity: 1; }

/* ── Countdown Timer ────────────────────────── */
/* ── Hero Spots Remaining Widget ─────────────── */
.hero-spots {
    margin: 28px auto 0;
    max-width: 480px;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 18px 22px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-spots-top {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}
.spots-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    animation: spots-pulse 1.6s ease-in-out infinite;
}
@keyframes spots-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.7); }
    50%       { box-shadow: 0 0 0 5px rgba(239,68,68,0); }
}
.hero-spots-text {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.45;
}
.hero-spots-text strong { color: rgba(255,255,255,0.88); font-weight: 800; }
.hero-spots-bar-wrap {
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    height: 6px;
    margin-bottom: 13px;
    overflow: hidden;
    direction: ltr;
}
.hero-spots-bar {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent), #FF9A3C);
    width: 0%;
    transition: width 1.1s cubic-bezier(0.4,0,0.2,1);
}
.hero-spots-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
    text-align: center;
}
.hero-spots-label strong { color: #f87171; font-weight: 900; }
.spots-hurry { color: var(--accent); font-weight: 800; }

/* Mobile/desktop text variants */
.spots-text--mob  { display: none; }
.spots-label--mob { display: none; }

/* ── Trust Numbers Strip ────────────────────── */
.trust-strip {
    background: var(--text);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.trust-item {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
}
.trust-num {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.trust-plus {
    font-size: 0.65em;
    font-weight: 900;
    color: var(--accent);
    vertical-align: super;
    margin-right: 1px;
}
.trust-lbl {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    max-width: 120px;
    margin: 0 auto;
}
.trust-divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ── Spots Badge ────────────────────────────── */
.spots-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFF3F3, #FFE4E4);
    border: 1.5px solid rgba(239,68,68,0.35);
    color: #B91C1C;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    margin: 0 auto 36px;
    animation: spots-pulse 2s ease-in-out infinite;
}
.spots-badge i { color: #EF4444; font-size: 0.9rem; }
.spots-badge strong { color: #DC2626; font-weight: 900; }
@keyframes spots-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.15); }
    50%       { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* ── Sticky Mobile CTA Bar ──────────────────── */
.mobile-cta-bar {
    display: none; /* shown only on mobile via media query */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: var(--wa);
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}
.mobile-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    line-height: 1.2;
}
.mobile-cta-link i { font-size: 1.4rem; flex-shrink: 0; }
.mobile-cta-text { flex: 1; text-align: center; }
.mobile-cta-price {
    background: rgba(255,255,255,0.22);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────── */
/* ── Tablet (960px) ──────────────────────────── */
@media (max-width: 960px) {
    .trust-grid { gap: 0; }
    .promises-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .price-card--featured { transform: none; }
    .price-card--featured:hover { transform: translateY(-4px); }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }

    /* Hero split → single column */
    .hero-split { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .hero-content { text-align: center; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 210px; height: 427px; border-radius: 46px; }
    .guarantee-badge { top: -14px; left: -14px; width: 82px; height: 82px; font-size: 0.54rem; }

    /* Hero guarantee — center on tablet */
    .hero-guarantee {
        text-align: right;
        border-radius: 12px;
        border-right: none;
        border-top: 3px solid rgba(232,119,34,0.75);
    }
    .hero-guarantee-pills { justify-content: center; }
    .hero-spots { max-width: 100%; }
    .hero-cta { width: 100%; justify-content: center; }

    /* Pain grid — 2 columns on tablet */
    .pain-grid { grid-template-columns: 1fr 1fr; }

    /* Mini form — stack vertically */
    .mini-form-inner { flex-direction: column; text-align: center; gap: 24px; }
    .mini-form-text { text-align: center; }

    /* Float cards — hide on tablet/mobile. !important because the
       base rule .hero-float-card { display: flex } appears later in
       the file and would otherwise override this. */
    .hero-float-card { display: none !important; }
}

/* ── Mobile (768px) ──────────────────────────── */
@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { padding: 36px 0 56px; }
    .hero-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
    .hero-tagline { font-size: 1.05rem; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-cta { font-size: 1rem; padding: 15px 28px; width: 100%; justify-content: center; }
    .hero-guarantee { padding: 14px 16px; border-radius: 12px; border-right: none; border-top: 3px solid rgba(232,119,34,0.75); }
    .hero-guarantee-header > strong { font-size: 0.85rem; }
    .hero-guarantee-text { font-size: 0.84rem; margin-bottom: 10px; }
    .hero-guarantee-cycle { min-height: 1.4rem; }
    .hgc-text { font-size: 0.88rem; }
    .hero-guarantee-pills { justify-content: center; gap: 12px; flex-wrap: wrap; }
    /* Spots widget — mobile redesign */
    .hero-spots {
        margin-top: 20px;
        padding: 14px 16px 15px;
        border-radius: 14px;
        text-align: center;
    }
    .hero-spots-top {
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
    }
    .spots-text--desk  { display: none; }
    .spots-text--mob   { display: inline; }
    .hero-spots-text   { font-size: 0.82rem; }
    .hero-spots-bar-wrap { height: 8px; margin-bottom: 12px; }
    .hero-spots-label  { font-size: 0; }
    .spots-label--desk { display: none; }
    .spots-label--mob  { display: inline; font-size: 0.9rem; font-weight: 800; }
    .phone-mockup { width: 190px; height: 383px; border-radius: 44px; }
    .phone-mockup img { border-radius: 32px; }

    /* Sections */
    .promises-section, .pain-section { padding: 56px 0; }
    .promises-grid { grid-template-columns: 1fr; gap: 16px; }
    .promise-card { padding: 28px 24px; }
    .promise-icon-wrap { width: 62px; height: 62px; border-radius: 18px; font-size: 1.45rem; margin-bottom: 16px; }
    .promise-card h3 { font-size: 1rem; }

    .pain-grid { grid-template-columns: 1fr; }
    .pain-card { padding: 28px 24px; }
    .pain-card-num { font-size: 4.5rem; }
    .pain-icon { font-size: 1.9rem; }
    .pain-card h3 { font-size: 1rem; }

    /* Gallery */
    .gallery { grid-template-columns: 1fr; }

    /* Process */
    .process-steps { grid-template-columns: 1fr; gap: 24px; }
    .process-steps::before { display: none; }

    /* Trust strip */
    .trust-grid { flex-wrap: wrap; }
    .trust-item { flex: 0 0 50%; }
    .trust-divider { display: none; }
    .trust-strip { padding: 36px 0; }

    /* Footer form */
    .footer-form-row { grid-template-columns: 1fr; }

    /* Mini form */
    .mini-form-fields { flex-direction: column; }
    .mini-form-fields input { min-width: 0; font-size: 16px; }
    .mini-form-btn { width: 100%; justify-content: center; }
    .mini-form-section { padding: 48px 0; }

    /* Prevent iOS Safari auto-zoom on form fields (requires ≥16px) */
    .form-field input,
    .footer-form select { font-size: 16px; }

    /* Sticky mobile CTA bar */
    .mobile-cta-bar { display: block; }
    .wa-float { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
    .share-float { bottom: calc(136px + env(safe-area-inset-bottom, 0px)); }
    footer { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Small mobile (480px) ────────────────────── */
@media (max-width: 480px) {
    .section-container { padding: 0 16px; }

    /* Hero */
    .hero { padding: 28px 0 48px; }
    .hero-title { font-size: 1.85rem; line-height: 1.15; }
    .hero-tagline { font-size: 1rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-cta { font-size: 0.95rem; padding: 14px 20px; }
    .hero-guarantee-pills { gap: 10px; }
    .hero-guarantee-pills span { font-size: 0.78rem; }
    .hero-spots { padding: 12px 14px 13px; }
    .spots-label--mob { font-size: 0.86rem; }

    /* Phone */
    .phone-mockup { width: 170px; height: 340px; border-radius: 40px; }
    .phone-mockup img { border-radius: 28px; }
    .guarantee-badge { width: 72px; height: 72px; font-size: 0.5rem; top: -10px; left: -10px; }
    .guarantee-badge i { font-size: 0.85rem; margin-bottom: 2px; }

    /* Promises */
    .promise-card { padding: 24px 20px; }
    .promise-icon-wrap { width: 56px; height: 56px; border-radius: 16px; font-size: 1.3rem; }

    /* Pain */
    .pain-card { padding: 24px 20px; }

    /* Spots badge */
    .spots-badge { font-size: 0.82rem; padding: 8px 16px; text-align: center; }

    /* Pricing */
    .price-card--featured .price-num { font-size: 3rem; }

    /* Pricing terms */
    .pricing-terms-box { flex-direction: column; gap: 10px; padding: 16px; }
    .pricing-terms-icon { margin-top: 0; }
    .pricing-terms-list li { font-size: 0.82rem; }

    /* Gallery header */
    .gallery-header .section-title { font-size: 1.35rem; }
    .gallery-header .section-subtitle { display: none; }

    /* Share strip */
    .share-strip-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .share-btn { width: 100%; justify-content: center; }

    /* Filter tabs */
    .filter-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; padding-left: 32px; scrollbar-width: none; -ms-overflow-style: none; }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .filter-tab { flex-shrink: 0; }
    /* Scroll hint — chevron at the left edge indicating "more categories that way" */
    .filter-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        bottom: 6px;
        left: 0;
        width: 32px;
        background: linear-gradient(to right, var(--bg2) 30%, rgba(255,255,255,0));
        color: var(--accent);
        font-size: 0.85rem;
        pointer-events: none;
        animation: filter-hint-bounce 1.6s ease-in-out infinite;
    }
    .filter-tabs-wrap.scrolled-end .filter-scroll-hint { opacity: 0; transition: opacity 0.25s; }
    @keyframes filter-hint-bounce {
        0%, 100% { transform: translateX(0); }
        50%      { transform: translateX(-4px); }
    }

    /* Tooltip not functional on touch */
    .feat-tip { display: none; }

    /* Footer */
    .footer-wa-btn { font-size: 1rem; padding: 15px 24px; }
}

/* Promo banner — short text on mobile */
@media (max-width: 600px) {
    .promo-text--desk { display: none; }
    .promo-text--mob  { display: inline; }
    .gallery-toggle-btn { padding: 9px 16px; font-size: 0.84rem; }
    .gallery-header { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
    .share-float__tooltip { display: none; }
    .hero-share-link { font-size: 0.82rem; padding: 8px 16px; }
}

/* ═══════════════════════════════════════════════
   שלב ו — שדרוג ויזואלי דרמטי
   ═══════════════════════════════════════════════ */

/* ── Hero dark background — text overrides ───── */
.hero .hero-title { color: #fff; }
.hero .hero-sub   { color: rgba(255,255,255,0.65); }

/* eyebrow + hook removed from hero */

/* guarantee + trust merged into hero-guarantee — old overrides removed */

/* ── Hero Tagline (moved from h1) ─────────────── */
.hero-tagline {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    margin-top: 6px;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* ── Typewriter cursor ────────────────────────── */
.typewriter-cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 300;
    animation: tw-blink 0.75s step-end infinite;
    margin-right: 1px;
}
@keyframes tw-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Hero Floating Preview Cards ─────────────── */
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 11px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 4;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.3),
        0 1px 0 rgba(255,255,255,0.1) inset;
    min-width: 145px;
    direction: rtl;
}
/* Top card */
.hero-float-card--a {
    top: 18px;
    right: 0;
    animation: float-a 4.5s ease-in-out infinite;
}
/* Middle-left card */
.hero-float-card--b {
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    animation: float-b 5.5s ease-in-out infinite;
    animation-delay: 1.2s;
    min-width: 130px;
}
/* Bottom card */
.hero-float-card--c {
    bottom: 55px;
    right: 0;
    animation: float-c 4s ease-in-out infinite;
    animation-delay: 0.8s;
}
@keyframes float-a {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes float-b {
    0%, 100% { transform: translateY(-50%); }
    50%       { transform: translateY(calc(-50% - 8px)); }
}
@keyframes float-c {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

.hfc-top {
    display: flex;
    align-items: center;
    gap: 7px;
}
.hfc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: hfc-pulse 2s ease-in-out infinite;
}
.hfc-dot--green  { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.7); }
.hfc-dot--orange { background: var(--accent); box-shadow: 0 0 8px rgba(232,119,34,0.7); }
@keyframes hfc-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
.hfc-name   { font-size: 0.78rem; font-weight: 800; color: rgba(255,255,255,0.9); }
.hfc-stat   { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.hfc-stars  { font-size: 0.75rem; line-height: 1; }
.hfc-rating { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.7); }

/* ── Gallery Cards — 3D Tilt + Glow ──────────── */
.card { position: relative; }

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(
        200px circle at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(232,119,34,0.16),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}
.card:hover::after { opacity: 1; }

/* Tooltip bubble — prevent overflow on medium screens */
@media (max-width: 820px) {
    .feat-tip__bubble {
        right: auto;
        left: 0;
        width: min(200px, 55vw);
    }
    .feat-tip__bubble::after {
        right: auto;
        left: 10px;
    }
}

/* ═══════════════════════════════════════════════
   PREMIUM REDESIGN — גרסה מקצועית אולטימטיבית
   ═══════════════════════════════════════════════ */

/* ── Hero — Dot Grid Texture ─────────────────── */
.hero-inner::before {
    content: '';
    position: absolute;
    inset: -60px;
    background-image: radial-gradient(rgba(255,255,255,0.045) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Typewriter line — orange glow */
.hero .hero-accent {
    text-shadow: 0 0 35px rgba(232,119,34,0.65), 0 0 70px rgba(232,119,34,0.25);
}

/* Phone mockup — enhanced glow */
.phone-mockup {
    box-shadow:
        0 0 0 1.5px #333,
        0 0 0 3px #0a0a0a,
        0 40px 90px rgba(0,0,0,0.6),
        0 12px 40px rgba(232,119,34,0.25),
        0 0 60px rgba(232,119,34,0.08);
}

/* ── Navbar — Glassmorphism on scroll ─────────── */
.navbar.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(0,0,0,0.07);
    box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

/* ── Wave Dividers ────────────────────────────── */
.wave-divider {
    overflow: hidden;
    line-height: 0;
    display: block;
    margin-bottom: -1px;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}
.wave-divider--dark-to-light  { background: var(--text); }
.wave-divider--dark-to-bg2    { background: var(--text); }
.wave-divider--accent-to-light {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

/* ── Pain Section — Upgraded ──────────────────── */
.pain-section {
    padding: 80px 0;
    border-top: none;
}
.pain-card {
    position: relative;
    overflow: hidden;
    padding: 40px 32px 36px;
}
.pain-card-num {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0,0,0,0.045);
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
}
.pain-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(232,119,34,0.12);
    margin: 0 auto 20px;
    color: var(--accent);
    transition: background 0.3s, transform 0.3s;
}
.pain-card:hover .pain-icon {
    background: rgba(232,119,34,0.2);
    transform: scale(1.05);
}
.pain-card h3 {
    font-size: 1.08rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.45;
}
.pain-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.78;
}
.pain-card:hover {
    border-color: rgba(232,119,34,0.5);
    background: rgba(232,119,34,0.07);
}

/* ── Section Title Decoration ─────────────────── */
.pain-section .section-title,
.promises-section .section-title,
.pricing-section .section-title,
.process-section .section-title {
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 16px;
}
.pain-section .section-title::after,
.promises-section .section-title::after,
.pricing-section .section-title::after,
.process-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #FF9A3C);
    border-radius: 3px;
}

/* ── Promise Cards — Gradient Icon Circles ────── */
.promise-icon-wrap {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.65rem;
    color: #fff;
    box-shadow:
        0 8px 24px rgba(232,119,34,0.35),
        0 2px 8px rgba(232,119,34,0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.promise-card:hover .promise-icon-wrap {
    transform: translateY(-6px) scale(1.07);
    box-shadow:
        0 18px 40px rgba(232,119,34,0.45),
        0 4px 12px rgba(232,119,34,0.25);
}
.promise-card {
    transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(232,119,34,0.15), var(--shadow);
    border-color: rgba(232,119,34,0.3);
}

/* ── Gallery Filter Tabs — Premium ───────────── */
.filter-tab.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 18px rgba(232,119,34,0.38);
}
.filter-tab:not(.active):hover {
    background: var(--accent-light);
    border-color: rgba(232,119,34,0.35);
    color: var(--accent);
}

/* Gallery card — image saturation on hover */
.card-img-wrapper img {
    filter: saturate(0.92);
    transition: transform 5s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
}
.card:hover .card-img-wrapper img {
    filter: saturate(1.12) brightness(1.03);
}

/* Gallery card bottom border accent on hover */
.card {
    border-bottom: 3px solid transparent;
    transition: box-shadow 0.3s, border-color 0.3s, border-bottom-color 0.3s;
}
.card:hover {
    border-bottom-color: var(--accent);
}

/* ── Pricing — Featured Card Premium Glow ─────── */
.price-card--featured {
    background: #fff;
    border-color: var(--accent);
    animation: featured-glow 3.5s ease-in-out infinite;
}
@keyframes featured-glow {
    0%, 100% {
        box-shadow: 0 0 0 2px var(--accent), 0 20px 60px rgba(232,119,34,0.2), var(--shadow);
    }
    50% {
        box-shadow: 0 0 0 3px var(--accent), 0 28px 72px rgba(232,119,34,0.38), var(--shadow-lg);
    }
}
.price-card--featured:hover {
    animation: none;
    box-shadow: 0 0 0 3px var(--accent), 0 32px 80px rgba(232,119,34,0.42), var(--shadow-lg);
}

/* Popular badge — gradient */
.price-popular-badge {
    background: linear-gradient(135deg, var(--accent), #FF9A3C);
    box-shadow: 0 4px 16px rgba(232,119,34,0.4);
}

/* ── FAQ — Premium Accordion ─────────────────── */
.faq-item {
    border-right: 3px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.faq-item:hover {
    transform: translateX(-2px);
}
.faq-item.open {
    border-right-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(232,119,34,0.08), var(--shadow-sm);
}
.faq-question {
    padding: 20px 24px;
}
.faq-item.open .faq-answer {
    padding: 0 24px 20px;
}

/* ── Process Step Icons ───────────────────────── */
.step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow:
        0 8px 24px rgba(232,119,34,0.4),
        0 0 0 4px rgba(232,119,34,0.1);
    font-size: 1.3rem;
    transition: transform 0.35s, box-shadow 0.35s;
}
.process-step:hover .step-number {
    transform: scale(1.08);
    box-shadow:
        0 12px 32px rgba(232,119,34,0.5),
        0 0 0 6px rgba(232,119,34,0.1);
}

/* ── Scroll Reveal ────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s cubic-bezier(0.2,0.8,0.2,1),
                transform 0.75s cubic-bezier(0.2,0.8,0.2,1);
}
[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered siblings */
[data-reveal]:nth-child(2) { transition-delay: 0.13s; }
[data-reveal]:nth-child(3) { transition-delay: 0.26s; }

/* ── Hero CTA Button — Gradient Glow ─────────── */
.hero-cta {
    background: linear-gradient(135deg, #25D366, #1DA851);
    box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(37,211,102,0.3);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.hero-cta:hover {
    background: linear-gradient(135deg, #1DA851, #158F42);
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(37,211,102,0.55), 0 4px 12px rgba(37,211,102,0.35);
    filter: brightness(1.05);
}

/* ── Footer WA Button ─────────────────────────── */
.footer-wa-btn {
    background: linear-gradient(135deg, #25D366, #1DA851);
    box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
.footer-wa-btn:hover {
    background: linear-gradient(135deg, #1DA851, #158F42);
    box-shadow: 0 14px 48px rgba(37,211,102,0.55);
    transform: translateY(-3px);
}

/* ── Trust Strip — Bigger Impact ─────────────── */
.trust-num {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.trust-plus {
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
}
.trust-lbl {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
}

/* ── Showcase Section Title ───────────────────── */
.showcase-section {
    padding-top: 64px;
}

/* ── Mini Form ─ pattern overlay upgrade ─────── */
.mini-form-section::before {
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
}

/* ── Chef's Special ───────────────────────────── */
.chefs-section {
    padding: 64px 0;
    background: var(--bg2);
}

.chefs-card {
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 52px 48px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.chefs-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.chefs-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.chefs-sub {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.chefs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.chefs-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .chefs-card { padding: 36px 24px; }
    .chefs-title { font-size: 1.35rem; }
    .chefs-btn { font-size: 0.9rem; padding: 14px 20px; }
}

/* ===========================
   Cookie Consent Banner
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: 'Heebo', system-ui, sans-serif;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-text {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
.cookie-banner-text a {
    color: #ffce4d;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}
.cookie-btn:active { transform: scale(0.97); }
.cookie-btn-accept {
    background: #25d366;
    color: #fff;
}
.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.cookie-btn-accept:hover,
.cookie-btn-reject:hover { opacity: 0.85; }

@media (max-width: 600px) {
    .cookie-banner { padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)); }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 8px; }
    /* base .cookie-banner-text has flex: 1 1 300px — in column-direction that
       300px basis turns into a 300px min-height. Reset to auto on mobile. */
    .cookie-banner-text { flex: 0 0 auto; font-size: 12.5px; line-height: 1.4; }
    .cookie-banner-actions { justify-content: stretch; gap: 8px; }
    .cookie-btn { padding: 8px 14px; font-size: 13px; flex: 1; }
}
