: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-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;
}

/* ─── 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% 55% at 55% 35%, rgba(226, 55, 68, 0.13) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 65%, 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: 320px;
    height: 320px;
    background: rgba(226, 55, 68, 0.12);
    top: 8%;
    right: 4%;
    animation-delay: 0s;
}

.shape-2 {
    width: 220px;
    height: 220px;
    background: rgba(226, 55, 68, 0.07);
    bottom: 18%;
    right: 28%;
    animation-delay: 3s;
}

.shape-3 {
    width: 160px;
    height: 160px;
    background: rgba(255, 100, 60, 0.07);
    top: 55%;
    left: 3%;
    animation-delay: 5.5s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1.05);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.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(38px, 5.5vw, 76px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title .accent {
    color: var(--red);
}

.hero-sub {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
    margin-bottom: 64px;
}

.hero-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-pill {
    font-size: 13px;
    color: var(--muted);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SERVICES GRID ─── */
#services {
    padding: 80px 0;
    background: var(--dark2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.svc-card {
    background: var(--card);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 44px 40px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.07) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
}

.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(226, 55, 68, 0.08);
    border-color: rgba(226, 55, 68, 0.25);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.svc-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    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: 28px;
    transition: all 0.4s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.svc-card:hover .svc-icon-wrap {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 12px 36px var(--red-glow);
    transform: rotate(-6deg) scale(1.08);
}

.svc-num {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: rgba(226, 55, 68, 0.06);
    line-height: 1;
    transition: color 0.4s;
}

.svc-card:hover .svc-num {
    color: rgba(226, 55, 68, 0.12);
}

.svc-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--light);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.svc-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.svc-tag {
    font-size: 11px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 12px;
    transition: all 0.3s;
}

.svc-card:hover .svc-tag {
    color: var(--red);
    border-color: rgba(226, 55, 68, 0.25);
    background: rgba(226, 55, 68, 0.06);
}

.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    transition: gap 0.3s;
    position: relative;
    z-index: 1;
}

.svc-cta-arrow {
    transition: transform 0.3s;
}

.svc-card:hover .svc-cta {
    gap: 14px;
}

.svc-card:hover .svc-cta-arrow {
    transform: translateX(4px);
}

.svc-divider {
    width: 40px;
    height: 2px;
    background: rgba(226, 55, 68, 0.3);
    border-radius: 2px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: width 0.4s;
}

.svc-card:hover .svc-divider {
    width: 80px;
    background: var(--red);
}

/* ─── HOW THEY WORK TOGETHER ─── */
#synergy {
    padding: 80px 0;
    background: var(--dark);
}

.synergy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.synergy-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.5s ease;
}

.flow-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.flow-step:last-child {
    border-bottom: none;
}

.flow-connector {
    position: absolute;
    left: 27px;
    top: 76px;
    bottom: -1px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), transparent);
    display: none;
}

.flow-step:not(:last-child) .flow-connector {
    display: block;
}

.flow-num {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    flex-shrink: 0;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.flow-step:hover .flow-num {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 8px 28px var(--red-glow);
    transform: scale(1.1);
}

.flow-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.flow-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.flow-pill {
    display: inline-block;
    font-size: 11px;
    color: var(--red);
    background: rgba(226, 55, 68, 0.08);
    border-radius: 100px;
    padding: 3px 10px;
    margin-top: 10px;
    border: 1px solid rgba(226, 55, 68, 0.2);
}

/* ECOSYSTEM VISUAL */
.ecosystem-visual {
    position: relative;
}

.eco-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.eco-title {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
}

.eco-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 16px rgba(226, 55, 68, 0.1), 0 0 0 32px rgba(226, 55, 68, 0.05);
    animation: eco-pulse 3s ease-in-out infinite;
}

@keyframes eco-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 16px rgba(226, 55, 68, 0.1), 0 0 0 32px rgba(226, 55, 68, 0.05);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(226, 55, 68, 0.15), 0 0 0 40px rgba(226, 55, 68, 0.04);
    }
}

.eco-center-label {
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 28px;
}

.eco-spokes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.eco-spoke {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    transition: all 0.3s;
}

.eco-spoke:hover {
    border-color: rgba(226, 55, 68, 0.3);
    background: rgba(226, 55, 68, 0.06);
    transform: scale(1.03);
}

.eco-spoke-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.eco-spoke-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.eco-spoke-role {
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px;
}

.eco-arrow {
    text-align: center;
    color: var(--red);
    font-size: 20px;
    margin: 8px 0;
    opacity: 0.5;
}

.eco-result {
    background: rgba(226, 55, 68, 0.08);
    border: 1px solid rgba(226, 55, 68, 0.25);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    margin-top: 16px;
}

.eco-result-val {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
}

.eco-result-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

/* ─── WHY GROWDEXIFY ─── */
#why {
    padding: 80px 0;
    background: var(--dark2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.why-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px 36px;
    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: 72px;
    font-weight: 800;
    color: rgba(226, 55, 68, 0.06);
    line-height: 1;
    margin-bottom: -10px;
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(226, 55, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.why-card:hover .why-icon-wrap {
    background: var(--red);
    box-shadow: 0 8px 24px var(--red-glow);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── 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: 44px 28px;
    text-align: center;
    transition: background 0.3s;
}

.rstat:hover {
    background: var(--dark3);
}

.rstat .rnum {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.rstat .rdesc {
    font-size: 14px;
    color: var(--muted);
}

/* RESULT CARDS */
.result-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.rc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.rc:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(226, 55, 68, 0.25);
}

.rc:hover::after {
    opacity: 1;
}

.rc-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}

.rc h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.rc p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── CTA ─── */
#cta {
    padding: 80px 0;
    background: var(--dark2);
    position: relative;
    overflow: hidden;
}

#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-box {
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.1) 0%, rgba(226, 55, 68, 0.04) 100%);
    border: 1px solid rgba(226, 55, 68, 0.25);
    border-radius: 28px;
    padding: 72px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(226, 55, 68, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cta-sub {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 48px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ─── FAQ ─── */
#faq {
    padding: 80px 0;
    background: var(--dark);
}

.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 */
.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) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .synergy-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .results-stats {
        grid-template-columns: 1fr 1fr;
    }

    .result-cards {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        padding: 48px 28px;
    }
}

@media (max-width: 480px) {
    .results-stats {
        grid-template-columns: 1fr;
    }

    .result-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .svc-card {
        padding: 28px 24px;
    }
}