/* landing.css — CSS variables, reset, buttons, nav, hero, phone */

:root {
    --red: #c80e14;
    --bg: #0c0c0c;
    --card: #141414;
    --border: #222;
    --muted: #777;
    --r: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    background: var(--bg);
}

body {
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 90% 45% at 50% 0%,   rgba(190,20,42,0.70) 0%, transparent 65%),
        radial-gradient(ellipse 55% 30% at 92% 38%,  rgba(190,20,42,0.32) 0%, transparent 70%),
        radial-gradient(ellipse 60% 28% at 8%  60%,  rgba(190,20,42,0.28) 0%, transparent 70%),
        radial-gradient(ellipse 55% 30% at 60% 85%,  rgba(190,20,42,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 45% 25% at 20% 95%,  rgba(190,20,42,0.22) 0%, transparent 70%);
}

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

ul {
    list-style: none;
}

.accent {
    color: var(--red);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.82;
}

.btn--red {
    background: var(--red);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---- Nav ---- */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(12, 12, 12, 0.15);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav--scrolled::before {
    background: rgba(12, 12, 12, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
    text-decoration: none;
}

.nav__logo-icon-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.75));
}

.nav__logo-name-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: none;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.75));
}

.nav__logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
    line-height: 1;
    color: #fff;
}

.nav > .btn {
    flex-shrink: 0;
}

.nav .btn--red {
    box-shadow: 0 0 18px rgba(200, 14, 20, 0.55);
}

/* ---- Burger ---- */
.nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ---- Mobile Menu ---- */
.nav__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav__mobile-menu.open {
    transform: translateX(0);
}

.nav__mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.nav__mobile-close {
    background: none;
    border: 1px solid #333;
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__mobile-links {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nav__mobile-link {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: color 0.2s;
}

.nav__mobile-link:hover {
    color: #fff;
}

.nav__mobile-link--active {
    color: var(--red);
}

.nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 32px;
}

/* ---- Hero ---- */
.hero {
    padding: 100px 20px 56px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 10px;
}

.hero__dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 61px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero__sub {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 64px;
}

.hero__phone {
    display: flex;
    justify-content: flex-end;
}

.phone {
    max-width: calc(100vw - 40px);
}

.hero__phone-main {
    max-width: calc(100vw - 40px);
}

/* ---- Phone Component ---- */
.phone {
    width: 272px;
    background: #1c1c1e;
    border-radius: 40px;
    border: 2px solid #3a3a3c;
    padding: 4px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.85), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone__screen {
    background: #000;
    border-radius: 36px;
    overflow: hidden;
    height: 560px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone__island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 116px;
    height: 26px;
    background: #000;
    border: 2px solid #1c1c1e;
    border-radius: 20px;
    z-index: 10;
}

.phone--small {
    width: 80%;
    max-width: 280px;
    margin: 28px auto 0;
}

.phone--small .phone__screen {
    height: auto;
    aspect-ratio: 9 / 19.5;
}

.phone--wide {
    width: 92%;
    max-width: 320px;
    margin-bottom: -28px;
    border-radius: 40px 40px 0 0;
    border-bottom: none;
}

.phone--wide .phone__screen {
    height: 460px;
    aspect-ratio: unset;
    border-radius: 36px 36px 0 0;
}

/* ---- Phone status bar ---- */
.phone__statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px 0;
    height: 45px;
    flex-shrink: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.phone__time {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    font-family: -apple-system, sans-serif;
}

.phone__status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

/* ---- Phone screenshot ---- */
.phone__screenshot-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.phone__screenshot {
    flex: 1;
    width: 100%;
    min-height: 0;
    object-fit: fill;
    object-position: top;
    display: block;
}

.phone__screenshot-wrap .phone__screenshot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    flex: none;
}

.phone__screenshot-wrap .phone__screenshot.slide-exit {
    animation: showcase-exit-up 0.35s ease forwards;
}

.phone__screenshot-wrap .phone__screenshot.slide-enter {
    animation: showcase-enter-below 0.35s ease forwards;
}

/* ---- Placeholder ---- */
.placeholder {
    background: #1c1c1c;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
    border-radius: 12px;
}

.phone__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    background: #000;
}

/* ---- Small Mobile (≤ 360px) ---- */
@media (max-width: 360px) {
    .hero    { padding-left: 16px; padding-right: 16px; }
    .section { padding-left: 16px; padding-right: 16px; }
    .feat-card { padding: 20px; }
    .footer  { padding-left: 16px; padding-right: 16px; }
    .nav     { padding-left: 16px; padding-right: 16px; }
}
/* landing.sections.css — Marquee, sections, showcase, features, planes, FAQ, reviews, CTA, footer */

/* ---- Marquee ---- */
.marquee {
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    will-change: transform;
}

.marquee__track span {
    color: var(--muted);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.marquee__track .marquee__sep {
    color: var(--red);
    font-size: 16px;
    line-height: 1;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes showcase-exit-up {
    from { transform: translateY(0); }
    to   { transform: translateY(-100%); }
}

@keyframes showcase-enter-below {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* ---- Section Divider ---- */
.divider {
    height: 1px;
    margin: 0 20px;
    background: linear-gradient(90deg, transparent 0%, rgba(200,14,20,0.6) 50%, transparent 100%);
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 12px;
    background: radial-gradient(ellipse, rgba(200,14,20,0.5) 0%, transparent 70%);
}

/* ---- Sections ---- */
.section {
    padding: 64px 20px;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 7px 14px;
    margin-bottom: 20px;
    background: var(--card);
}

.section__label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.section__title {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section__text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ---- Showcase ---- */
.showcase__viewer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase__stage {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Browser hidden on mobile */
.showcase__browser {
    display: none;
}

/* Phone wrap — centered on mobile */
.showcase__phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 0;
}

.showcase__phone {
    width: 80%;
    max-width: 300px;
    border-radius: 33px;
}

.showcase__phone .phone__screen {
    height: auto;
    aspect-ratio: 9 / 19.5;
    border-radius: 29px;
}

.showcase__phone .phone__island {
    width: 38%;
    height: 4%;
    top: 2.5%;
}

.showcase__phone .phone__statusbar {
    height: 45px;
    padding: 12px 24px 0;
}

.showcase__phone .phone__time {
    font-size: 14px;
}

.showcase__phone .phone__status-icons {
    transform: scale(0.95);
    transform-origin: right center;
}

/* Browser screen image layers */
.showcase__browser-screen {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
}

.showcase__desk-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    filter: blur(28px) brightness(0.35);
    transform: scale(1.15);
}

.showcase__desk-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.showcase__desk-img.slide-exit {
    animation: showcase-exit-up 0.35s ease forwards;
}

.showcase__desk-img.slide-enter {
    animation: showcase-enter-below 0.35s ease forwards;
}

.showcase__desk-empty {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tabs */
.showcase__nav {
    width: 100%;
}

.showcase__tabs {
    display: flex;
    gap: 6px;
    padding: 5px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
}

.showcase__tab {
    flex: 1;
    padding: 9px 4px;
    background: none;
    border: none;
    border-radius: 10px;
    color: var(--muted);
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: 'Inter', sans-serif;
}

.showcase__tab.active {
    background: var(--red);
    color: #fff;
}

.showcase__label {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 1px;
}

.showcase__link {
    color: var(--red);
    font-size: 15px;
    font-weight: 500;
}

/* ---- Stats Bar ---- */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 0;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 20px;
    flex: 1;
    max-width: 180px;
}

.stats-item__num {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stats-item__label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.4px;
    text-align: center;
}

.stats-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* ---- Phone Screen Label ---- */
.phone__screen-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- HIW Step Icon ---- */
.hiw-step__icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 14, 20, 0.1);
    border: 1px solid rgba(200, 14, 20, 0.22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 10px;
    flex-shrink: 0;
}

/* ---- Plan Card App Tag ---- */
.plan-card__app-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(200, 14, 20, 0.08);
    border: 1px solid rgba(200, 14, 20, 0.22);
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* ---- How It Works ---- */
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.hiw-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
}

.hiw-step__num {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--red);
    background: rgba(200, 14, 20, 0.1);
    border: 1px solid rgba(200, 14, 20, 0.25);
    border-radius: 8px;
    padding: 4px 10px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.hiw-step__title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.hiw-step__text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ---- Feature Cards ---- */
.feat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    margin-bottom: 16px;
    overflow: hidden;
}

.feat-card__tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 12px;
}

.feat-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.feat-card__text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.feat-card__list {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.feat-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    border: 1px solid rgba(200, 14, 20, 0.35);
    border-radius: 10px;
    padding: 10px 18px;
    text-decoration: none;
    background: rgba(200, 14, 20, 0.07);
    transition: background 0.2s, border-color 0.2s;
    align-self: flex-start;
}

.feat-card__cta:hover {
    background: rgba(200, 14, 20, 0.14);
    border-color: rgba(200, 14, 20, 0.6);
}

.feat-card__list li {
    color: var(--muted);
    font-size: 14px;
    padding: 10px 0 10px 32px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.feat-card__list li:last-child {
    border-bottom: none;
}

.feat-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(200, 14, 20, 0.2);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 20px;
}
/* landing.content.css — Planes, FAQ, reviews, CTA, footer */

/* ---- Planes ---- */
.price-step {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.price-step__num {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
    background: #1a1a1e;
    border: 1px solid #2a2a2e;
    border-radius: 8px;
    padding: 4px 10px;
    letter-spacing: 1px;
}

.price-step--primary .price-step__num {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}

.price-step--primary .price-step__label {
    color: #fff;
    font-size: 15px;
}

.price-step__label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-once {
    background: rgba(200, 14, 20, 0.05);
    border: 1px solid rgba(200, 14, 20, 0.3);
    border-radius: var(--r);
    padding: 32px;
    margin-bottom: 24px;
}

.plan-once__icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 14, 20, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.plan-once__tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-once__price {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-once__note {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.plan-card {
    background: #0e0e10;
    border: 1px solid #1e1e22;
    border-radius: var(--r);
    padding: 22px;
    margin-bottom: 16px;
    position: relative;
}

.plan-card--featured {
    border-color: rgba(200, 14, 20, 0.45);
    background: rgba(200, 14, 20, 0.04);
}

.plan-card__name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.plan-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.plan-card__name {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.plan-card__desc {
    font-size: 13px;
    color: var(--muted);
    margin: 4px 0 14px;
    line-height: 1.45;
}

.plan-card__period {
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 6px;
}

.plan-card__price {
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

.plan-card__price span {
    font-size: 13px;
    color: var(--muted);
}

.plan-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-card__list li {
    font-size: 13px;
    color: var(--muted);
    padding-left: 20px;
    position: relative;
}

.plan-card__list li::before {
    content: '○';
    position: absolute;
    left: 0;
    font-size: 10px;
}

.plan-card__list li.on {
    color: #888;
}

.plan-card__list li.on::before {
    content: '●';
    color: #555;
}

.plan-card__list li.off {
    opacity: 0.35;
    text-decoration: line-through;
}

.plan-card__list li.off::before {
    content: '✕';
    font-size: 9px;
    color: #444;
}

.plan-card .btn {
    margin-bottom: 18px;
}

/* ---- FAQ ---- */
.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}

.faq__q span {
    color: var(--red);
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.faq__a {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    padding-bottom: 20px;
    display: none;
}

.faq__a.open {
    display: block;
}

/* ---- Reviews ---- */
.reviews__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card__stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 3px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.review-card__shop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.review-card__domain {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 7px;
    padding: 4px 10px;
    background: var(--red);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 10px rgba(200, 14, 20, 0.35);
    transition: opacity 0.15s;
}

.review-card__domain:hover {
    opacity: 0.85;
}

/* ---- CTA Final ---- */
.cta-final__card {
    background: linear-gradient(160deg, rgba(200,14,20,0.14) 0%, rgba(12,12,12,0) 60%);
    border: 1px solid rgba(200, 14, 20, 0.25);
    border-radius: var(--r);
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---- Footer ---- */
.footer {
    padding: 48px 20px 36px;
    border-top: 1px solid var(--border);
}

.footer__logo {
    margin-bottom: 14px;
}

.footer__tagline {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.footer__links {
    display: flex;
    gap: 40px;
}

.footer__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__group-title {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
}

.footer__group a {
    color: var(--muted);
    font-size: 14px;
}

.footer__copy {
    color: var(--muted);
    font-size: 13px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
/* landing.desktop.css — Mobile defaults + tablet (768px+) + desktop (1024px+) */

/* ---- Mobile Defaults ---- */
.nav__links {
    display: none;
}

.nav__login {
    display: inline-flex;
    font-size: 13px;
    padding: 9px 16px;
}

.nav__empezar {
    display: none;
}

.nav__burger {
    display: flex;
}

.nav__btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__phone-back {
    display: none;
}

.hero__phone-right {
    display: none;
}

/* ---- Mobile: 3 phones stacked + Hero Slider ---- */
@media (max-width: 767px) {
    .hero {
        padding-top: 80px;
        overflow: clip; /* clip sliding hero elements without stacking-context artefact */
    }

    /* Slider: positions sub and phone in the same 290px zone; ctas flows below */
    .hero__slider {
        position: relative;
        padding-top: 290px;
    }

    .hero__slider .hero__sub {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 290px;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        transform: translateX(-110%);
        transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero__slider .hero__phone {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 290px;
        justify-content: center;
        transform: translateX(0%);
        transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero__slider.hero__slider--sub .hero__phone {
        transform: translateX(110%);
    }

    .hero__slider.hero__slider--sub .hero__sub {
        transform: translateX(0%);
    }

    .hero__slider .hero__ctas {
        margin-top: 20px;
        margin-bottom: 0;
        position: relative;
        z-index: 10;
    }

    /* Scale phone-main larger than side phones for depth effect (140 vs 108px) */
    .hero__slider .hero__phone-main {
        width: 140px;
    }

    /* Raise side phones so they stay within the 260px zone */
    .hero__slider .hero__phone-back,
    .hero__slider .hero__phone-right {
        top: 30px;
    }

    .hero__phone-main {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 155px;
        max-width: none;
        z-index: 3;
    }

    .hero__phone-main {
        border-radius: 24px;
    }

    .hero__phone-main .phone__screen {
        height: auto;
        aspect-ratio: 9 / 19.5;
        border-radius: 20px;
    }

    .hero__phone-main .phone__island {
        width: 40px;
        height: 12px;
        top: 10px;
    }

    .hero__phone-main .phone__statusbar {
        height: 28px;
        padding: 5px 15px 0;
    }

    .hero__phone-main .phone__time {
        font-size: 8px;
    }

    .hero__phone-main .phone__status-icons {
        transform: scale(0.52);
        transform-origin: right center;
    }

    .hero__phone-back {
        display: block;
        position: absolute;
        left: 45px;
        top: 90px;
        width: 108px;
        border-radius: 22px;
        z-index: 1;
        opacity: 0.7;
        transform-origin: bottom center;
        transform: rotate(-13deg);
    }

    .hero__phone-right {
        display: block;
        position: absolute;
        right: 45px;
        top: 90px;
        width: 108px;
        border-radius: 22px;
        z-index: 2;
        opacity: 0.7;
        transform-origin: bottom center;
        transform: rotate(13deg);
    }

    .hero__phone-back .phone__screen,
    .hero__phone-right .phone__screen {
        height: auto;
        aspect-ratio: 9 / 19.5;
        border-radius: 15px;
    }

    .hero__phone-back .phone__island,
    .hero__phone-right .phone__island {
        width: 36px;
        height: 10px;
        top: 7px;
    }

    .hero__phone-back .phone__statusbar,
    .hero__phone-right .phone__statusbar {
        height: 20px;
        padding: 4px 10px 0;
    }

    .hero__phone-back .phone__time,
    .hero__phone-right .phone__time {
        font-size: 7px;
    }

    .hero__phone-back .phone__status-icons,
    .hero__phone-right .phone__status-icons {
        gap: 2px;
        transform: scale(0.42);
        transform-origin: right center;
    }
}

/* ---- Tablet (768px+) ---- */
@media (min-width: 768px) {
    /* Slider wrapper becomes invisible — children participate in hero layout as direct descendants */
    .hero__slider {
        display: contents;
    }

    .section {
        padding: 80px 48px;
    }

    .section__title {
        font-size: 44px;
    }

    .hero {
        padding: 120px 48px 80px;
    }

    .hero__title {
        font-size: 64px;
    }

    .feat-card {
        padding: 40px;
    }

    .plan-card,
    .plan-once {
        padding: 36px;
    }

    .plan-card__price {
        font-size: 48px;
    }

    .faq__q {
        font-size: 17px;
    }

    /* Showcase: Browser + Phone ab Tablet sichtbar */
    .showcase__stage {
        display: grid;
        grid-template-columns: 70% 33%;
        column-gap: 10px;
        height: 520px;
        width: 100%;
    }

    .showcase__browser {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .showcase__browser-chrome {
        display: flex;
        align-items: center;
        gap: 16px;
        background: #1a1a1a;
        border: 1px solid #2a2a2a;
        border-bottom: none;
        border-radius: 12px 12px 0 0;
        padding: 12px 16px;
        flex-shrink: 0;
    }

    .showcase__browser-dots {
        display: flex;
        gap: 6px;
    }

    .showcase__browser-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .showcase__browser-dots span:nth-child(1) { background: #ff5f57; }
    .showcase__browser-dots span:nth-child(2) { background: #ffbd2e; }
    .showcase__browser-dots span:nth-child(3) { background: #28c840; }

    .showcase__browser-url {
        flex: 1;
        background: #111;
        border: 1px solid #2a2a2a;
        border-radius: 6px;
        padding: 5px 12px;
        font-size: 12px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .showcase__browser-dot-red {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--red);
        flex-shrink: 0;
    }

    .showcase__browser-count {
        font-size: 12px;
        color: var(--red);
        font-weight: 600;
        white-space: nowrap;
    }

    .showcase__browser-screen {
        flex: 1;
        min-height: 0;
        border: 1px solid #2a2a2a;
        border-top: none;
        border-radius: 0 0 12px 12px;
    }

    .showcase__phone-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        border-radius: var(--r);
        padding: 0;
    }

    .showcase__phone {
        width: 100%;
        max-width: 240px;
        flex-shrink: 0;
    }

    .showcase__phone .phone__screen {
        height: auto;
        aspect-ratio: 9 / 19.5;
    }

    .showcase__phone .phone__statusbar {
        height: 40px;
        padding: 8px 24px 0;
    }

    .showcase__phone .phone__time {
        font-size: 11px;
    }

    .showcase__phone .phone__status-icons {
        transform: scale(0.75);
        transform-origin: right center;
    }
}

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
    .nav {
        padding: 16px max(48px, calc((100% - 1440px) / 2 + 48px));
        gap: 70px;
    }

    .nav__links {
        display: flex;
        align-items: center;
        gap: 36px;
    }

    .nav__link {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        transition: color 0.2s;
    }

    .nav__link:hover {
        color: #fff;
    }

    .nav__link--active {
        color: #fff;
        font-weight: 600;
    }

    .nav__login {
        display: inline-flex;
        font-size: 15px;
        padding: 14px 22px;
    }

    .nav__empezar {
        display: inline-flex;
    }

    .nav__burger {
        display: none;
    }

    .nav__logo-icon-img {
        display: none;
    }

    .nav__logo-name-img {
        display: block;
        height: 48px;
    }

    .hero {
        padding: 140px 48px 100px;
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        column-gap: 60px;
    }

    .hero__badge { grid-column: 1; }
    .hero__title { grid-column: 1; font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(68px, 6.8vw, 90px); line-height: 1.02; }
    .hero__sub   { grid-column: 1; }
    .hero__ctas  { grid-column: 1; flex-direction: row; }

    .hero__phone {
        grid-column: 2;
        grid-row: 1 / 5;
        justify-content: center;
        align-items: center;
    }

    .stats-bar {
        padding: 28px 48px;
    }

    .stats-item__num {
        font-size: 36px;
    }

    .stats-item__label {
        font-size: 13px;
    }

    .stats-divider {
        height: 44px;
    }

    .marquee {
        padding: 44px 0;
    }

    .section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 100px 48px;
    }

    /* Showcase: Desktop-Größen */
    .showcase__stage {
        grid-template-columns: 65% 30%;
        height: 750px;
    }

    .showcase__phone {
        max-width: 350px;
    }

    .showcase__phone .phone__statusbar {
        height: 50px;
        padding: 10px 30px 0;
    }

    .showcase__phone .phone__time {
        font-size: 13px;
    }

    .showcase__phone .phone__status-icons {
        transform: scale(0.9);
    }

    .feat-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto auto;
        column-gap: 48px;
        align-items: start;
        padding: 48px;
    }

    .feat-card__tag   { grid-column: 1; }
    .feat-card__title { grid-column: 1; font-size: 36px; }
    .feat-card__text  { grid-column: 1; }
    .feat-card__list  { grid-column: 1; }
    .feat-card__cta   { grid-column: 1; }

    .feat-card .phone--small {
        grid-column: 2;
        grid-row: 1 / 6;
        width: 70%;
        max-width: 260px;
        margin: 0 auto;
    }

    .feat-card .phone--wide {
        grid-column: 2;
        grid-row: 1 / 6;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }

    .feat-card .before-after {
        grid-column: 1 / 3;
    }

    .feat-card .wa-link {
        grid-column: 1;
    }

    .hiw-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 16px;
    }

    .hiw-step {
        flex-direction: column;
        padding: 28px;
        border-bottom: none;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--r);
    }

    .hiw-step__num {
        margin-bottom: 12px;
    }

    .plan-once {
        display: flex;
        align-items: center;
        gap: 24px;
        padding: 36px 32px;
    }

    .plan-once__icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .plan-once__info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex-shrink: 0;
        border-left: 1px solid var(--border);
        padding-left: 24px;
    }

    .plan-once__tag {
        margin-bottom: 0;
    }

    .plan-once__price {
        margin-bottom: 0;
        font-size: 24px;
    }

    .plan-once__note {
        margin-bottom: 0;
        flex: 1;
        padding-left: 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .plan-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
    }

    .plan-card {
        min-width: 0;
    }

    .plan-card__price {
        font-size: 40px;
    }

    .faq__list {
        max-width: 780px;
    }

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

    .cta-final__card {
        padding: 64px 56px;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer {
        padding: 64px max(48px, calc((100vw - 1440px) / 2 + 48px)) 48px;
        border-top: 1px solid var(--border);
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        column-gap: 80px;
        row-gap: 0;
        align-items: start;
    }

    .footer__logo    { grid-column: 1; grid-row: 1; margin-bottom: 20px; }
    .footer__tagline { grid-column: 1; grid-row: 2; max-width: 380px; margin-bottom: 0; }
    .footer__links   { grid-column: 2; grid-row: 1 / 3; align-self: center; flex-direction: row; gap: 64px; }
    .footer__copy    { grid-column: 1 / 3; grid-row: 3; margin-top: 48px; }

    .divider {
        margin: 0 max(48px, calc((100vw - 1440px) / 2 + 48px));
    }

    .plan-once,
    .plan-cards-grid {
        width: 100%;
    }
}
/* landing.desktop.breakpoints.css — Hero phones (1024px+), tablet-only */

/* ---- Desktop Hero Phones (1024px+) ---- */
@media (min-width: 1024px) {
    .hero__phone {
        position: relative;
        width: 100%;
        height: 660px;
        flex-shrink: 0;
        display: block;
        overflow: visible;
    }

    .hero__phone-main {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 265px;
        max-width: none;
        z-index: 3;
    }

    .hero__phone-back {
        display: block;
        position: absolute;
        left: 30px;
        top: 120px;
        width: 190px;
        max-width: none;
        border-radius: 28px;
        z-index: 1;
        opacity: 0.75;
        transform-origin: bottom center;
        transform: rotate(-18deg);
    }

    .hero__phone-right {
        display: block;
        position: absolute;
        right: 30px;
        top: 120px;
        width: 190px;
        max-width: none;
        border-radius: 28px;
        z-index: 2;
        opacity: 0.75;
        transform-origin: bottom center;
        transform: rotate(18deg);
    }

    .hero__phone-back .phone__screen,
    .hero__phone-right .phone__screen {
        height: 385px;
        border-radius: 24px;
    }

    .hero__phone-back .phone__island,
    .hero__phone-right .phone__island {
        width: 60px;
        height: 16px;
        top: 12px;
    }

    .hero__phone-back .phone__statusbar,
    .hero__phone-right .phone__statusbar {
        height: 33px;
        padding: 8px 18px 0;
    }

    .hero__phone-back .phone__time,
    .hero__phone-right .phone__time {
        font-size: 10px;
    }

    .hero__phone-back .phone__status-icons,
    .hero__phone-right .phone__status-icons {
        gap: 4px;
        transform: scale(0.72);
        transform-origin: right center;
    }

    .feat-card .phone--wide {
        align-self: end;
        margin-bottom: -48px;
    }
}

/* ---- Tablet Only (768px – 1023px) ---- */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav {
        padding: 14px 32px;
        gap: 20px;
    }

    .nav__links {
        display: none;
    }

    .nav__login {
        display: inline-flex;
        font-size: 14px;
        padding: 10px 18px;
    }

    .nav__empezar {
        display: inline-flex;
        font-size: 14px;
        padding: 10px 18px;
    }

    .nav__burger {
        display: flex;
    }

    .nav__logo-icon-img {
        display: none;
    }

    .nav__logo-name-img {
        display: block;
        height: 24px;
    }

    .nav__mobile-menu {
        left: 50%;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav__backdrop {
        display: block;
        position: fixed;
        inset: 0;
        right: 50%;
        background: rgba(0, 0, 0, 0.55);
        z-index: 299;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav__backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav__mobile-header .nav__logo-icon-img {
        display: block;
        height: 28px;
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        align-items: start;
        padding: 120px 48px 80px;
        overflow: hidden;
    }

    .hero__title { grid-column: 1; font-size: 54px; line-height: 1.05; }
    .hero__sub   { grid-column: 1; }
    .hero__ctas  { grid-column: 1; flex-direction: row; flex-wrap: wrap; }

    .hero__phone {
        grid-column: 2;
        grid-row: 1 / 4;
        position: relative;
        width: 100%;
        height: 540px;
        display: block;
        overflow: visible;
    }

    .hero__phone-main {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 230px;
        max-width: none;
        z-index: 3;
    }

    .hero__phone-main .phone__screen {
        height: auto;
        aspect-ratio: 9 / 19.5;
    }

    .hero__phone-main .phone__island {
        width: 90px;
        height: 20px;
        top: 11px;
    }

    .hero__phone-main .phone__statusbar {
        height: 38px;
        padding: 8px 20px 0;
    }

    .hero__phone-main .phone__time {
        font-size: 11px;
    }

    .hero__phone-main .phone__status-icons {
        transform: scale(0.78);
        transform-origin: right center;
    }

    .hero__phone-back {
        display: block;
        position: absolute;
        left: 15px;
        top: 100px;
        width: 148px;
        max-width: none;
        border-radius: 26px;
        z-index: 1;
        opacity: 0.75;
        transform-origin: bottom center;
        transform: rotate(-18deg);
    }

    .hero__phone-right {
        display: block;
        position: absolute;
        right: 15px;
        top: 100px;
        width: 148px;
        max-width: none;
        border-radius: 26px;
        z-index: 2;
        opacity: 0.75;
        transform-origin: bottom center;
        transform: rotate(18deg);
    }

    .hero__phone-back .phone__screen,
    .hero__phone-right .phone__screen {
        height: 305px;
        border-radius: 22px;
    }

    .hero__phone-back .phone__island,
    .hero__phone-right .phone__island {
        width: 50px;
        height: 13px;
        top: 9px;
    }

    .hero__phone-back .phone__statusbar,
    .hero__phone-right .phone__statusbar {
        height: 28px;
        padding: 6px 14px 0;
    }

    .hero__phone-back .phone__time,
    .hero__phone-right .phone__time {
        font-size: 9px;
    }

    .hero__phone-back .phone__status-icons,
    .hero__phone-right .phone__status-icons {
        gap: 3px;
        transform: scale(0.62);
        transform-origin: right center;
    }

    .section {
        padding: 80px 48px;
    }

    .feat-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        align-items: start;
        padding: 40px;
    }

    .feat-card__tag   { grid-column: 1; }
    .feat-card__title { grid-column: 1; }
    .feat-card__text  { grid-column: 1; }
    .feat-card__list  { grid-column: 1; }

    .feat-card .phone--small,
    .feat-card .phone--wide {
        grid-column: 2;
        grid-row: 1 / 5;
        width: 70%;
        max-width: 230px;
        margin: 0 auto;
    }

    .feat-card .phone--small .phone__island,
    .feat-card .phone--wide .phone__island {
        width: 90px;
        height: 20px;
        top: 11px;
    }

    .feat-card .phone--small .phone__statusbar,
    .feat-card .phone--wide .phone__statusbar {
        height: 38px;
        padding: 8px 20px 0;
    }

    .feat-card .phone--small .phone__time,
    .feat-card .phone--wide .phone__time {
        font-size: 11px;
    }

    .feat-card .phone--small .phone__status-icons,
    .feat-card .phone--wide .phone__status-icons {
        transform: scale(0.78);
        transform-origin: right center;
    }

    .feat-card .before-after { grid-column: 1 / 3; }
    .feat-card .wa-link      { grid-column: 1; }

    .hiw-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 12px;
    }

    .hiw-step {
        flex-direction: column;
        padding: 20px;
        border-bottom: none;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--r);
    }

    .plan-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .plan-card__price {
        font-size: 40px;
    }

    .reviews__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 32px;
    }

    .cta-final__card {
        padding: 48px 40px;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer {
        padding: 48px;
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 60px;
        align-items: start;
    }

    .footer__logo    { grid-column: 1; grid-row: 1; margin-bottom: 16px; }
    .footer__tagline { grid-column: 1; grid-row: 2; margin-bottom: 0; }
    .footer__links   { grid-column: 2; grid-row: 1 / 3; align-self: center; gap: 48px; }
    .footer__copy    { grid-column: 1 / 3; grid-row: 3; margin-top: 36px; }

    .divider {
        margin: 0 48px;
    }
}

/* ---- Visually Hidden (screen-reader only) ---- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ---- Focus Visible ---- */
:focus { outline: none; }

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---- WhatsApp Floating Button ---- */
.wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: opacity 0.2s;
}

.wa-btn:hover { opacity: 0.9; }

.wa-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---- Sticky Mobile CTA ---- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 20px max(20px, env(safe-area-inset-bottom));
    background: linear-gradient(to top, var(--bg) 70%, transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.sticky-cta--visible {
    transform: translateY(0);
    pointer-events: all;
}

@media (min-width: 768px) {
    .sticky-cta {
        left: auto;
        right: 20px;
        bottom: 84px;
        width: auto;
        padding: 0;
        background: none;
        transform: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .sticky-cta--visible {
        opacity: 1;
        transform: none;
    }
    .sticky-cta .btn--full {
        width: auto;
        font-size: 14px;
        padding: 12px 22px;
        box-shadow: 0 6px 24px rgba(200, 14, 20, 0.45);
    }
}

@media (max-width: 767px) {
    .sticky-cta {
        bottom: 0;
        right: auto;
        padding: 0 0 20px 20px;
        background: none;
    }

    .sticky-cta .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .sticky-cta .btn--full {
        width: auto;
        justify-content: flex-start;
    }
}
