:root {
    --red: #E23744;
    --red-dark: #b82d38;
    --red-glow: rgba(226, 55, 68, 0.3);
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #181818;
    --card: #141414;
    --border: rgba(255, 255, 255, 0.07);
    --text: #f0f0f0;
    --muted: #888;
    --light: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-block;
    background: rgba(226, 55, 68, 0.12);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.3);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--red-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb span {
    color: var(--red);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 65% 40%, rgba(226, 55, 68, 0.13) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 15% 70%, rgba(226, 55, 68, 0.06) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
    width: 280px;
    height: 280px;
    background: rgba(226, 55, 68, 0.14);
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(226, 55, 68, 0.07);
    bottom: 25%;
    right: 28%;
    animation-delay: 3s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 100, 60, 0.09);
    top: 50%;
    right: 3%;
    animation-delay: 5s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1.05);
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.3);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease both;
}

.dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(32px, 3vw, 50px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title .accent {
    color: var(--red);
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--red);
    margin-left: -8px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 13px;
    color: var(--muted);
}

.trust-text strong {
    color: var(--light);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO VISUAL — PLATFORM LISTING MOCKUP */
.hero-visual {
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.listing-mockup {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
}

.listing-mockup::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(226, 55, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lm-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lm-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark3);
    border-radius: 8px;
    padding: 8px 14px;
    flex: 1;
    margin-right: 12px;
}

.lm-search span {
    font-size: 12px;
    color: var(--muted);
}

.lm-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #25D366;
}

.lm-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s ease infinite;
}

.lm-body {
    padding: 20px;
}

.lm-card {
    background: var(--dark3);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
}

.lm-img {
    height: 100px;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.3) 0%, rgba(226, 55, 68, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

.lm-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.lm-info {
    padding: 12px 14px;
}

.lm-name {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 4px;
}

.lm-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 8px;
}

.lm-rating {
    color: #F5A623;
    font-weight: 600;
}

.lm-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lm-tag {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(226, 55, 68, 0.1);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.2);
}

.lm-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
}

.lm-stat {
    background: var(--card);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.lm-stat .sv {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--red);
}

.lm-stat .sl {
    font-size: 10px;
    color: var(--muted);
    margin-top: 1px;
}

.lm-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.lm-status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #25D366;
}

.lm-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s ease infinite;
}

.lm-orders {
    font-size: 12px;
    color: var(--muted);
}

.lm-orders strong {
    color: var(--text);
}

/* PAIN SECTION */
#pain {
    padding: 80px 0;
    background: var(--dark2);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pain-card {
    background: var(--card);
    padding: 36px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pain-card:hover::before {
    transform: scaleX(1);
}

.pain-card:hover {
    background: var(--dark3);
}

.pain-emoji {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.pain-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.pain-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--red);
    background: rgba(226, 55, 68, 0.1);
    border-radius: 100px;
    padding: 3px 10px;
    margin-top: 14px;
}

/* SOLUTION */
#solution {
    padding: 80px 0;
    background: var(--dark);
}

.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-list {}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.5s ease;
}

.solution-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.solution-item:last-child {
    border-bottom: none;
}

.sol-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.2);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s;
}

.solution-item:hover .sol-icon {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 8px 24px var(--red-glow);
}

.sol-text h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--light);
}

.sol-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.solution-visual {
    position: relative;
}

/* CHECKLIST CARD */
.checklist-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.checklist-title {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.check-item:last-child {
    border-bottom: none;
}

.check-item:hover {
    padding-left: 6px;
}

.check-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.check-circle.done {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.check-circle.active {
    background: rgba(226, 55, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.3);
    animation: pulse 1.5s infinite;
}

.check-circle.pending {
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    border: 1px solid var(--border);
}

.check-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.check-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

.check-badge {
    margin-left: auto;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
}

.check-badge.green {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.check-badge.red {
    background: rgba(226, 55, 68, 0.12);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.25);
}

.check-badge.gray {
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    border: 1px solid var(--border);
}

/* WHAT YOU GET */
#whatyouget {
    padding: 80px 0;
    background: var(--dark2);
}

.get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.get-card {
    background: var(--card);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.get-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.get-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(226, 55, 68, 0.25);
}

.get-card:hover::after {
    opacity: 1;
}

.get-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.2);
    transition: all 0.4s;
}

.get-card:hover .get-icon {
    background: var(--red);
    border-color: var(--red);
}

.get-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--light);
}

.get-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* PROCESS */
#process {
    padding: 80px 0;
    background: var(--dark);
}

.process-steps {
    position: relative;
    margin-top: 64px;
}

.process-line {
    position: absolute;
    top: 32px;
    left: calc(10% + 16px);
    right: calc(10% + 16px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-line-fill {
    height: 100%;
    background: var(--red);
    width: 0;
    transition: width 2s ease;
    border-radius: 2px;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.proc-step {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.proc-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.proc-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.proc-step.active .proc-circle {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 8px 28px var(--red-glow);
}

.proc-step:hover .proc-circle {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 8px 28px var(--red-glow);
    transform: scale(1.1);
}

.proc-step-num {
    font-size: 11px;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.proc-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.proc-step p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* RESULTS */
#results {
    padding: 80px 0;
    background: var(--dark2);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 60px;
}

.rstat {
    background: var(--card);
    padding: 40px 28px;
    text-align: center;
    transition: background 0.3s;
}

.rstat:hover {
    background: var(--dark3);
}

.rstat .rnum {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.rstat .rdesc {
    font-size: 14px;
    color: var(--muted);
}

/* CASE STUDY */
#cases {
    padding: 80px 0;
    background: var(--dark);
}

.case-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
    align-items: stretch;
}

.case-before,
.case-after {
    background: var(--card);
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.case-before:hover,
.case-after:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.case-before {
    border-left: 4px solid #333;
}

.case-after {
    border-left: 4px solid var(--red);
}

.case-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.pill-before {
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    border: 1px solid var(--border);
}

.pill-after {
    background: rgba(226, 55, 68, 0.12);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.3);
}

.case-restaurant {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: var(--light);
    margin-bottom: 6px;
}

.case-type {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
}

.case-list {
    list-style: none;
}

.case-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.case-list li:last-child {
    border-bottom: none;
}

.case-list li .ci {
    flex-shrink: 0;
    font-size: 16px;
}

.case-metrics-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.cam {
    background: var(--dark3);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
}

.cam .cv {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--red);
}

.cam .cl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.arrow-between {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--red);
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {

    0%,
    100% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.1) translateX(4px);
    }
}

.case-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WHY */
#why {
    padding: 80px 0;
    background: var(--dark2);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.why-card {
    background: var(--card);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(226, 55, 68, 0.15);
}

.why-num {
    font-family: 'Syne', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: rgba(226, 55, 68, 0.07);
    line-height: 1;
    margin-bottom: -12px;
}

.why-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(226, 55, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: all 0.4s;
}

.why-card:hover .why-icon-wrap {
    background: var(--red);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* CTA */
#cta {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

#cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(226, 55, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FAQ */
#faq {
    padding: 80px 0;
    background: var(--dark2);
}

.faq-list {
    margin-top: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(226, 55, 68, 0.3);
}

.faq-question {
    width: 100%;
    background: var(--card);
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--dark3);
}

.faq-item.open .faq-question {
    background: var(--dark3);
}

.faq-q-text {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
}

.faq-chevron {
    font-size: 18px;
    color: var(--red);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(45deg);
}

.faq-answer {
    background: var(--card);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 220px;
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--muted);
}

.social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(226, 55, 68, 0.1);
}

.footer-col h5 {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    animation: float-btn 3s ease-in-out infinite;
    text-decoration: none;
    transition: transform 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes float-btn {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .solution-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .steps-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line {
        display: none;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-story {
        grid-template-columns: 1fr;
    }

    .case-arrow-wrapper {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .steps-row {
        grid-template-columns: 1fr 1fr;
    }

    .results-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .steps-row {
        grid-template-columns: 1fr;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
    }

    .get-grid {
        grid-template-columns: 1fr;
    }
}