/* ============================================================
   GO-LOKO.COM — Main Stylesheet
   Prefix: fw-  |  Author: Fiddmark Tech
   ============================================================ */

/* --- VARIABLES --- */
:root {
    /* Colors */
    --fw-primary: #1a1a2e;
    --fw-primary-light: #2d2d4a;
    --fw-accent: #e94560;
    --fw-accent-hover: #d63b55;
    --fw-accent-light: rgba(233, 69, 96, 0.08);
    --fw-text: #2d3436;
    --fw-text-light: #636e72;
    --fw-text-muted: #b2bec3;
    --fw-bg: #ffffff;
    --fw-bg-alt: #fafbfc;
    --fw-border: #edf0f2;
    --fw-success: #00b894;
    --fw-white: #ffffff;

    /* Blush gradients */
    --fw-blush-1: rgba(233, 69, 96, 0.25);
    --fw-blush-2: rgba(162, 85, 255, 0.22);
    --fw-blush-3: rgba(255, 159, 67, 0.22);
    --fw-blush-4: rgba(116, 185, 255, 0.20);

    /* Typography */
    --fw-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --fw-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --fw-font-mono: 'JetBrains Mono', monospace;

    /* Sizing */
    --fw-container: 1400px;
    --fw-container-narrow: 1000px;
    --fw-radius: 16px;
    --fw-radius-sm: 10px;
    --fw-radius-lg: 24px;
    --fw-radius-xl: 32px;

    /* Spacing scale */
    --fw-space-xs: 0.5rem;
    --fw-space-sm: 1rem;
    --fw-space-md: 1.5rem;
    --fw-space-lg: 2.5rem;
    --fw-space-xl: 4rem;
    --fw-space-2xl: 6rem;
    --fw-space-3xl: 8rem;

    /* Transitions */
    --fw-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fw-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --fw-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --fw-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --fw-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --fw-shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.10);
    --fw-shadow-accent: 0 8px 32px rgba(233, 69, 96, 0.20);
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--fw-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--fw-text);
    background: var(--fw-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--fw-accent);
    text-decoration: none;
    transition: color var(--fw-transition);
}

a:hover {
    color: var(--fw-accent-hover);
}

ul, ol {
    list-style: none;
}

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


/* --- LAYOUT --- */
.fw-container {
    width: 100%;
    max-width: var(--fw-container);
    margin: 0 auto;
    padding: 0 var(--fw-space-md);
}

.fw-container--narrow {
    max-width: var(--fw-container-narrow);
}

.fw-section {
    padding: var(--fw-space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.fw-section--alt {
    background: var(--fw-bg-alt);
}

/* Section-level blush backgrounds */
.fw-section--blush-1 {
    background:
        radial-gradient(ellipse 700px 500px at 85% 15%, var(--fw-blush-1), transparent),
        radial-gradient(ellipse 600px 450px at 5% 80%, var(--fw-blush-2), transparent),
        var(--fw-bg);
}

.fw-section--blush-2 {
    background:
        radial-gradient(ellipse 650px 500px at 5% 25%, var(--fw-blush-3), transparent),
        radial-gradient(ellipse 550px 400px at 92% 70%, var(--fw-blush-4), transparent),
        var(--fw-bg-alt);
}

.fw-section--blush-3 {
    background:
        radial-gradient(ellipse 700px 450px at 80% 35%, var(--fw-blush-2), transparent),
        radial-gradient(ellipse 550px 400px at 10% 65%, var(--fw-blush-3), transparent),
        var(--fw-bg);
}

.fw-section--blush-4 {
    background:
        radial-gradient(ellipse 650px 500px at 15% 15%, var(--fw-blush-4), transparent),
        radial-gradient(ellipse 550px 400px at 80% 80%, var(--fw-blush-1), transparent),
        var(--fw-bg-alt);
}

.fw-grid {
    display: grid;
    gap: var(--fw-space-lg);
}

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

.fw-flex {
    display: flex;
    align-items: center;
    gap: var(--fw-space-md);
}

.fw-flex--between {
    justify-content: space-between;
}

.fw-flex--center {
    justify-content: center;
}

.fw-flex--wrap {
    flex-wrap: wrap;
}


/* --- TYPOGRAPHY --- */
.fw-label {
    font-family: var(--fw-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--fw-accent);
    margin-bottom: var(--fw-space-sm);
    display: block;
}

.fw-label::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #333;
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: -4px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fw-font-display);
    color: var(--fw-primary);
    line-height: 1.15;
    font-weight: 800;
}

.fw-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1.5px;
}

.fw-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
}

.fw-h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.5px;
}

.fw-h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.fw-text {
    font-size: 1.1rem;
    color: var(--fw-text-light);
    line-height: 1.8;
    max-width: 600px;
}

.fw-text--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.fw-text--sm {
    font-size: 0.9rem;
}

.fw-text--lg {
    font-size: 1.25rem;
}

.fw-highlight {
    position: relative;
    display: inline;
}

.fw-highlight::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 2px;
    height: 8px;
    background: linear-gradient(90deg, var(--fw-accent), rgba(162, 85, 255, 0.6));
    border-radius: 4px;
    z-index: -1;
    opacity: 0.35;
    transform: scaleX(0);
    transform-origin: left;
}

.fw-highlight.is-drawn::after {
    animation: fw-underline-draw 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fw-underline-draw {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.fw-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--fw-space-xl);
}

.fw-section-header .fw-label {
    justify-content: center;
}

.fw-section-header .fw-text {
    margin: var(--fw-space-sm) auto 0;
}

.fw-text--aside {
    font-size: 0.85rem;
    color: var(--fw-text-muted);
    font-style: italic;
    margin-bottom: var(--fw-space-sm);
    text-align: center;
}


/* --- BUTTONS --- */
.fw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--fw-font-display);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--fw-transition);
    white-space: nowrap;
}

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

.fw-btn--primary:hover {
    background: var(--fw-accent-hover);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.30);
    color: var(--fw-white);
}

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

.fw-btn--outline:hover {
    border-color: var(--fw-accent);
    color: var(--fw-accent);
}

.fw-btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.fw-btn--sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.fw-btn-group {
    display: flex;
    gap: var(--fw-space-sm);
    flex-wrap: wrap;
}


/* --- NAVBAR --- */
.fw-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--fw-transition);
}

.fw-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    box-shadow: var(--fw-shadow-sm);
}

.fw-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fw-navbar__logo {
    height: 48px;
    transition: height var(--fw-transition);
}

.fw-navbar.is-scrolled .fw-navbar__logo {
    height: 38px;
}

.fw-navbar__logo-text {
    font-family: var(--fw-font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--fw-primary);
    letter-spacing: -1px;
}

.fw-navbar__logo-text span {
    color: var(--fw-accent);
}

.fw-navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.fw-navbar__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fw-text);
    transition: color var(--fw-transition);
    position: relative;
}

.fw-navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fw-accent);
    transition: width var(--fw-transition);
    border-radius: 1px;
}

.fw-navbar__link:hover {
    color: var(--fw-accent);
}

.fw-navbar__link:hover::after {
    width: 100%;
}

.fw-navbar__lang--mobile {
    display: none;
}

.fw-navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.fw-navbar__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fw-primary);
    border-radius: 2px;
    transition: all var(--fw-transition);
}


/* --- BLUSH ORBS (interactive background) --- */
.fw-blush-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.fw-blush-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.fw-blush-orb--1 {
    width: 500px;
    height: 500px;
    background: var(--fw-blush-1);
    top: -100px;
    right: -100px;
}

.fw-blush-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--fw-blush-2);
    top: 40%;
    left: -150px;
}

.fw-blush-orb--3 {
    width: 350px;
    height: 350px;
    background: var(--fw-blush-3);
    bottom: 20%;
    right: 10%;
}

.fw-blush-orb--4 {
    width: 450px;
    height: 450px;
    background: var(--fw-blush-4);
    bottom: -100px;
    left: 30%;
}


/* --- HERO --- */
.fw-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--fw-space-3xl) + 80px) 0 var(--fw-space-3xl);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fw-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fw-space-xl);
    align-items: center;
}

.fw-hero__content {
    max-width: 560px;
}

.fw-hero__title {
    margin-bottom: var(--fw-space-md);
}

.fw-hero__subtitle {
    font-size: 1.2rem;
    color: var(--fw-text-light);
    line-height: 1.8;
    margin-bottom: var(--fw-space-lg);
}

.fw-hero__subtitle--dark {
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .fw-hero__subtitle--dark {
        font-size: 0.95rem;
    }
}

.fw-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fw-hero__phone-img {
    max-height: 720px;
    width: auto;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.12));
    transition: transform var(--fw-transition-slow);
}

.fw-hero__phone-img:hover {
    transform: translateY(-8px);
}


/* --- PHONE MOCKUP --- */
.fw-phone {
    width: 280px;
    height: 580px;
    background: var(--fw-primary);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--fw-shadow-xl);
    position: relative;
    transition: transform var(--fw-transition-slow);
}

.fw-phone:hover {
    transform: translateY(-8px) rotate(1deg);
}

.fw-phone__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--fw-primary);
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.fw-phone__screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--fw-bg);
    position: relative;
}

.fw-phone__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #edf0f2);
    font-size: 0.8rem;
    color: var(--fw-text-muted);
    text-align: center;
    padding: 1rem;
    gap: 0.5rem;
}

.fw-phone__placeholder-icon {
    font-size: 2rem;
    opacity: 0.4;
}

.fw-phone__placeholder-label {
    font-weight: 600;
    color: var(--fw-text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fw-phone--tilted {
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}

.fw-phone--tilted:hover {
    transform: perspective(1000px) rotateY(-4deg) rotateX(1deg) translateY(-8px);
}

.fw-phone--sm {
    width: 220px;
    height: 460px;
    border-radius: 32px;
    padding: 10px;
}

.fw-phone--sm .fw-phone__screen {
    border-radius: 24px;
}

.fw-phone--sm .fw-phone__notch {
    width: 90px;
    height: 22px;
    top: 10px;
}


/* --- PAIN POINTS --- */
.fw-pain {
    padding: var(--fw-space-lg);
    border-radius: var(--fw-radius);
    background: var(--fw-bg);
    border: 1px solid var(--fw-border);
    transition: all var(--fw-transition);
    position: relative;
    overflow: hidden;
}

.fw-pain:hover {
    border-color: var(--fw-accent);
    box-shadow: var(--fw-shadow);
    transform: translateY(-4px);
}

.fw-pain__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--fw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--fw-space-md);
    background: var(--fw-accent-light);
}

.fw-pain__title {
    font-family: var(--fw-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fw-primary);
    margin-bottom: var(--fw-space-xs);
}

.fw-pain__text {
    font-size: 0.95rem;
    color: var(--fw-text-light);
    line-height: 1.7;
}


/* --- FEATURES (zig-zag) --- */
.fw-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fw-space-xl);
    align-items: center;
    padding: var(--fw-space-xl) 0;
}

.fw-feature:nth-child(even) {
    direction: rtl;
}

.fw-feature:nth-child(even) > * {
    direction: ltr;
}

.fw-feature__content {
    max-width: 480px;
}

.fw-feature__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--fw-space-sm);
    background: var(--fw-accent-light);
    color: var(--fw-accent);
}

.fw-feature__title {
    margin-bottom: var(--fw-space-sm);
}

.fw-feature__text {
    color: var(--fw-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.fw-feature__visual {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.fw-feature__blush {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    z-index: -1;
}

@media (max-width: 991px) {
    .fw-feature__blush {
        width: 250px;
        height: 250px;
    }
}


/* --- MINI DASHBOARD --- */
.fw-mini-dashboard {
    background: var(--fw-bg);
    border-radius: var(--fw-radius-lg);
    padding: var(--fw-space-lg);
    box-shadow: var(--fw-shadow-lg);
    width: 100%;
    max-width: 480px;
}

.fw-mini-dashboard__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fw-space-sm);
    margin-bottom: var(--fw-space-lg);
}

.fw-mini-kpi {
    text-align: center;
    padding: var(--fw-space-sm);
    background: var(--fw-bg-alt);
    border-radius: var(--fw-radius-sm);
}

.fw-mini-kpi__value {
    font-family: var(--fw-font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--fw-primary);
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
    min-width: 3ch;
}

.fw-mini-kpi__label {
    font-size: 0.7rem;
    color: var(--fw-text-muted);
    margin-top: 2px;
}

.fw-mini-chart {
    margin-bottom: var(--fw-space-md);
}

.fw-mini-chart__title {
    font-family: var(--fw-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fw-primary);
    margin-bottom: var(--fw-space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fw-mini-chart__bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.fw-mini-bar {
    display: grid;
    grid-template-columns: 110px 1fr 36px;
    align-items: center;
    gap: 0.6rem;
}

.fw-mini-bar__label {
    font-size: 0.8rem;
    color: var(--fw-text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fw-mini-bar__track {
    height: 10px;
    background: var(--fw-bg-alt);
    border-radius: 5px;
    overflow: hidden;
}

.fw-mini-bar__fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--fw-accent), rgba(162, 85, 255, 0.8));
    border-radius: 5px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fw-mini-bar__value {
    font-family: var(--fw-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fw-text-light);
    text-align: right;
}

/* Donut + Peak row */
.fw-mini-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fw-space-md);
    margin-top: var(--fw-space-sm);
}

.fw-mini-donut {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--fw-space-sm);
}

.fw-mini-donut__svg {
    width: 100px;
    height: 100px;
}

.fw-mini-donut__segment {
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fw-mini-donut__legend {
    font-size: 0.7rem;
    color: var(--fw-text-light);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fw-mini-donut__legend span {
    font-size: 0.6rem;
}

/* Peak hours mini chart */
.fw-mini-peak__bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 80px;
}

.fw-mini-peak__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.fw-mini-peak__col span {
    font-size: 0.55rem;
    color: var(--fw-text-muted);
    margin-top: 3px;
}

.fw-mini-peak__fill {
    width: 100%;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--fw-accent), rgba(233, 69, 96, 0.3));
    height: 0;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
    .fw-mini-dashboard {
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        padding: var(--fw-space-md);
    }

    .fw-mini-kpi__value {
        font-size: 1.3rem;
    }

    .fw-feature__visual {
        overflow: hidden;
        width: 100%;
    }

    .fw-mini-bar {
        grid-template-columns: 90px 1fr 30px;
    }

    .fw-mini-bottom {
        grid-template-columns: 1fr;
    }
}


/* --- KIOSK BANNER --- */
.fw-kiosk-banner {
    background: linear-gradient(135deg, var(--fw-primary), var(--fw-primary-light));
    padding: var(--fw-space-lg) 0;
    overflow: hidden;
}

.fw-kiosk-banner__inner {
    display: flex;
    align-items: center;
    gap: var(--fw-space-md);
    justify-content: center;
}

.fw-kiosk-banner__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-kiosk-banner__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
}

.fw-kiosk-banner__text strong {
    color: var(--fw-white);
    font-family: var(--fw-font-display);
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.15rem;
}

@media (max-width: 991px) {
    .fw-kiosk-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}


/* --- STEPS --- */
.fw-step {
    text-align: center;
    padding: var(--fw-space-lg);
    position: relative;
}

.fw-step__number {
    font-family: var(--fw-font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--fw-accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: var(--fw-space-sm);
}

.fw-step__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fw-blush-1), var(--fw-blush-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--fw-space-md);
    transition: transform var(--fw-transition);
}

.fw-step:hover .fw-step__icon {
    transform: scale(1.1);
}

.fw-step__title {
    font-family: var(--fw-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--fw-primary);
    margin-bottom: var(--fw-space-xs);
}

.fw-step__text {
    font-size: 0.95rem;
    color: var(--fw-text-light);
    max-width: 280px;
    margin: 0 auto;
}

.fw-step__connector {
    display: none;
}


/* --- PRICING --- */
.fw-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fw-space-lg);
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.fw-pricing-card {
    display: flex;
    flex-direction: column;
    padding: var(--fw-space-xl) var(--fw-space-lg);
    border-radius: var(--fw-radius-lg);
    border: 2px solid var(--fw-border);
    position: relative;
    transition: all var(--fw-transition);
    background: var(--fw-bg);
}

.fw-pricing-card:hover {
    box-shadow: var(--fw-shadow-lg);
    transform: translateY(-4px);
}

.fw-pricing-card--featured {
    border-color: var(--fw-accent);
    box-shadow: var(--fw-shadow);
}

.fw-pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fw-accent);
    color: var(--fw-white);
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fw-pricing-card__name {
    font-family: var(--fw-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fw-primary);
    margin-bottom: var(--fw-space-xs);
}

.fw-pricing-card__desc {
    font-size: 0.9rem;
    color: var(--fw-text-light);
    margin-bottom: var(--fw-space-md);
}

.fw-pricing-card__price {
    margin-bottom: var(--fw-space-md);
}

.fw-pricing-card__amount {
    font-family: var(--fw-font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--fw-primary);
    line-height: 1;
}

.fw-pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    line-height: 1.5;
}

.fw-pricing-card__period {
    font-size: 1rem;
    color: var(--fw-text-light);
    font-weight: 400;
}

.fw-pricing-card__coffee {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--fw-accent);
    font-weight: 600;
    margin-top: 0.25rem;
}

.fw-pricing-card__features {
    margin-bottom: var(--fw-space-lg);
}

.fw-pricing-card__feature {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--fw-text);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.fw-pricing-card__check {
    color: var(--fw-success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.fw-pricing-card__section-label {
    font-family: var(--fw-font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-top: var(--fw-space-md);
    margin-bottom: var(--fw-space-sm);
    padding-top: var(--fw-space-sm);
    border-top: 1px solid var(--fw-border);
}

.fw-pricing-card__feature--neutral {
    color: var(--fw-text-light);
}

.fw-pricing-card__icon-neutral {
    color: var(--fw-text-muted);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    min-width: 16px;
    text-align: center;
}

.fw-pricing-card__note {
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-top: var(--fw-space-sm);
    margin-bottom: var(--fw-space-md);
}

.fw-pricing-card .fw-btn {
    width: 100%;
    margin-top: auto;
}


/* --- VIDEO SECTION --- */
.fw-video {
    max-width: 900px;
    margin: 0 auto;
}

.fw-video__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--fw-radius-lg);
    overflow: hidden;
    background: var(--fw-primary);
    box-shadow: var(--fw-shadow-xl);
}

.fw-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.fw-video__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fw-primary), var(--fw-primary-light));
    color: var(--fw-white);
    gap: var(--fw-space-sm);
    cursor: pointer;
    transition: opacity var(--fw-transition);
}

.fw-video__play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--fw-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-left: 4px;
    box-shadow: var(--fw-shadow-accent);
    transition: transform var(--fw-transition), box-shadow var(--fw-transition);
}

.fw-video__placeholder:hover .fw-video__play {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.35);
}

.fw-video__placeholder-label {
    font-family: var(--fw-font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.fw-video__placeholder-sub {
    font-size: 0.85rem;
    opacity: 0.6;
}


/* --- DEMO CTA SECTION (kept for reuse) --- */
.fw-demo-cta {
    background: linear-gradient(135deg, var(--fw-primary), var(--fw-primary-light));
    border-radius: var(--fw-radius-xl);
    padding: var(--fw-space-xl);
    text-align: center;
    color: var(--fw-white);
    position: relative;
    overflow: hidden;
}

.fw-demo-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.15), transparent 70%);
    border-radius: 50%;
}

.fw-demo-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(116, 185, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.fw-demo-cta > * {
    position: relative;
    z-index: 1;
}

.fw-demo-cta .fw-h2 {
    color: var(--fw-white);
}

.fw-demo-cta .fw-text {
    color: rgba(255, 255, 255, 0.75);
    margin: var(--fw-space-sm) auto var(--fw-space-lg);
}

.fw-demo-cta .fw-btn--primary {
    background: var(--fw-white);
    color: var(--fw-accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fw-demo-cta .fw-btn--primary:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fw-demo-cta__qr {
    display: inline-block;
    width: 140px;
    height: 140px;
    background: var(--fw-white);
    border-radius: var(--fw-radius);
    margin-top: var(--fw-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--fw-space-md) auto 0;
    font-size: 0.75rem;
    color: var(--fw-text-muted);
    font-weight: 600;
}


/* --- TRUST BADGES --- */
.fw-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fw-space-md);
}

.fw-trust-badge {
    display: flex;
    align-items: center;
    gap: var(--fw-space-sm);
    padding: var(--fw-space-md);
    border-radius: var(--fw-radius);
    background: var(--fw-bg);
    border: 1px solid var(--fw-border);
    transition: all var(--fw-transition);
}

.fw-trust-badge:hover {
    border-color: var(--fw-accent);
    box-shadow: var(--fw-shadow-sm);
}

.fw-trust-badge__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--fw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: var(--fw-accent-light);
}

.fw-trust-badge__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fw-primary);
    line-height: 1.4;
}

.fw-trust-badge__sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--fw-text-light);
}


/* --- TESTIMONIALS --- */
.fw-testimonial {
    max-width: 800px;
    margin: 0 auto;
}

.fw-testimonial__inner {
    position: relative;
    min-height: 200px;
}

.fw-testimonial__slide {
    display: flex;
    align-items: flex-start;
    gap: var(--fw-space-lg);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fw-testimonial__slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.fw-testimonial__avatar {
    flex-shrink: 0;
}

.fw-testimonial__avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fw-blush-1), var(--fw-blush-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fw-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--fw-accent);
    border: 3px solid var(--fw-white);
    box-shadow: var(--fw-shadow);
}

.fw-testimonial__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fw-white);
    box-shadow: var(--fw-shadow);
}

.fw-testimonial__content {
    flex: 1;
}

.fw-testimonial__name {
    font-family: var(--fw-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--fw-primary);
}

.fw-testimonial__restaurant {
    font-size: 0.9rem;
    color: var(--fw-text-light);
    padding-bottom: var(--fw-space-sm);
    margin-bottom: var(--fw-space-sm);
    border-bottom: 1px solid var(--fw-border);
}

.fw-testimonial__stars {
    color: #f9a825;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--fw-space-xs);
}

.fw-testimonial__text {
    font-size: 1.05rem;
    color: var(--fw-text);
    line-height: 1.8;
    font-style: italic;
}

.fw-testimonial__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fw-space-md);
    margin-top: var(--fw-space-lg);
}

.fw-testimonial__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--fw-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--fw-text);
    background: var(--fw-white);
    cursor: pointer;
    transition: all var(--fw-transition);
}

.fw-testimonial__arrow:hover {
    border-color: var(--fw-accent);
    color: var(--fw-accent);
}

.fw-testimonial__dots {
    display: flex;
    gap: 8px;
}

.fw-testimonial__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--fw-border);
    cursor: pointer;
    transition: all var(--fw-transition);
    padding: 0;
}

.fw-testimonial__dot.is-active {
    background: var(--fw-accent);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .fw-testimonial__slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fw-testimonial__restaurant {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: var(--fw-space-xs);
    }
}


/* --- FAQ --- */
.fw-faq {
    max-width: 750px;
    margin: 0 auto;
}

.fw-faq-item {
    border-bottom: 1px solid var(--fw-border);
}

.fw-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--fw-space-sm) 0;
    font-family: var(--fw-font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fw-primary);
    text-align: left;
    transition: color var(--fw-transition);
    background: none;
    cursor: pointer;
}

.fw-faq-item__question:hover {
    color: var(--fw-accent);
}

.fw-faq-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--fw-accent);
    flex-shrink: 0;
    transition: transform var(--fw-transition);
}

.fw-faq-item.is-open .fw-faq-item__icon {
    transform: rotate(45deg);
}

.fw-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--fw-transition-slow), padding var(--fw-transition);
}

.fw-faq-item.is-open .fw-faq-item__answer {
    max-height: 800px;
}

.fw-faq-item__answer-inner {
    padding-bottom: var(--fw-space-md);
    font-size: 1rem;
    color: var(--fw-text-light);
    line-height: 1.8;
}


/* --- MODAL --- */
.fw-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--fw-space-md);
}

.fw-modal.is-open {
    display: flex;
}

.fw-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.fw-modal__content {
    position: relative;
    background: var(--fw-bg);
    border-radius: var(--fw-radius-lg);
    padding: var(--fw-space-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--fw-shadow-xl);
    animation: fw-modal-in 0.3s ease;
}

@keyframes fw-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.fw-modal__close {
    position: absolute;
    top: var(--fw-space-sm);
    right: var(--fw-space-sm);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--fw-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--fw-transition);
}

.fw-modal__close:hover {
    color: var(--fw-accent);
    background: var(--fw-accent-light);
}

/* --- FORM --- */
.fw-form__field {
    margin-bottom: var(--fw-space-sm);
}

.fw-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fw-space-sm);
}

.fw-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fw-primary);
    margin-bottom: 0.3rem;
}

.fw-form__input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--fw-border);
    border-radius: var(--fw-radius-sm);
    font-family: var(--fw-font-body);
    font-size: 0.95rem;
    color: var(--fw-text);
    transition: border-color var(--fw-transition);
    background: var(--fw-bg);
}

.fw-form__input:focus {
    outline: none;
    border-color: var(--fw-accent);
}

.fw-form__textarea {
    resize: vertical;
    min-height: 80px;
}

@media (max-width: 991px) {
    .fw-modal__content {
        padding: var(--fw-space-lg) var(--fw-space-md);
    }

    .fw-form__row {
        grid-template-columns: 1fr;
    }
}


/* --- FOOTER --- */
.fw-footer {
    background: var(--fw-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--fw-space-xl) 0 var(--fw-space-lg);
}

.fw-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--fw-space-xl);
    margin-bottom: var(--fw-space-xl);
}

.fw-footer__brand-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: var(--fw-space-sm);
    max-width: 300px;
}

.fw-footer__heading {
    font-family: var(--fw-font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fw-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--fw-space-md);
}

.fw-footer__link {
    display: block;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--fw-transition);
}

.fw-footer__link:hover {
    color: var(--fw-white);
}

.fw-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--fw-space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.fw-footer__socials {
    display: flex;
    gap: var(--fw-space-sm);
}

.fw-footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--fw-transition);
}

.fw-footer__social:hover {
    border-color: var(--fw-accent);
    color: var(--fw-accent);
    background: rgba(233, 69, 96, 0.1);
}


/* --- SCROLL ANIMATIONS --- */
.fw-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fw-reveal--left {
    transform: translateX(-40px);
}

.fw-reveal--right {
    transform: translateX(40px);
}

.fw-reveal--scale {
    transform: scale(0.95);
}

.fw-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.fw-reveal-delay-1 { transition-delay: 0.1s; }
.fw-reveal-delay-2 { transition-delay: 0.2s; }
.fw-reveal-delay-3 { transition-delay: 0.3s; }


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .fw-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fw-hero__content {
        max-width: 100%;
    }

    .fw-hero__visual {
        order: 1;
    }

    .fw-btn-group {
        justify-content: center;
    }

    .fw-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fw-feature:nth-child(even) {
        direction: ltr;
    }

    .fw-feature__content {
        max-width: 100%;
    }

    .fw-feature__visual {
        order: -1;
    }

    .fw-grid--3 {
        grid-template-columns: 1fr;
    }

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

    .fw-pricing-card {
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .fw-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--fw-space-lg);
    }
}

@media (max-width: 991px) {
    :root {
        --fw-space-3xl: 5rem;
        --fw-space-2xl: 4rem;
    }

    .fw-navbar__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .fw-navbar__links .fw-navbar__lang {
        display: none;
    }

    .fw-navbar__lang--mobile {
        display: block;
        z-index: 1001;
    }

    .fw-navbar__inner {
        position: relative;
    }

    .fw-navbar__lang--mobile {
        position: absolute;
        right: 52px;
        top: 50%;
        transform: translateY(-50%);
    }

    .fw-navbar__links.is-open {
        display: flex;
    }

    .fw-navbar__links .fw-navbar__link {
        font-size: 1.3rem;
    }

    .fw-navbar__burger {
        display: flex;
        z-index: 1000;
    }

    .fw-navbar__burger.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .fw-navbar__burger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .fw-navbar__burger.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .fw-phone {
        width: 240px;
        height: 500px;
        border-radius: 34px;
    }

    .fw-phone--tilted {
        transform: none;
    }

    .fw-grid--2 {
        grid-template-columns: 1fr;
    }

    .fw-trust-grid {
        grid-template-columns: 1fr;
    }

    .fw-footer__grid {
        grid-template-columns: 1fr;
    }

    .fw-footer__bottom {
        flex-direction: column;
        gap: var(--fw-space-sm);
        text-align: center;
    }

    .fw-section-header {
        text-align: left;
    }

    .fw-section-header .fw-text {
        margin-left: 0;
    }

    .fw-step__number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .fw-phone {
        width: 200px;
        height: 420px;
        border-radius: 28px;
        padding: 8px;
    }

    .fw-phone__screen {
        border-radius: 22px;
    }

    .fw-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .fw-btn-group .fw-btn {
        width: 100%;
    }
}


/* ============================================
   PRICING TIER ACCORDIONS (mobile-first)
   ============================================ */

.fw-tier-list {
    display: flex;
    flex-direction: column;
    gap: var(--fw-space-md);
    margin-top: var(--fw-space-2xl);
}

.fw-tier-acc {
    background: #fff;
    border-radius: var(--fw-radius-lg);
    box-shadow: var(--fw-shadow-sm);
    border: none;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.fw-tier-acc:hover {
    box-shadow: var(--fw-shadow-lg);
}

.fw-tier-acc__badge {
    position: absolute;
    top: -9px;
    right: 18px;
    background: var(--fw-accent);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(233, 69, 96, 0.30);
    white-space: nowrap;
}

/* HEAD --------------------------------------- */

.fw-tier-acc__head {
    display: flex;
    flex-direction: column;
    gap: var(--fw-space-sm);
    padding: var(--fw-space-md);
}

.fw-tier-acc__toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    color: inherit;
    font-family: inherit;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
}

.fw-tier-acc__price {
    justify-self: end;
}

.fw-tier-acc__toggle:focus-visible {
    outline: 2px solid var(--fw-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.fw-tier-acc__name {
    font-family: var(--fw-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fw-primary);
    flex: 1;
    line-height: 1.25;
    min-width: 0;
}

.fw-tier-acc__name-sub {
    display: block;
    font-family: var(--fw-font-sans, inherit);
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    font-style: italic;
    color: var(--fw-text-light);
    margin-top: 4px;
    line-height: 1.4;
    letter-spacing: 0;
}

.fw-tier-acc__price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}

.fw-tier-acc__price--stacked {
    display: block;
    text-align: right;
}

.fw-tier-acc__price--stacked .fw-tier-acc__amount,
.fw-tier-acc__price--stacked .fw-tier-acc__period {
    display: block;
    text-align: right;
}

.fw-tier-acc__amount {
    font-family: var(--fw-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--fw-primary);
    line-height: 1;
}

.fw-tier-acc__period {
    font-size: 0.78rem;
    color: var(--fw-text-light);
    white-space: nowrap;
}

.fw-tier-acc__expand-hint {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(26, 26, 46, 0.07);
    border-radius: 12px;
    color: var(--fw-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-top: 6px;
}

.fw-tier-acc__toggle:hover .fw-tier-acc__expand-hint {
    background: rgba(26, 26, 46, 0.13);
}

.fw-tier-acc__toggle[aria-expanded="true"] .fw-tier-acc__expand-hint {
    background: var(--fw-accent);
    color: #fff;
}

.fw-tier-acc__expand-text--expanded {
    display: none;
}

.fw-tier-acc__toggle[aria-expanded="true"] .fw-tier-acc__expand-text--collapsed {
    display: none;
}

.fw-tier-acc__toggle[aria-expanded="true"] .fw-tier-acc__expand-text--expanded {
    display: inline;
}

.fw-tier-acc__expand-arrow {
    transition: transform 0.3s;
    font-size: 0.7rem;
    line-height: 1;
    display: inline-block;
}

.fw-tier-acc__toggle[aria-expanded="true"] .fw-tier-acc__expand-arrow {
    transform: rotate(180deg);
}

.fw-tier-acc__cta-head {
    width: 100%;
    text-align: center;
    min-width: 200px;
}

/* BODY (collapsible) ------------------------- */

.fw-tier-acc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.fw-tier-acc.is-open .fw-tier-acc__body {
    max-height: 8000px;
}

.fw-tier-acc__body-inner {
    padding: var(--fw-space-md);
    padding-top: 0;
}

/* HOOK -------------------------------------- */

.fw-tier-acc__hook {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.07), rgba(108, 92, 231, 0.07));
    border-left: 4px solid var(--fw-accent);
    padding: var(--fw-space-md);
    border-radius: 12px;
    margin-bottom: var(--fw-space-lg);
}

.fw-tier-acc__hook-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fw-accent);
    margin-bottom: 8px;
}

.fw-tier-acc__hook-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fw-primary);
    margin: 0;
}

/* GROUPS ------------------------------------- */

.fw-tier-acc__group-title {
    font-family: var(--fw-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fw-primary);
    margin: var(--fw-space-lg) 0 var(--fw-space-sm);
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.fw-tier-acc__group-title--alt {
    color: var(--fw-text-light);
    border-color: rgba(0, 0, 0, 0.05);
    border-bottom-style: dashed;
}

.fw-tier-acc__group-intro {
    color: var(--fw-text-light);
    font-size: 0.95rem;
    margin: 0 0 var(--fw-space-sm);
}

/* FEATURE ------------------------------------- */

.fw-tier-acc__feature {
    display: flex;
    gap: var(--fw-space-sm);
    padding: var(--fw-space-sm) var(--fw-space-md);
    align-items: flex-start;
}

.fw-tier-acc__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fw-success, #00b894);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 3px;
}

.fw-tier-acc__feature--info .fw-tier-acc__feature-icon {
    background: #f5a623;
}

.fw-tier-acc__feature--neutral .fw-tier-acc__feature-icon {
    background: rgba(0, 0, 0, 0.25);
}

.fw-tier-acc__feature-body {
    flex: 1;
    line-height: 1.55;
    min-width: 0;
}

.fw-tier-acc__feature-body strong {
    display: block;
    color: var(--fw-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.fw-tier-acc__feature-body p {
    color: var(--fw-text);
    font-size: 0.94rem;
    margin: 0;
}

.fw-tier-acc__claim {
    color: var(--fw-accent) !important;
    font-style: italic;
    font-size: 1.02rem !important;
    margin-top: 6px !important;
    font-weight: 600;
}

/* Subgroup label "La fel ca la abonamentul anterior primești:" */

.fw-tier-acc__subgroup-label {
    margin: var(--fw-space-md) 0 var(--fw-space-sm);
    padding: 0 var(--fw-space-md);
    color: var(--fw-text-light);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
}

/* "Suplimentar pe acest abonament" divider + upgrade group */

.fw-tier-acc__upgrade-divider {
    margin: var(--fw-space-lg) 0 var(--fw-space-md);
    padding: 14px var(--fw-space-md);
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.12), rgba(0, 184, 148, 0.04));
    border-radius: 12px;
    border-left: 5px solid var(--fw-success);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 184, 148, 0.10);
}

.fw-tier-acc__upgrade-label {
    font-family: var(--fw-font-display);
    font-size: 1rem;
    font-weight: 800;
    color: #008060;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    line-height: 1.3;
}

.fw-tier-acc__feature--highlight {
    background: rgba(108, 92, 231, 0.04);
    border-radius: 12px;
    padding: var(--fw-space-sm) var(--fw-space-md);
    margin: 4px 0;
}

.fw-tier-acc__feature--ai {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(233, 69, 96, 0.04));
    border: 1px solid rgba(108, 92, 231, 0.18);
}

.fw-tier-acc__feature--upgrade {
    background: rgba(0, 184, 148, 0.07);
    border-left: 3px solid var(--fw-success);
    border-radius: 0 12px 12px 0;
    padding: var(--fw-space-sm) var(--fw-space-md);
    margin: 6px 0;
}

.fw-tier-acc__feature--upgrade .fw-tier-acc__feature-icon {
    background: var(--fw-success);
}

/* LIST nested ---------------------------- */

.fw-tier-acc__list {
    margin: 8px 0 0;
    padding-left: 22px;
    color: var(--fw-text);
    font-size: 0.94rem;
}

.fw-tier-acc__list li {
    margin: 4px 0;
}

/* NOTE BOX (technical explanation) ---------- */

.fw-tier-acc__note-box {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: var(--fw-space-sm) var(--fw-space-md);
    margin-top: var(--fw-space-sm);
    font-size: 0.9rem;
    line-height: 1.55;
}

.fw-tier-acc__note-box strong {
    display: block;
    margin-bottom: 6px;
    color: var(--fw-primary);
    font-size: 0.93rem;
}

.fw-tier-acc__note-box p {
    margin: 0;
    color: var(--fw-text);
}

/* WARNING BOX (integrations cautionary) ---- */

.fw-tier-acc__warning-box {
    background: rgba(245, 166, 35, 0.10);
    border-left: 4px solid #f5a623;
    border-radius: 12px;
    padding: var(--fw-space-sm) var(--fw-space-md);
    margin-top: var(--fw-space-sm);
    font-size: 0.9rem;
    line-height: 1.55;
}

.fw-tier-acc__warning-box strong {
    display: block;
    margin-bottom: 6px;
    color: #a86a00;
    font-size: 0.95rem;
}

.fw-tier-acc__warning-box p {
    margin: 0 0 6px;
    color: var(--fw-text);
}

.fw-tier-acc__warning-box p:last-child {
    margin-bottom: 0;
}

/* CTA BOTTOM -------------------------------- */

.fw-tier-acc__cta-bottom {
    margin-top: var(--fw-space-xl);
    padding-top: var(--fw-space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.fw-tier-acc__cta-bottom .fw-btn {
    width: 100%;
    max-width: 420px;
}

/* DESKTOP RESPONSIVE ------------------------- */

@media (min-width: 768px) {
    .fw-tier-acc__head {
        flex-direction: row;
        align-items: center;
        padding: var(--fw-space-md) var(--fw-space-lg);
        gap: var(--fw-space-md);
    }

    .fw-tier-acc__toggle {
        flex: 1;
        grid-template-columns: 1fr auto;
        gap: var(--fw-space-sm) var(--fw-space-md);
        align-items: center;
    }

    .fw-tier-acc__name {
        font-size: 1.4rem;
    }

    .fw-tier-acc__amount {
        font-size: 1.7rem;
    }

    .fw-tier-acc__period {
        font-size: 0.92rem;
    }

    .fw-tier-acc__cta-head {
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .fw-tier-acc__body-inner {
        padding: 0 var(--fw-space-lg) var(--fw-space-lg);
    }

    .fw-tier-acc__hook {
        padding: var(--fw-space-md) var(--fw-space-lg);
    }

    .fw-tier-acc__hook-text {
        font-size: 1.08rem;
    }
}
