: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.92);
    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: 120px;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 55% at 70% 40%, rgba(226, 55, 68, 0.11) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 15% 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.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 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.11);
    top: 8%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(226, 55, 68, 0.06);
    bottom: 22%;
    right: 30%;
    animation-delay: 3s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 100, 60, 0.07);
    top: 60%;
    right: 2%;
    animation-delay: 5s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-26px) scale(1.04);
    }
}

.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.75;
    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: 56px;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--muted);
}

.trust-pill .tp-icon {
    font-size: 15px;
}

.trust-pill strong {
    color: var(--light);
    font-weight: 500;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ABOUT CARD VISUAL */
.hero-visual {
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(226, 55, 68, 0.13) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ac-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.ac-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.ac-brand {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--light);
}

.ac-tagline {
    font-size: 11px;
    color: var(--muted);
}

.ac-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #25D366;
    margin-left: auto;
}

.ac-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s infinite;
}

.ac-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.ac-stat {
    background: var(--dark3);
    border-radius: 14px;
    padding: 16px 14px;
}

.ac-stat-v {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}

.ac-stat-l {
    font-size: 11px;
    color: var(--muted);
}

.ac-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.ac-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--dark3);
    border-radius: 10px;
    transition: all 0.3s;
}

.ac-service:hover {
    background: rgba(226, 55, 68, 0.08);
    border-color: rgba(226, 55, 68, 0.2);
}

.ac-service-icon {
    font-size: 16px;
}

.ac-service-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.ac-service-arr {
    font-size: 12px;
    color: var(--red);
}

.ac-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.ac-city {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.ac-clients {
    display: flex;
}

.ac-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--card);
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--red);
    margin-left: -6px;
}

.ac-avatar:first-child {
    margin-left: 0;
}

.ac-clients-count {
    font-size: 11px;
    color: var(--muted);
    margin-left: 8px;
}

/* ─── STORY ─── */
#story {
    padding: 80px 0;
    background: var(--dark2);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {}

.story-text .tag {
    margin-bottom: 20px;
}

.story-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 32px;
}

.story-body p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}

.story-body p strong {
    color: var(--text);
    font-weight: 500;
}

.story-body p em {
    color: var(--red);
    font-style: normal;
    font-weight: 500;
}

.story-quote {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(226, 55, 68, 0.06);
    border-left: 3px solid var(--red);
    border-radius: 0 12px 12px 0;
    font-size: 17px;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    font-weight: 300;
}

.story-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--red);
    font-style: normal;
    font-weight: 600;
}

/* TIMELINE */
.story-timeline {}

.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(226, 55, 68, 0.4), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.tl-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(226, 55, 68, 0.1);
    border: 2px solid rgba(226, 55, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.timeline-item:hover .tl-dot {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 6px 20px var(--red-glow);
}

.tl-content {
    flex: 1;
}

.tl-year {
    font-size: 11px;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.tl-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.tl-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── WHAT WE DO ─── */
#services {
    padding: 80px 0;
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.service-card {
    background: var(--card);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.service-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;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(226, 55, 68, 0.2);
}

.service-card:hover .sc-arrow {
    transform: translateX(4px);
    color: var(--red);
}

.sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    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: 24px;
    margin-bottom: 22px;
    transition: all 0.4s;
}

.service-card:hover .sc-icon {
    background: var(--red);
    border-color: var(--red);
}

.sc-num {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    color: rgba(226, 55, 68, 0.4);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sc-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 10px;
}

.sc-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.sc-tag {
    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.15);
}

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.sc-link {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.sc-arrow {
    font-size: 16px;
    color: var(--muted);
    transition: all 0.3s;
}

/* ─── APPROACH ─── */
#approach {
    padding: 80px 0;
    background: var(--dark2);
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.approach-left {}

.approach-left .tag {
    margin-bottom: 20px;
}

.approach-left .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.approach-left .section-sub {
    text-align: left;
    margin: 0 0 36px;
}

.approach-pillars {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--border);
}

.ap-pillar {
    background: var(--card);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.ap-pillar.active {
    background: var(--dark3);
}

.ap-pillar.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
}

.ap-pillar:hover {
    background: var(--dark3);
}

.ap-icon {
    font-size: 22px;
    width: 44px;
    text-align: center;
    flex-shrink: 0;
}

.ap-label {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--light);
}

.ap-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.ap-chevron {
    margin-left: auto;
    font-size: 14px;
    color: var(--muted);
    transition: transform 0.3s;
}

.ap-pillar.active .ap-chevron {
    transform: rotate(90deg);
    color: var(--red);
}

.approach-right {}

.approach-detail {
    display: none;
}

.approach-detail.active {
    display: block;
    animation: fadeSlideUp 0.4s ease;
}

.approach-detail-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ad-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.ad-title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 12px;
}

.ad-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ad-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ad-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.ad-points li::before {
    content: '→';
    color: var(--red);
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 1px;
}

/* ─── RESULTS ─── */
#results {
    padding: 80px 0;
    background: var(--dark);
}

.results-grid {
    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: 64px;
}

.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: 52px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.rstat .rdesc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
}

.trust-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-card {
    background: var(--card);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.trust-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom, rgba(226, 55, 68, 0.04) 0%, transparent 70%);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(226, 55, 68, 0.18);
}

.trust-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── WHY ─── */
#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: 36px 32px;
    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(-5px);
    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: 60px;
    font-weight: 800;
    color: rgba(226, 55, 68, 0.06);
    line-height: 1;
    margin-bottom: -10px;
}

.why-icon {
    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 {
    background: var(--red);
}

.why-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

/* ─── TEAM ─── */
#team {
    padding: 80px 0;
    background: var(--dark);
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-text .tag {
    margin-bottom: 20px;
}

.team-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.team-body {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 28px;
}

.team-body strong {
    color: var(--text);
    font-weight: 500;
}

.team-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.tv-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
}

.tv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.team-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founder-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s;
}

.founder-card:hover::before {
    transform: scaleY(1);
}

.founder-card:hover {
    border-color: rgba(226, 55, 68, 0.2);
    transform: translateX(6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.3) 0%, rgba(226, 55, 68, 0.05) 100%);
    border: 2px solid rgba(226, 55, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 3px;
}

.founder-role {
    font-size: 12px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 6px;
}

.founder-bio {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.founder-socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.fs-link {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--dark3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--muted);
}

.fs-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(226, 55, 68, 0.1);
}

.team-message {
    background: rgba(226, 55, 68, 0.06);
    border: 1px solid rgba(226, 55, 68, 0.2);
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 20px;
}

.team-message p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
}

.team-message cite {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--red);
    font-style: normal;
    font-weight: 600;
}

/* ─── CTA ─── */
#cta {
    padding: 80px 0;
    background: var(--dark2);
    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.14) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(36px, 5vw, 70px);
    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;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.cta-trust-item .cti-icon {
    color: var(--red);
    font-size: 14px;
}

/* ─── 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);
    text-decoration: none;
    animation: float-btn 3s ease-in-out infinite;
}

.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;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .approach-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-banner {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .team-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-trust-row {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .results-grid {
        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;
    }

    .hero-trust-row {
        gap: 16px;
    }
}