/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #06101c;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(52, 211, 153, 0.4);
    --emerald: #34d399;
    --emerald-dim: rgba(52, 211, 153, 0.8);
    --emerald-glow: rgba(52, 211, 153, 0.18);
    --emerald-bg: rgba(52, 211, 153, 0.1);
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-75: rgba(255, 255, 255, 0.75);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-45: rgba(255, 255, 255, 0.45);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    --radius-lg: 2rem;
    --radius-md: 1.5rem;
    --radius-sm: 1rem;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: rgba(52, 211, 153, 0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(34, 197, 94, 0.12), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12), transparent 25%),
        linear-gradient(180deg, #07111d 0%, #04070c 100%);
}

.bg-orb {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40rem;
    height: 40rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.1);
    filter: blur(80px);
}

/* ===== BUTTONS ===== */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid rgba(52, 211, 153, 0.4);
    border-radius: var(--radius-sm);
    background: rgba(52, 211, 153, 0.2);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 30px rgba(52, 211, 153, 0.22);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid var(--white-15);
    border-radius: var(--radius-sm);
    background: var(--white-05);
    color: var(--white-90);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: var(--white-10);
    transform: translateY(-2px);
}

.btn-learn {
    display: inline-flex;
    margin-top: 20px;
    padding: 10px 16px;
    border: 1px solid var(--white-20);
    border-radius: var(--radius-sm);
    background: var(--white-10);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: rgba(52, 211, 153, 0.2);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--white-10);
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo-group {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.875rem;
    color: var(--white-75);
}

.nav-desktop a {
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--white);
}

.btn-header-cta {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-color: rgba(52, 211, 153, 0.4);
    background: var(--white-10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 24px rgba(16, 185, 129, 0.18);
}

.btn-header-cta:hover {
    background: rgba(52, 211, 153, 0.2);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 1px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--white-10);
    font-size: 0.95rem;
    color: var(--white-75);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a:hover {
    color: var(--white);
}

/* ===== SECTIONS ===== */
.section {
    padding: 0 24px;
}

.section-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 40px 0;
}

.section-cta {
    padding-bottom: 96px;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(52, 211, 153, 0.8);
    margin-bottom: 12px;
}

.section-header-left h2,
.section-header-center h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 600px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center h2 {
    margin: 0 auto;
}

.section-header-left {
    margin-bottom: 32px;
}

/* ===== HERO ===== */
.hero {
    max-width: 80rem;
    margin: 0 auto;
    padding: 64px 24px 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    border: 1px solid var(--white-15);
    border-radius: 100px;
    background: var(--white-05);
    font-size: 0.875rem;
    color: var(--white-70);
    backdrop-filter: blur(16px);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 14px rgba(52, 211, 153, 0.9);
    flex-shrink: 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 700px;
}

.hero-accent {
    display: block;
    background: linear-gradient(to right, var(--white), rgb(209 250 229), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    margin-top: 24px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--white-70);
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
    max-width: 560px;
}

.stat-card {
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    background: var(--white-05);
    padding: 20px;
    box-shadow: inset 0 1px 0 var(--white-20);
    backdrop-filter: blur(16px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald);
}

.stat-label {
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--white-60);
}

/* Hero image */
.hero-image-wrap {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(to right, rgba(52, 211, 153, 0.2), var(--white-05), rgba(59, 130, 246, 0.2));
    filter: blur(60px);
}

.hero-image-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--white-15);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 20px 80px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(32px);
}

.hero-image-card img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Crystal clear glass overlay */
.hero-image-overlay {
    position: absolute;
    inset: 12px;
    border-radius: var(--radius-md);
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent 50%);
    pointer-events: none;
}

/* Raised inset glass border */
.hero-image-overlay::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Corner light reflections for hero */
.hero-image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20px 20px, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 8px, transparent 16px),
        radial-gradient(circle at calc(100% - 20px) 20px, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 8px, transparent 16px),
        radial-gradient(circle at 20px calc(100% - 20px), rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 8px, transparent 16px),
        radial-gradient(circle at calc(100% - 20px) calc(100% - 20px), rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 8px, transparent 16px);
}

/* Subtle diagonal shine on hero image */
.hero-image-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 30%);
    pointer-events: none;
}

.hero-image-caption {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    border: 1px solid var(--white-15);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.35);
    padding: 20px;
    backdrop-filter: blur(16px);
}

.caption-tag {
    font-size: 0.85rem;
    color: var(--white-60);
}

.caption-title {
    margin-top: 8px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Flip card container */
.service-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front face */
.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.flip-card-front {
    border: 1px solid var(--white-15);
    background: rgba(255, 255, 255, 0.06);
    padding: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 10px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 100%;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrap img {
    transform: scale(1.05);
}

/* No blur overlay — keep images sharp */
.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 16, 28, 0.7), transparent 50%);
    pointer-events: none;
}

/* Raised glass border — inset frame */
.service-image-ring {
    position: absolute;
    inset: 10px;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Corner light reflections — top-left & top-right */
.service-image-ring::before,
.service-image-ring::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 40%, transparent 70%);
    pointer-events: none;
}

.service-image-ring::before {
    top: -2px;
    left: -2px;
}

.service-image-ring::after {
    top: -2px;
    right: -2px;
}

.service-info {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(6, 16, 28, 0.7), transparent);
}

.service-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.service-info p {
    margin-top: 4px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--white-75);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.flip-hint {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--emerald);
    opacity: 0.8;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Subtle shine */
.service-shine {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 30%);
    pointer-events: none;
}

/* Corner light reflections — bottom-left & bottom-right */
.service-shine::before,
.service-shine::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 40%, transparent 70%);
    pointer-events: none;
}

.service-shine::before {
    bottom: 8px;
    left: 8px;
}

.service-shine::after {
    bottom: 8px;
    right: 8px;
}

/* Back face */
.flip-card-back {
    transform: rotateY(180deg);
    background: rgba(6, 16, 28, 0.55);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(52, 211, 153, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 40px rgba(52, 211, 153, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    gap: 14px;
}

.flip-back-icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.4));
}

.flip-card-back h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald);
    letter-spacing: -0.01em;
}

.flip-card-back p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--white-70);
    max-width: 340px;
}

.flip-card-back .btn-glow {
    margin-top: 4px;
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-wrap {
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    padding: 40px;
    box-shadow: inset 0 1px 0 var(--white-20);
    backdrop-filter: blur(16px);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    border: 1px solid var(--white-10);
    border-radius: 1.75rem;
    background: rgba(15, 23, 42, 0.35);
    padding: 24px;
    backdrop-filter: blur(16px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(52, 211, 153, 0.35);
    background: var(--emerald-bg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.step-card p {
    margin-top: 12px;
    line-height: 1.7;
    color: var(--white-70);
}

/* ===== CASE STUDIES ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: 24px;
    backdrop-filter: blur(16px);
}

.case-industry {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--white-45);
}

.case-result {
    margin-top: 20px;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--emerald);
}

.case-card p {
    margin-top: 16px;
    line-height: 1.7;
    color: var(--white-70);
}

.case-card .btn-learn {
    margin-top: 24px;
}

/* ===== PRICING ===== */
.section-desc {
    color: var(--white-60);
    font-size: 1rem;
    margin-top: 10px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-45);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--emerald);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-15);
    border-radius: 14px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.3s;
}

.toggle-switch:hover {
    border-color: rgba(52, 211, 153, 0.4);
}

.toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: var(--emerald);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.pricing-card {
    position: relative;
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: 32px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--white-15);
}

.pricing-card.featured {
    border-color: rgba(52, 211, 153, 0.35);
    background: var(--emerald-bg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 40px rgba(52, 211, 153, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--emerald), #10b981);
    color: #06101c;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-90);
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 16px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
}

.plan-period {
    font-size: 1rem;
    color: var(--white-55);
}

.plan-billing {
    font-size: 0.8rem;
    color: var(--white-45);
    margin-top: 4px;
}

.plan-features {
    list-style: none;
    margin-top: 24px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--white-70);
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--emerald);
}

/* Custom packages */
.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}

.custom-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: 20px 24px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.custom-card:hover {
    border-color: var(--white-15);
    transform: translateY(-2px);
}

.custom-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: var(--radius-sm);
    background: var(--emerald-bg);
    color: var(--emerald);
}

.custom-info {
    flex: 1;
}

.custom-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white-90);
}

.custom-info p {
    font-size: 0.82rem;
    color: var(--white-55);
    margin-top: 3px;
    line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: 24px;
    backdrop-filter: blur(16px);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--white-10);
}

.author-name {
    font-weight: 500;
}

.author-company {
    font-size: 0.875rem;
    color: var(--white-50);
    margin-top: 2px;
}

/* ===== CTA ===== */
.cta-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--white-10);
    border-radius: 2.25rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 56px 32px;
    text-align: center;
    box-shadow: inset 0 1px 0 var(--white-20);
    backdrop-filter: blur(32px);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(52, 211, 153, 0.16), transparent 35%);
}

.cta-content {
    position: relative;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.cta-content p {
    margin: 16px auto 0;
    max-width: 640px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white-70);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--white-10);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
}

.footer-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 24px;
    font-size: 0.875rem;
    color: var(--white-55);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== CONTACT ===== */
.section-subtitle {
    color: var(--white-60);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 12px auto 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-70);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff80' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #0f1a2e;
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px var(--emerald-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
    position: sticky;
    top: 120px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, transform 0.3s;
}

.contact-info-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: var(--emerald-bg);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: var(--emerald);
}

.contact-info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-50);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-90);
    text-decoration: none;
}

a.contact-info-value:hover {
    color: var(--emerald);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-image-card img {
        min-height: 320px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .btn-header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 40px 24px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 280px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-wrap {
        padding: 24px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 24px;
    }

    .custom-grid {
        grid-template-columns: 1fr;
    }

    .custom-card {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header-left h2,
    .section-header-center h2 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-image-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 16px;
    }

    .caption-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.78rem;
    }

    .case-result {
        font-size: 2rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .service-image-wrap img {
        height: 220px;
    }
}
