:root {
    /* Deep, slightly cool near-black — richer than flat charcoal */
    --bg-color: #0a0b10;
    --surface-color: #14151d;
    --surface-2: #1b1d27;
    --primary-color: #2f96e6;
    --primary-light: #79c4f7;
    --accent-color: #2bd384;
    --accent-hover: #22c177;
    --text-color: #f3f5f9;
    --text-secondary: #9aa3b4;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --accent-gradient: linear-gradient(135deg, #2f96e6 0%, #6fb9f2 100%);
    --success-color: #3fe39a;
    --danger-color: #ff6b6b;

    --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.65;
    font-feature-settings: 'cv05' 1, 'cv08' 1, 'ss01' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-image:
        radial-gradient(900px 520px at 50% -8%, rgba(47, 150, 230, 0.16), transparent 70%),
        radial-gradient(700px 500px at 88% 12%, rgba(43, 211, 132, 0.07), transparent 70%);
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Premium display typography — tight tracking, balanced wraps */
h1,
h2,
h3,
.logo,
.price-amount,
.stat-num,
.setup-price,
.price-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

/* FOCUS (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) rotate(-2deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px) rotate(2deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes chatPop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

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

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 136, 204, 0.3);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 136, 204, 0.5);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left (mockups on odd rows) */
.slide-from-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-from-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right (mockups on even rows) */
.slide-from-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered chat bubbles */
.chat-bubble-animated {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.chat-bubble-animated.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.chat-bubble-animated:nth-child(1) {
    transition-delay: 0s;
}

.chat-bubble-animated:nth-child(2) {
    transition-delay: 0.15s;
}

.chat-bubble-animated:nth-child(3) {
    transition-delay: 0.3s;
}

.chat-bubble-animated:nth-child(4) {
    transition-delay: 0.45s;
}

/* Respect reduced motion (a11y) */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .animate-on-scroll,
    .slide-from-left,
    .slide-from-right,
    .chat-bubble-animated {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* HEADER */
header {
    padding: 16px 24px;
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 14px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.16), rgba(26, 26, 35, 0.72));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    z-index: 100;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.22), rgba(20, 20, 28, 0.85));
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo {
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--text-color);
}

.logo::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 12px rgba(121, 196, 247, 0.8);
    vertical-align: middle;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-login {
    opacity: 1 !important;
}

/* Burger — hidden on desktop, shown on mobile */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text-color);
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    flex-direction: column;
    padding: 8px;
    background: linear-gradient(135deg, rgba(20, 28, 38, 0.96), rgba(15, 15, 21, 0.97));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 13px 16px;
    border-radius: 11px;
    transition: background 0.18s;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: rgba(255, 255, 255, 0.07);
}

.btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    width: fit-content;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(47, 150, 230, 0.35);
}

/* Conversion CTA — refined emerald so it stands apart from brand-blue UI */
.btn-cta {
    background: var(--accent-color);
    color: #042217;
    font-weight: 700;
}

.btn-cta:hover {
    background: var(--accent-hover);
    color: #042217;
    box-shadow: 0 12px 32px rgba(43, 211, 132, 0.32);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
    color: var(--primary-light);
    box-shadow: none;
}

.btn-large {
    padding: 17px 42px;
    font-size: 17px;
    border-radius: 14px;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
}

/* HERO */
.hero {
    padding: 120px 0 90px;
    animation: fadeInUp 0.8s ease;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero .hero-slogan {
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
    color: var(--text-color);
}

.hero .hero-disclaimer {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.04;
    margin-bottom: 24px;
    color: var(--text-color);
    text-wrap: balance;
}

.hero h1 .accent {
    color: var(--primary-light);
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 0 36px;
    text-wrap: pretty;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-buttons .btn {
    width: auto;
}

.hero-trust {
    margin-top: 44px;
    display: flex;
    align-items: baseline;
    gap: clamp(20px, 3vw, 36px);
    flex-wrap: wrap;
}

.hero-trust-item {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 110px;
}

.hero-trust-item span {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 2rem;
    font-family: var(--font-display, inherit);
    letter-spacing: -0.02em;
}

/* HERO CAROUSEL (desktop screenshots) */
.hero-carousel {
    position: relative;
    height: 600px;
    perspective: 1600px;
}

.hero-carousel-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.hero-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #eef1f6;
    background: rgba(20, 22, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.hero-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 10px var(--primary-light);
}

.hero-tag span {
    display: inline-block;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.hero-tag.swapping span {
    opacity: 0;
    transform: translateY(-4px);
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 560px;
    margin: -280px 0 0 -140px;
    border-radius: 36px;
    border: 8px solid #0c0d12;
    overflow: hidden;
    background: #15161e;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;
    will-change: transform, opacity;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* positions relative to active */
.hero-slide[data-pos="0"] {
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 5;
}

.hero-slide[data-pos="1"] {
    transform: translateX(150px) scale(0.84) rotateY(-22deg);
    opacity: 0.6;
    filter: brightness(0.6);
    z-index: 4;
}

.hero-slide[data-pos="-1"] {
    transform: translateX(-150px) scale(0.84) rotateY(22deg);
    opacity: 0.6;
    filter: brightness(0.6);
    z-index: 4;
}

.hero-slide[data-pos="2"] {
    transform: translateX(265px) scale(0.7) rotateY(-30deg);
    opacity: 0.28;
    filter: brightness(0.45);
    z-index: 3;
}

.hero-slide[data-pos="-2"] {
    transform: translateX(-265px) scale(0.7) rotateY(30deg);
    opacity: 0.28;
    filter: brightness(0.45);
    z-index: 3;
}

.hero-slide[data-pos="hidden"] {
    transform: translateX(0) scale(0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-dots {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.hero-dot.active {
    background: var(--primary-light);
    width: 22px;
    border-radius: 4px;
}

/* Mini App screen mock inside slides */
.hero-shot {
    width: 100%;
    height: 100%;
    background: #0f1115;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #e7ebf2;
    user-select: none;
}

.shot-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px 6px;
    font-size: 11px;
    font-weight: 600;
    color: #cfd6e2;
}

.shot-status-icons {
    width: 38px;
    height: 11px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
}

.shot-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shot-bar .shot-title {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.01em;
}

.shot-bar .shot-back,
.shot-bar .shot-dots {
    color: var(--primary-light);
    font-size: 16px;
    min-width: 16px;
}

.shot-body {
    flex: 1;
    padding: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.shot-body-flush {
    padding: 0;
    gap: 0;
}

.shot-pad {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shot-chip-row {
    display: flex;
    gap: 6px;
}

.shot-chip {
    font-size: 10px;
    padding: 5px 11px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: #aeb6c4;
}

.shot-chip.active {
    background: var(--primary-light);
    color: #04141f;
    font-weight: 700;
}

.shot-food {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 8px;
}

.shot-food-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.shot-food-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.shot-food-meta b {
    font-size: 12px;
}

.shot-food-meta small {
    font-size: 9.5px;
    color: #8b94a3;
}

.shot-price {
    font-size: 11px;
    color: var(--primary-light);
    font-weight: 700;
    margin-top: 2px;
}

.shot-add {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: var(--accent-color);
    color: #042217;
    font-weight: 700;
    display: grid;
    place-items: center;
    font-size: 15px;
    flex-shrink: 0;
}

.shot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.shot-tile {
    aspect-ratio: 3/4;
    border-radius: 12px;
    position: relative;
}

.shot-tile-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 8.5px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 6px;
    background: var(--accent-color);
    color: #042217;
}

.shot-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0 6px;
}

.shot-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #2b6fa8);
    flex-shrink: 0;
}

.shot-profile b {
    font-size: 13px;
}

.shot-profile small {
    font-size: 10px;
    color: #8b94a3;
}

.shot-week {
    display: flex;
    justify-content: space-between;
    margin: 4px 0 6px;
}

.shot-week span {
    width: 30px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.04);
    color: #aeb6c4;
}

.shot-week span.active {
    background: var(--primary-light);
    color: #04141f;
    font-weight: 700;
}

.shot-slot {
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
}

.shot-slot.picked {
    border: 1.5px solid var(--accent-color);
    background: rgba(43, 211, 132, 0.08);
    color: #bff3d8;
    font-weight: 600;
}

.shot-hero-img {
    height: 230px;
    position: relative;
}

.shot-dots-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
}

.shot-estate-price {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.shot-estate-sub {
    font-size: 11px;
    color: #8b94a3;
}

.shot-spec-row {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.shot-spec-row span {
    font-size: 9.5px;
    padding: 5px 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #aeb6c4;
}

.shot-line {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 3px 0;
}

.shot-line.muted span,
.shot-line.muted b {
    color: #8b94a3;
}

.shot-line.total {
    font-size: 15px;
    font-weight: 800;
}

.shot-line.total b {
    color: var(--primary-light);
}

.shot-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0;
}

.shot-pay-method {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #aeb6c4;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 11px 13px;
    margin-top: 8px;
}

.shot-pay-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-light);
}

.shot-cta {
    margin: 0 12px 16px;
    background: var(--accent-color);
    color: #042217;
    font-weight: 700;
    font-size: 12.5px;
    text-align: center;
    padding: 13px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.shot-cta span {
    opacity: 0.8;
}

@media (max-width: 980px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 90px 0 70px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        align-items: center;
    }

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

    .hero-carousel {
        height: 520px;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 50px 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-carousel {
        height: 440px;
    }

    .hero-slide {
        width: 230px;
        height: 460px;
        margin: -230px 0 0 -115px;
    }

    .hero-slide[data-pos="1"] {
        transform: translateX(115px) scale(0.8) rotateY(-20deg);
    }

    .hero-slide[data-pos="-1"] {
        transform: translateX(-115px) scale(0.8) rotateY(20deg);
    }

    .hero-slide[data-pos="2"],
    .hero-slide[data-pos="-2"] {
        opacity: 0;
    }
}

/* ANCHOR PRICE */
.anchor-bar {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
    margin: 0 0 40px;
    font-size: 16px;
    color: var(--text-secondary);
}

.anchor-bar strong {
    color: var(--text-color);
}

.anchor-bar .old-price {
    text-decoration: line-through;
    color: var(--danger-color);
}

/* PAIN POINTS */
.pain-section {
    background: var(--surface-color);
    padding: 90px 0;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    margin: 48px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chat-bubbles {
    max-width: 500px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    background: rgba(255, 90, 90, 0.12);
    border: 1px solid rgba(255, 90, 90, 0.25);
    border-radius: 18px 18px 18px 4px;
    padding: 12px 18px;
    color: #ffb3b3;
    font-size: 15px;
    max-width: 80%;
}

.chat-bubble:nth-child(even) {
    align-self: flex-end;
    border-radius: 18px 18px 4px 18px;
}

.chat-bubble .time {
    font-size: 11px;
    color: #aa7777;
    margin-top: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 30px;
    border-radius: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.feature-icon svg {
    width: 44px;
    height: 44px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-secondary);
}

/* HOW IT WORKS */
/* ADMIN SECTION */
.admin-section {
    padding: 80px 0;
}

.admin-grid {
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 48px;
    align-items: center;
}

.admin-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 22px;
}

.admin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 12px 1px var(--primary-light);
}

.admin-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.admin-lead {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
    text-wrap: pretty;
}

.admin-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.45;
    color: var(--text-color);
}

.admin-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(43, 211, 132, 0.14);
    color: var(--accent-color);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

/* Browser frame */
.browser-frame {
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-color);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border-color);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.browser-url {
    margin-left: 14px;
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 7px;
    padding: 6px 14px;
    font-size: 12.5px;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.browser-screen {
    display: block;
    width: 100%;
    height: auto;
}

.browser-screen[src=""],
.browser-screen:not([src]) {
    display: none;
}

.browser-placeholder {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    font-size: 14px;
    background:
        linear-gradient(135deg, rgba(47, 150, 230, 0.06), rgba(43, 211, 132, 0.04)),
        repeating-linear-gradient(45deg, transparent, transparent 11px, rgba(255, 255, 255, 0.018) 11px, rgba(255, 255, 255, 0.018) 22px);
}

.browser-screen[src]:not([src=""])+.browser-placeholder {
    display: none;
}

.steps-section {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.3);
}

.step-number:hover {
    animation: glowPulse 1.5s ease infinite;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ROI CALCULATOR */
.calc-section {
    padding: 70px 0;
}

.calc-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface-color);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.calc-row label {
    font-size: 16px;
}

.calc-input {
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-color);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 16px;
    width: 150px;
    font-family: inherit;
    text-align: right;
}

.calc-result {
    text-align: center;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result .calc-label {
    color: var(--text-secondary);
    font-size: 15px;
}

.calc-result .loss {
    font-size: 42px;
    font-weight: 800;
    color: var(--danger-color);
    margin: 6px 0;
}

.calc-result .save {
    color: var(--success-color);
    font-weight: 600;
}

/* COMPARISON TABLE */
.compare-section {
    padding: 70px 0;
}

.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    max-width: 820px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    min-width: 540px;
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
}

.compare-table thead th {
    font-weight: 700;
    font-size: 16px;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table td:first-child,
.compare-table th:first-child {
    text-align: left;
    color: var(--text-secondary);
    font-weight: 500;
}

.compare-col-app {
    background: rgba(0, 136, 204, 0.10);
}

.compare-table .yes {
    color: var(--success-color);
    font-weight: 700;
}

.compare-table .no {
    color: var(--danger-color);
}

.compare-table .maybe {
    color: var(--text-secondary);
}

/* STATS */
.stats-section {
    padding: 50px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 8px;
}

/* TESTIMONIALS */
.testi-section {
    padding: 60px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testi-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testi-stars {
    color: #ffc94d;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-size: 15px;
}

.testi-quote {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: 15px;
}

.testi-role {
    color: var(--text-secondary);
    font-size: 13px;
}

/* PRICING */
.pricing-section {
    padding: 80px 0;
}

/* Niche tabs */
.niche-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 10px;
    flex-wrap: wrap;
}

.niche-tab {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
}

.niche-tab:hover {
    border-color: var(--primary-color);
    color: var(--text-color);
}

.niche-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.niche-tab .tab-icon {
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
}

.niche-tab .tab-icon svg {
    width: 16px;
    height: 16px;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 14px;
    margin: 18px 0 6px;
}

.pricing-trust span::before {
    content: "\2713";
    color: var(--success-color);
    margin-right: 6px;
    font-weight: 700;
}

/* Pricing panels */
.pricing-panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.pricing-panel.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
}

.price-card.featured {
    border-color: rgba(47, 150, 230, 0.5);
    background: linear-gradient(180deg, rgba(47, 150, 230, 0.08), var(--surface-color) 55%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.price-who {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.price-title {
    font-size: 24px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--primary-light);
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.price-features li::before {
    content: "\2713";
    color: var(--primary-light);
    margin-right: 10px;
    font-weight: 700;
}

/* TEMPLATES SHOWCASE */
.templates-section {
    padding: 80px 0;
}

.template-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.template-row:nth-child(even) {
    flex-direction: row-reverse;
}

.template-info {
    flex: 1;
}

.template-tag {
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.template-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.pain-text {
    border-left: 3px solid var(--danger-color);
    padding-left: 16px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-style: italic;
}

.solution-text {
    color: var(--success-color);
    font-weight: 500;
    margin-bottom: 16px;
}

.template-result {
    background: rgba(68, 255, 136, 0.05);
    border: 1px solid rgba(68, 255, 136, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.template-result strong {
    color: var(--success-color);
}

/* PHONE MOCKUP */
.mockup {
    width: 300px;
    height: 600px;
    background: #2a2a35;
    border-radius: 40px;
    border: 8px solid #1a1a23;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.4s ease;
}

.mockup.visible {
    animation: float 6s ease-in-out infinite;
}

.mockup:hover {
    box-shadow: 0 20px 80px rgba(0, 136, 204, 0.25);
}

.mockup-placeholder {
    color: #555;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

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

/* SETUP FEE */
.setup-section {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(0, 136, 204, 0.05));
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
}

.setup-section h2 {
    margin-bottom: 16px;
}

.setup-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-light);
    margin: 20px 0;
}

.setup-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.setup-feature {
    color: var(--text-secondary);
    font-size: 15px;
}

.setup-feature::before {
    content: "\2713";
    color: var(--success-color);
    margin-right: 8px;
    font-weight: 700;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 700px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

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

.faq-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--primary-light);
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 240px;
    padding-bottom: 20px;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
    color: var(--primary-light);
    text-decoration: none;
}

/* STICKY MOBILE CTA */
.mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .template-row {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .pain-text {
        border-left: none;
        border-top: 3px solid var(--danger-color);
        padding-top: 10px;
        padding-left: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }

    .niche-tabs {
        gap: 6px;
    }

    .niche-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

    .niche-tab .tab-icon {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .mockup {
        width: 260px;
        height: 520px;
    }

    .slide-from-left,
    .slide-from-right {
        transform: translateY(30px);
    }

    .slide-from-left.visible,
    .slide-from-right.visible {
        transform: translateY(0);
    }

    .setup-section {
        padding: 40px 20px;
    }

    /* Burger nav */
    .nav-page-link {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Trust row — keep on a single line */
    .hero-trust {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 12px;
    }

    .hero-trust-item {
        max-width: none;
        flex: 1;
        min-width: 0;
    }

    .hero-trust-item span {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 26px;
    }

    .stats-grid {
        gap: 40px;
    }

    .calc-card {
        padding: 28px 20px;
    }

    /* Calculator — label + input on one row, no overflow */
    .calc-row {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .calc-row label {
        flex: 1;
        min-width: 0;
        font-size: 15px;
    }

    .calc-input {
        width: 96px;
        flex: none;
    }

    /* sticky bar */
    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(15, 15, 19, 0.96);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 200;
    }

    .mobile-cta .btn {
        flex: 1;
        text-align: center;
    }

    body {
        padding-bottom: 84px;
    }
}

/* COMING SOON */
.soon-section {
    padding: 30px 0 80px;
}

.soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 760px;
    margin: 40px auto 0;
}

.soon-card {
    background: var(--surface-color);
    border: 1px dashed var(--border-strong);
    border-radius: 18px;
    padding: 28px;
}

.soon-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(121, 196, 247, 0.12);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.soon-title {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 8px;
}

.soon-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
