* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF6B35;
    --dark: #0A0A0A;
    --gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --white: #FFFFFF;
    --accent: #FFB088;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ===================== Background ===================== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--orange) 35px, var(--orange) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--orange) 35px, var(--orange) 36px);
    animation: slide 60s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange), transparent);
    opacity: 0.05;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

/* ===================== Header / Nav ===================== */
header {
    position: sticky;
    top: 0;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
    transition: all 0.3s ease;
    gap: 1rem;
}

header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo-image {
    height: 52px;
    width: auto;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--orange);
}

.nav-cta {
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.2s;
}

.mobile-link:hover {
    color: var(--orange);
}

.mobile-link.cta-button {
    color: var(--dark);
    font-size: 1rem;
    margin-top: 1rem;
}

/* ===================== Buttons ===================== */
.cta-button {
    background: var(--orange);
    color: var(--dark);
    padding: 0.85rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.secondary-button {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border: 2px solid var(--orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--orange);
    color: var(--dark);
}

/* ===================== Hero ===================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 2;
    overflow: hidden;
}

/* Diagonal background split */
.hero::before {
    display: none;
}

/* Split container */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left: text side */
.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.9s ease;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--orange);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.9s ease 0.15s both;
}

.hero h1 .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--orange);
    opacity: 0.25;
    animation: expandWidth 1.2s ease 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #999;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 520px;
    animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.5s both;
}

/* Trust pills below buttons */
.hero-trust {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
    animation: fadeInUp 0.9s ease 0.65s both;
}

.hero-trust-item {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* ===================== Hero Image Panel (right side) ===================== */
.hero-image-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-va-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 25%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 25%);
    display: block;
}

/* Bottom diagonal decoration (visual separator toward stats section) */
.hero-diagonal {
    display: none;
}

/* ===================== Stats ===================== */
.stats {
    position: relative;
    padding: 4rem 5%;
    background: var(--gray);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #999;
    font-weight: 300;
}

/* ===================== Section Shared ===================== */
.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* ===================== Services ===================== */
.services {
    position: relative;
    padding: 6rem 5%;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-card p {
    color: #999;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.service-details {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--light-gray);
}

.service-details h4 {
    font-size: 0.9rem;
    color: var(--orange);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: #999;
    font-size: 0.92rem;
}

.service-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover .service-details li::before {
    transform: translateX(4px);
}

.service-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--dark);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===================== How It Works ===================== */
.how-it-works {
    position: relative;
    padding: 6rem 5%;
    background: var(--gray);
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.step-card {
    background: var(--dark);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    transform: translateY(-6px);
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #999;
    font-size: 0.92rem;
    line-height: 1.65;
    font-weight: 300;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--accent));
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
    position: relative;
}

.step-connector.visible {
    opacity: 0.5;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--accent);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ===================== Pricing ===================== */
.pricing {
    position: relative;
    padding: 6rem 5%;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.1);
}

.pricing-featured {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 176, 136, 0.03));
    box-shadow: 0 0 0 1px var(--orange);
}

.pricing-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--dark);
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.price-from {
    font-size: 0.8rem;
    color: #777;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--white);
}

.price-period {
    font-size: 1rem;
    color: #777;
}

.pricing-desc {
    color: #888;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    min-height: 50px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.55rem 0;
    color: #bbb;
    font-size: 0.93rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 2.5rem;
    font-style: italic;
}

.pricing-subtitle {
    display: inline-block;
    background: rgba(255, 107, 53, 0.12);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.pricing-tier {
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    margin-bottom: 0.4rem !important;
}

.pricing-meta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pricing-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.87rem;
}

.pricing-meta-item span {
    color: #777;
}

.pricing-meta-item strong {
    color: var(--white);
    font-weight: 600;
}

.pricing-features li.pricing-addon {
    color: #777;
    font-style: italic;
    font-size: 0.88rem;
}

.pricing-features li.pricing-addon em {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
}

.pricing-features li.pricing-bonus {
    color: #5dce88;
    font-weight: 600;
    font-size: 0.93rem;
}

/* ===================== Benefits ===================== */
.benefits {
    position: relative;
    padding: 6rem 5%;
    background: var(--gray);
    z-index: 2;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--orange);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.benefit-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.benefit-content p {
    color: #999;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Benefits visual */
.benefits-visual {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 176, 136, 0.03));
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.benefits-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.visual-content {
    position: relative;
    z-index: 1;
}

/* Map visual */
.map-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.map-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.map-dot {
    width: 14px;
    height: 14px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.25);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.1);
    }
}

.map-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.map-line-inner {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--orange), var(--accent));
    position: relative;
    animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.map-line-label {
    font-size: 0.78rem;
    color: var(--orange);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.visual-stat {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.visual-stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}

.visual-stat-label {
    font-size: 0.78rem;
    color: #777;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2.5s ease-out infinite;
    opacity: 0.15;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ===================== Testimonials ===================== */
.testimonials {
    position: relative;
    padding: 6rem 5%;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.08);
    transform: translateY(-6px);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #c0c0c0;
    line-height: 1.75;
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.2rem;
}

/* ===================== FAQ ===================== */
.faq {
    position: relative;
    padding: 6rem 5%;
    background: var(--gray);
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--dark);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active {
    border-color: rgba(255, 107, 53, 0.4);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
    padding: 0 1.6rem 1.4rem;
    color: #999;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===================== Contact Form ===================== */
.contact-section {
    position: relative;
    padding: 6rem 5%;
    z-index: 2;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-col h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.contact-info-col>p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #bbb;
    font-size: 0.95rem;
}

.contact-detail-icon {
    font-size: 1.2rem;
}

.contact-detail-item a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail-item a:hover {
    color: var(--orange);
}

/* Form */
.contact-form {
    background: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23777' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L1 4h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    border: none;
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
}

.form-success {
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: var(--orange);
    font-weight: 600;
    text-align: center;
}

/* ===================== Footer ===================== */
footer {
    position: relative;
    background: var(--gray);
    border-top: 1px solid var(--light-gray);
    z-index: 2;
    padding: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
}

.footer-brand>p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--dark);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding: 1.5rem 5%;
    text-align: center;
}

.footer-bottom p {
    color: #444;
    font-size: 0.85rem;
}

/* ===================== WhatsApp Button ===================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: waBounce 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes waBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ===================== Scroll Animations ===================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Override for benefit-item (x-axis animation already defined above) */
.benefit-item[data-animate] {
    transform: translateX(-30px);
}

.benefit-item[data-animate].visible {
    transform: translateX(0);
}

.benefits-visual[data-animate] {
    transform: translateX(30px);
}

.benefits-visual[data-animate].visible {
    transform: translateX(0);
}

.step-connector[data-animate] {
    opacity: 0;
    transform: none;
}

.step-connector[data-animate].visible {
    opacity: 0.45;
}

/* ===================== Responsive ===================== */
@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .step-connector {
        width: 100%;
        height: 0;
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================== Our Nearshore Model ===================== */
.our-model {
    position: relative;
    padding: 6rem 5%;
    background: var(--gray);
    z-index: 2;
}

.model-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.model-intro {
    color: #999;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.model-intro strong {
    color: var(--white);
    font-weight: 600;
}

.model-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 2rem;
}

.model-pillar {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--dark);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
}

.model-pillar:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
}

.pillar-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.model-pillar h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.model-pillar p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Visual card */
.model-visual {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.model-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.model-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 176, 136, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.model-card-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.model-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.comparison-col {
    flex: 1;
    min-width: 120px;
    padding: 1.5rem 1rem;
    border-radius: 16px;
}

.comparison-col--us {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-col--nearshore {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.35);
}

.comparison-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.comparison-rate {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.comparison-col--nearshore .comparison-rate {
    color: var(--orange);
}

.comparison-rate span {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
}

.comparison-note {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.comparison-vs {
    font-weight: 800;
    font-size: 1rem;
    color: #555;
    flex-shrink: 0;
}

.model-saving-badge {
    background: linear-gradient(90deg, var(--orange), var(--accent));
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

@media (max-width: 900px) {
    .model-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .model-visual {
        transform: translateY(20px);
    }

    .model-visual.visible {
        transform: translateY(0);
    }
}

@media (max-width: 500px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    header {
        padding: 1rem 4%;
    }
}

/* ===================== CX Report Section ===================== */
.cx-report-section {
    position: relative;
    padding: 6rem 5%;
    background: var(--gray);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    z-index: 2;
}

.cx-report-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cx-report-header {
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cx-report-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.cx-report-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: var(--orange);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.cx-report-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.1s;
}

.cx-report-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.cx-report-intro p {
    text-align: center;
    color: #aaa;
    font-size: 1.08rem;
    line-height: 1.75;
    font-weight: 300;
}

.cx-report-intro p strong {
    color: var(--white);
    font-weight: 600;
}

.cx-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.cx-report-card {
    background: var(--dark);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.cx-report-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cx-report-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    transform: translateY(-6px);
}

.cx-report-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cx-report-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--white);
}

.cx-report-card p {
    color: #888;
    font-size: 0.92rem;
    line-height: 1.65;
    font-weight: 300;
}

.cx-report-cta-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 176, 136, 0.04));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.cx-report-cta-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.cx-report-price-block {
    flex-shrink: 0;
    text-align: center;
}

.cx-report-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cx-report-price span {
    font-size: 1.3rem;
    color: #aaa;
    font-weight: 400;
}

.cx-report-price-note {
    font-size: 0.82rem;
    color: #666;
    max-width: 180px;
    line-height: 1.4;
}

.cx-report-cta-text p {
    color: #aaa;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cx-report-cta-text p strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .cx-report-cta-block {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .cx-report-price-note {
        max-width: 100%;
    }

    .cx-report-grid {
        grid-template-columns: 1fr;
    }
}