: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;
}

.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);
}

.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;
}

.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);
}

/* ─── 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.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 60%, rgba(226, 55, 68, 0.05) 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: 300px;
    height: 300px;
    background: rgba(226, 55, 68, 0.13);
    top: 10%;
    right: 6%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(226, 55, 68, 0.07);
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.shape-3 {
    width: 140px;
    height: 140px;
    background: rgba(255, 100, 60, 0.08);
    top: 55%;
    right: 2%;
    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 440px;
    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);
    }
}

/* BROWSER MOCKUP */
.hero-visual {
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.browser-mockup {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
}

.browser-mockup::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(226, 55, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.browser-bar {
    background: var(--dark3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bd-red {
    background: #FF5F57;
}

.bd-yellow {
    background: #FFBD2E;
}

.bd-green {
    background: #28C840;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-url-lock {
    color: #25D366;
    font-size: 9px;
}

.browser-score {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.speed-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s infinite;
}

.browser-content {
    padding: 0;
}

/* Mini website preview */
.site-nav-bar {
    background: rgba(226, 55, 68, 0.95);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo-mini {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.site-nav-links {
    display: flex;
    gap: 12px;
}

.site-nav-links span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.site-nav-order {
    background: #fff;
    color: var(--red);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: 'Syne', sans-serif;
}

.site-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
}

.site-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(226, 55, 68, 0.2), transparent 70%);
}

.site-hero-tag {
    display: inline-block;
    background: rgba(226, 55, 68, 0.15);
    border: 1px solid rgba(226, 55, 68, 0.3);
    color: var(--red);
    font-size: 7px;
    padding: 2px 8px;
    border-radius: 100px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.site-hero-h {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
    position: relative;
}

.site-hero-sub {
    font-size: 8px;
    color: #aaa;
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    max-width: 200px;
}

.site-hero-btns {
    display: flex;
    gap: 6px;
    position: relative;
}

.site-btn-r {
    background: var(--red);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Syne', sans-serif;
}

.site-btn-o {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 8px;
    padding: 5px 10px;
    border-radius: 4px;
}

.site-hero-img {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 100px;
    height: 80px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.3), rgba(226, 55, 68, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.site-menu-section {
    padding: 12px 16px;
    background: var(--dark);
}

.site-menu-title {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 10px;
}

.site-menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.site-menu-item {
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.site-menu-img {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.site-menu-img-1 {
    background: linear-gradient(135deg, #2a1a0a, #1a0a00);
}

.site-menu-img-2 {
    background: linear-gradient(135deg, #0a1a2a, #001020);
}

.site-menu-img-3 {
    background: linear-gradient(135deg, #1a2a0a, #0a1a00);
}

.site-menu-info {
    padding: 5px 7px;
}

.site-menu-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.site-menu-price {
    font-size: 8px;
    color: var(--red);
    font-weight: 700;
}

.site-menu-add {
    float: right;
    background: var(--red);
    color: #fff;
    font-size: 7px;
    padding: 1px 5px;
    border-radius: 3px;
    margin-top: -14px;
}

.site-stats-bar {
    display: flex;
    background: rgba(226, 55, 68, 0.08);
    border-top: 1px solid var(--border);
}

.site-stat {
    flex: 1;
    padding: 8px 4px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.site-stat:last-child {
    border-right: none;
}

.site-stat-v {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--red);
}

.site-stat-l {
    font-size: 7px;
    color: var(--muted);
}

.site-wa-button {
    background: #25D366;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.site-wa-button span {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    font-family: 'Syne', sans-serif;
}

/* ─── PAIN ─── */
#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-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);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s;
}

.solution-item:hover .sol-icon {
    background: var(--red);
    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;
}

/* MOBILE PREVIEW */
.mobile-preview-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 220px;
    background: #0d0d0d;
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    animation: phone-float 4s ease-in-out infinite;
}

@keyframes phone-float {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.phone-notch {
    height: 24px;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-notch-dot {
    width: 60px;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.phone-screen {
    background: var(--dark);
}

.ph-nav {
    background: var(--red);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ph-logo {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
}

.ph-menu-icon {
    font-size: 12px;
}

.ph-hero {
    padding: 14px 12px 10px;
    background: linear-gradient(160deg, #0f0f0f, #1a0505);
    position: relative;
    overflow: hidden;
}

.ph-hero-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(226, 55, 68, 0.25), transparent 70%);
}

.ph-hero-label {
    font-size: 7px;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ph-hero-h {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 4px;
}

.ph-hero-sub {
    font-size: 7px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 10px;
}

.ph-hero-btn {
    background: var(--red);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    padding: 5px 12px;
    border-radius: 5px;
    display: inline-block;
}

.ph-food-img {
    position: absolute;
    right: 8px;
    top: 10px;
    width: 60px;
    height: 55px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.25), rgba(226, 55, 68, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ph-menu {
    padding: 10px 12px;
}

.ph-menu-label {
    font-size: 8px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    color: var(--light);
    margin-bottom: 8px;
}

.ph-cats {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    overflow-x: hidden;
}

.ph-cat {
    font-size: 7px;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(226, 55, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.2);
    white-space: nowrap;
}

.ph-cat.active {
    background: var(--red);
    color: #fff;
}

.ph-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ph-item {
    background: var(--card);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
}

.ph-item-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ph-item-img-1 {
    background: linear-gradient(135deg, #2a1200, #1a0a00);
}

.ph-item-img-2 {
    background: linear-gradient(135deg, #001a00, #000d00);
}

.ph-item-info {
    flex: 1;
}

.ph-item-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.ph-item-desc {
    font-size: 6px;
    color: var(--muted);
}

.ph-item-right {
    text-align: right;
}

.ph-item-price {
    font-size: 8px;
    font-weight: 700;
    color: var(--red);
    font-family: 'Syne', sans-serif;
}

.ph-item-add {
    background: var(--red);
    color: #fff;
    font-size: 8px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    margin-left: auto;
}

.ph-wa {
    background: #25D366;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ph-wa span {
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    font-family: 'Syne', sans-serif;
}

.ph-home-bar {
    height: 20px;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-home-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* ─── FEATURES ─── */
#features {
    padding: 100px 0;
    background: var(--dark2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.feature-card {
    background: var(--card);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-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;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(226, 55, 68, 0.25);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-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;
}

.feature-card:hover .feature-icon {
    background: var(--red);
    border-color: var(--red);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--light);
}

.feature-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── WEBSITE TYPES ─── */
#types {
    padding: 100px 0;
    background: var(--dark);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.type-card {
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}

.type-card:hover {
    border-color: rgba(226, 55, 68, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.type-preview {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-preview-inner {
    width: 90%;
    height: 90%;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.type-preview-bar {
    height: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
}

.type-preview-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.type-preview-body {
    height: calc(100% - 20px);
}

.type-preview-body-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.type-preview-header {
    padding: 8px;
}

.type-preview-h {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: var(--light);
}

.type-preview-sub {
    font-size: 7px;
    color: var(--muted);
    margin-top: 2px;
}

.type-preview-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 0 8px 8px;
}

.type-preview-item {
    background: var(--dark3);
    border-radius: 6px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.type-body {
    padding: 24px 28px;
}

.type-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.type-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.type-feat {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(226, 55, 68, 0.08);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.2);
}

.type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

/* ─── PROCESS ─── */
#process {
    padding: 80px 0;
    background: var(--dark2);
}

.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(--dark);
}

.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);
}

.results-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comp-card {
    background: var(--card);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.comp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.comp-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.comp-card.before .comp-dot {
    background: #444;
}

.comp-card.after .comp-dot {
    background: var(--red);
}

.comp-big {
    font-family: 'Syne', sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.comp-card.before .comp-big {
    color: #3a3a3a;
}

.comp-card.after .comp-big {
    color: var(--red);
}

.comp-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.comp-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.comp-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.5s ease 0.3s;
    width: 0;
}

.comp-card.before .comp-fill {
    background: #333;
}

.comp-card.after .comp-fill {
    background: var(--red);
}

.comp-card.animated.before .comp-fill {
    width: 12%;
}

.comp-card.animated.after .comp-fill {
    width: 85%;
}

/* ─── PORTFOLIO ─── */
#portfolio {
    padding: 80px 0;
    background: var(--dark2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.portfolio-card {
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border-color: rgba(226, 55, 68, 0.25);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-screen {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(226, 55, 68, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-overlay-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
}

.portfolio-overlay-btn {
    background: #fff;
    color: var(--red);
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.port-info {
    padding: 20px 22px;
}

.port-name {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 4px;
}

.port-type {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

.port-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.port-tag {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(226, 55, 68, 0.08);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.2);
}

/* Portfolio Screen Designs */
.ps-1 {
    background: linear-gradient(160deg, #0a0a0a, #1a0505);
    padding: 0;
}

.ps-2 {
    background: linear-gradient(160deg, #050a05, #0a1505);
    padding: 0;
}

.ps-3 {
    background: linear-gradient(160deg, #05050a, #0a0515);
    padding: 0;
}

.ps-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
}

.ps-nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
}

.ps-nav-btn {
    font-size: 8px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Syne', sans-serif;
}

.ps-hero-area {
    padding: 10px 14px 14px;
}

.ps-tag {
    font-size: 7px;
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 6px;
}

.ps-headline {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.ps-sub {
    font-size: 7px;
    color: #aaa;
    margin-bottom: 8px;
}

.ps-btn {
    font-size: 8px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    font-family: 'Syne', sans-serif;
}

.ps-food-emoji {
    position: absolute;
    right: 12px;
    top: 36px;
    font-size: 48px;
    opacity: 0.9;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    padding: 0 14px 10px;
}

.ps-item {
    border-radius: 6px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ─── WHY ─── */
#why {
    padding: 80px 0;
    background: var(--dark);
}

.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;
}

/* ─── PRICING ─── */
#pricing {
    padding: 100px 0;
    background: var(--dark2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.price-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--red);
    background: var(--dark3);
    transform: scale(1.04);
    box-shadow: 0 0 60px rgba(226, 55, 68, 0.12);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 0 0 10px 10px;
}

.price-tier {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    margin-top: 12px;
}

.price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
    margin-bottom: 4px;
}

.price-amount sup {
    font-size: 20px;
    vertical-align: top;
    margin-top: 8px;
    color: var(--red);
}

.price-amount .price-plus {
    font-size: 16px;
    color: var(--muted);
}

.price-cycle {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 14px;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.price-features li.na {
    color: var(--muted);
}

.price-features li.na::before {
    content: '–';
    color: #333;
}

.price-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.price-cta.primary {
    background: var(--red);
    color: #fff;
}

.price-cta.primary:hover {
    background: var(--red-dark);
    box-shadow: 0 8px 28px var(--red-glow);
}

.price-cta.outline {
    border: 1.5px solid var(--border);
    color: var(--text);
}

.price-cta.outline:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ─── 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;
}

.faq-item.open .faq-answer {
    max-height: 240px;
}

.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;
}

.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 {
    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;
}

.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;
    }

    .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);
    }

    .results-comparison {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-6px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .types-grid {
        grid-template-columns: 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;
    }

    .portfolio-grid {
        grid-template-columns: 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,
    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        align-items: center;
    }
}