/* ═══════════════════════════════════════════════
   DUBAICLEAN — Premium Landing Page v3
   CRO-Optimized | MakeUGC Elegance
   Brand: Blue #00a5d2 | Green #84c346
   Font: Inter (clean, modern, SaaS-grade)
   ═══════════════════════════════════════════════ */

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

:root {
    --blue: #00a5d2;
    --blue-deep: #0088b0;
    --blue-glow: rgba(0, 165, 210, 0.12);
    --blue-soft: rgba(0, 165, 210, 0.06);
    --green: #84c346;
    --green-deep: #6fad35;
    --wa: #25d366;
    --wa-deep: #1ebe5d;
    --red: #ef4444;
    --gold: #f6b700;
    --white: #ffffff;
    --bg: #fafbfc;
    --bg-alt: #f4f6f8;
    --border: #e8ecf0;
    --text: #374151;
    --text-light: #6b7280;
    --text-dark: #111827;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.06), 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.06), 0 32px 64px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Header Stack */
    --topbar-h: 48px;
    --nav-h: 60px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ═══ UTIL ═══ */
.mob-only {
    display: none;
}
@media (max-width: 768px) {
    .mob-only {
        display: inline;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Reduced side padding slightly for more space */
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

img {
    max-width: 100%;
}

/* ═══ GRADIENT TEXT ═══ */
.gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══ CHIP ═══ */
.chip {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    background: var(--blue-glow);
    border: 1px solid rgba(0, 165, 210, 0.15);
    margin-bottom: 16px;
}

/* ═══ BUTTONS — MakeUGC-style layered shadows ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    border: none;
    text-decoration: none;
    justify-content: center;
}

.btn--sm {
    padding: 9px 18px;
    font-size: 13px;
    border-radius: 8px;
}

.btn--lg {
    padding: 15px 28px;
    font-size: 15px;
}

.btn--xl {
    padding: 0 48px; /* Slightly wider */
    font-size: 16px;
    border-radius: 50px; /* Fully rounded 'pill' shape */
    height: 56px; /* Match standard size */
}

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 165, 210, 0.35);
}

.btn--primary:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 165, 210, 0.45);
}

/* Pulse animation for primary CTAs */
.btn--pulse {
    animation: btn-pulse 2.5s infinite;
}

@keyframes btn-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 1px var(--blue-deep), 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow: 0 0 0 1px var(--blue-deep), 0 4px 20px rgba(0, 165, 210, 0.35), 0 0 0 6px rgba(0, 165, 210, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.btn--pulse:hover {
    animation: none;
}

/* Shimmer Effect */
.btn--shimmer {
    position: relative;
    overflow: hidden;
}

.btn--shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn--wa {
    background: var(--wa);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--wa:hover {
    background: var(--wa-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--ghost:hover {
    background: var(--bg-alt);
    border-color: var(--blue);
    color: var(--blue);
}

/* ═══ TOPBAR ═══ */
.topbar {
    background: var(--blue);
    /* Deep Blue */
    color: #fff;
    padding: 0 10px;
    /* Added horizontal padding */
    font-size: 14px;
    /* Slightly smaller base font to fit more */
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--topbar-h);
    /* Fixed Height */
    line-height: 1.4;
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--ease);
}

.topbar__in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    width: 100%;
}

.topbar__dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.topbar__timer {
    font-weight: 900;
    font-size: 18px;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin: 0 6px;
    display: inline-block;
}

.topbar__btn {
    padding: 6px 18px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.2s;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.topbar__btn:hover {
    transform: scale(1.04);
}

/* ═══ NAV ═══ */
.nav {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    margin-top: 0;
    transition: all 0.3s var(--ease);
}

.nav.scrolled {
    top: 0;
    box-shadow: var(--shadow-sm);
}

.nav__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav__logo img {
    height: 36px;
    width: auto;
}

.nav__links {
    display: flex;
    gap: 28px;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: 0.2s;
}

.nav__links a:hover {
    color: var(--blue);
}

/* ═══ HERO — Clean, centered, breathable ═══ */
.hero {
    position: relative;
    padding: calc(var(--topbar-h) + var(--nav-h) + 60px) 0 80px;
    background: var(--bg);
    overflow: hidden;
}

.hero--bg {
    background: #04395e; /* Deep blue from inspiration */
    color: #fff;
    text-align: center;
    /* Centered Layout */
    display: flex;
    align-items: center;
    min-height: 85vh;
    /* Taller hero */
}

.hero__overlay {
    display: none; /* No overlay needed for solid color */
}

.hero__in {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Content (Centered) */
.hero__content {
    max-width: 800px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero__dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red);
    animation: blink 0.8s infinite;
}

.hero__h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero--bg .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero__sub {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 640px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero__trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 14px;
}

.hero__trust-badges span::before {
    content: '';
}

.agent-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #fff;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: blink 2s infinite;
}

.status-text {
    white-space: nowrap;
}

.status-text strong {
    font-weight: 800;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.hero__fomo-sub {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Lead Form (Right) */
.hero__form {
    flex: 0 0 400px;
    width: 100%;
    max-width: 400px;
}

.lead-form {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-form__head {
    background: var(--blue);
    padding: 20px;
    text-align: center;
    color: #fff;
}

.lead-form__head h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.lead-form__head p {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.lead-form__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-alt);
    transition: 0.2s;
    outline: none;
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px var(--blue-soft);
}

select.form-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.btn--block {
    width: 100%;
}

.form-privacy {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 900px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    /* Revert text align for mobile if stacked */
    .hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .hero__in {
        flex-direction: column;
        gap: 40px;
    }

    .hero__content {
        text-align: center;
        margin: 0 auto;
    }

    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__trust-badges {
        justify-content: center;
    }

    .hero__form {
        margin: 0 auto;
    }
}

/* Mobile Header Adjustment */
@media (max-width: 600px) {
    :root {
        --topbar-h: 74px;
        /* Account for wrapping text on small screens */
    }
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
    padding: 32px 0;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.trust-bar__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.8;
}

.trust-bar__logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    padding: 8px 18px;
    border-radius: 8px;
    /* Softer radius */
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-alt);
    border: 1px solid transparent;
    transition: 0.2s;
}

.trust-badge:hover {
    background: #fff;
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 4px 12px rgba(0, 165, 210, 0.15);
    transform: translateY(-2px);
}

/* ═══ SECTIONS — Generous breathing room ═══ */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--bg);
}

.section__head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section__desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.section__cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ GRIDS ═══ */
.grid {
    display: grid;
    gap: 20px;
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

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

/* ═══ CARDS — Premium, soft shadows, generous padding ═══ */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s var(--ease);
}

.card:hover {
    border-color: rgba(0, 165, 210, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card__emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 14px;
}

.card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.card p strong {
    color: var(--text-dark);
}

/* Problem cards — subtle red accent */
.card--problem {
    border-left: 3px solid var(--red);
}

.card--problem p strong {
    color: var(--red);
}

/* Service cards — gradient top on hover */
/* Service cards — Image style */
.card--service {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border);
}

.card__img-wrap {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.card--service:hover .card__img-wrap img {
    transform: scale(1.05);
}

.card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card__content p {
    margin-bottom: 20px;
    flex: 1;
}

.card__content .card__link {
    margin-top: auto;
    font-size: 14px;
}

.card--popular .card__popular-tag {
    z-index: 2;
    top: 0;
    right: 0;
    border-radius: 0 0 0 10px;
}

/* ═══ TEAM SECTION ═══ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.team-card__img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
}

.team-card__content {
    padding: 28px;
    text-align: center;
}

.team-card__content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-card__content p {
    color: var(--text-light);
    font-size: 15px;
}

/* ═══ BEFORE & AFTER ═══ */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.ba-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
}

.ba-card__imgs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 260px;
}

.ba-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.ba-label--before {
    left: 12px;
}

.ba-label--after {
    right: 12px;
}

/* ═══ SPECIAL OFFER BANNER ═══ */
.section--offer {
    padding: 40px 0;
    background: var(--bg);
}

.offer-banner {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 165, 210, 0.25);
}

.offer-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

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

.offer-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    color: var(--blue-deep);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.offer-banner h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

.offer-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.offer-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn--white {
    background: #fff;
    color: var(--blue-deep);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
}

@media (max-width: 900px) {

    .team-grid,
    .ba-grid {
        grid-template-columns: 1fr;
    }

    .card__img-wrap {
        height: 200px;
    }

    .offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* Popular service card */
.card--popular {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    position: relative;
}

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

.card__popular-tag {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
}

/* Why cards — icon style */
.card--why {
    text-align: center;
}

.card__icon {
    font-size: 32px;
    display: block;
    margin-bottom: 14px;
}

.card__num {
    font-size: 44px;
    font-weight: 800;
    color: rgba(0, 165, 210, 0.08);
    line-height: 1;
    letter-spacing: -0.04em;
}

/* Review cards */
.card--review {
    position: relative;
}

.card--review::after {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 56px;
    font-weight: 800;
    color: rgba(0, 165, 210, 0.06);
    line-height: 1;
}

.review__stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.card--review p {
    font-style: italic;
    margin-bottom: 14px;
}

.card--review p strong {
    font-style: normal;
    color: var(--blue-deep);
}

.review__author {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* ═══ VIDEO SECTION ═══ */
.section--video {
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.video-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    background: #000;
}

.video-player__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.video-player:hover .video-player__thumb {
    transform: scale(1.03);
    filter: brightness(0.85);
}

.video-player__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s var(--ease);
}

.video-player__btn svg {
    width: 100%;
    height: 100%;
}

.video-player:hover .video-player__btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-player__label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: 0.2s;
}

.video-player__label svg {
    color: var(--blue);
}

/* Video playing state */
.video-player.playing .video-player__btn,
.video-player.playing .video-player__label,
.video-player.playing .video-player__thumb {
    display: none;
}

.video-player.playing {
    background: #000;
}

.video-player.playing iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

/* Video badges */
.video-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.video-badge {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-glow);
    border: 1px solid rgba(0, 165, 210, 0.12);
}

/* ═══ NUMBERS SECTION — Big, bold, attention-grabbing ═══ */
.section--numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    position: relative;
    overflow: hidden;
}

.section--numbers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(132, 195, 70, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.section--numbers::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.number-card {
    text-align: center;
    padding: 24px 16px;
}

.number-card__value {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    font-feature-settings: 'tnum';
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.number-card__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* ═══ STEPS ═══ */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    transition: all 0.25s var(--ease);
}

.step-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-card__num {
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0, 165, 210, 0.25);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-light);
}

.step-card__arrow {
    font-size: 24px;
    color: var(--border);
    font-weight: 600;
}

/* ═══ FAQ ═══ */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: 0.2s;
}

.faq-item__q:hover {
    color: var(--blue);
}

.faq-item__q span {
    font-size: 20px;
    color: var(--blue);
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-item__q span {
    transform: rotate(45deg);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}

.faq-item.open .faq-item__a {
    max-height: 200px;
}

.faq-item__a p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    padding-bottom: 20px;
}

/* ═══ FINAL CTA ═══ */
.cta-final {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.cta-final__glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--blue-soft) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final__in {
    position: relative;
}

.cta-final__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(239, 68, 68, 0.06);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: badge-pulse 2.5s infinite;
}

.cta-final__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: none
    }

    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.1)
    }
}

.cta-final h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-final__btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-final__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.cta-final__trust span::before {
    content: '\2713  ';
    color: var(--green);
    font-weight: 700;
}

/* ═══ FOOTER ═══ */
.footer {
    background: var(--text-dark);
    color: #9ca3af;
    padding: 56px 0 0;
}

.footer__in {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    height: 32px;
    margin-bottom: 14px;
    filter: brightness(10);
}

.footer__brand p {
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer__brand a {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 6px;
    transition: 0.2s;
}

.footer__brand a:hover {
    color: #fff;
}

.footer__col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer__col a {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    transition: 0.2s;
}

.footer__col a:hover {
    color: #fff;
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

/* ═══ FLOATING BTNS REMOVED ═══ */

/* ═══ ANIMATIONS ═══ */
.anim-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.anim-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure hero content is visible immediately for performance (LCP) */
.hero .anim-in {
    opacity: 1;
    transform: none;
    transition: none;
}

.d1 {
    transition-delay: 0.08s;
}

.d2 {
    transition-delay: 0.16s;
}

.d3 {
    transition-delay: 0.24s;
}

.d4 {
    transition-delay: 0.36s;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .grid--3 {
        grid-template-columns: 1fr 1fr;
    }

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

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar {
        font-size: 11px;
        padding: 6px 0;
    }

    .topbar__btn {
        display: none;
    }

    .nav {
        position: relative !important;
        top: 0 !important;
        margin-top: 0 !important;
        transform: none !important;
        z-index: 1100;
    }

    .nav__links,
    .nav__actions {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero__h1 {
        font-size: 32px;
    }

    .hero__sub {
        font-size: 15px;
    }

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

    .hero__stats {
        flex-wrap: wrap;
        padding: 20px;
        gap: 0;
        max-width: 100%;
    }

    .hero-stat {
        min-width: 50%;
        margin-bottom: 12px;
    }

    .hero-stat__num {
        font-size: 34px;
    }

    .hero-stat__divider {
        display: none;
    }

    .hero__micro {
        flex-direction: column;
        gap: 8px;
    }

    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

    .section__head {
        margin-bottom: 36px;
    }

    .steps {
        flex-direction: column;
    }

    .step-card__arrow {
        transform: rotate(90deg);
    }

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

    .floats {
        right: 14px;
        bottom: 72px;
    }

    .float {
        width: 48px;
        height: 48px;
    }

    .mob-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }

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

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .number-card__value {
        font-size: 36px;
    }

    .video-player {
        border-radius: 14px;
    }

    .video-player__btn {
        width: 60px;
        height: 60px;
    }

    .section--numbers {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero__h1 {
        font-size: 28px;
    }

    .section__title {
        font-size: 22px;
    }

    .btn--lg {
        padding: 13px 22px;
        font-size: 14px;
    }

    .btn--xl {
        padding: 15px 26px;
        font-size: 15px;
    }

    .card {
        padding: 24px 20px;
    }

    .hero-stat__num {
        font-size: 28px;
    }

    .number-card__value {
        font-size: 30px;
    }

    .video-player__btn {
        width: 50px;
        height: 50px;
    }

    .video-player__label {
        font-size: 11px;
        padding: 6px 14px;
        bottom: 12px;
    }
}

/* ═══ MOBILE BAR ═══ */
.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    border-top: 1px solid var(--border);
    animation: slideUp 0.5s var(--ease);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.mob-bar__btn {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 64px;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.mob-bar__btn:active {
    transform: scale(0.96);
}

.mob-bar__btn--call {
    background: var(--blue);
}

.mob-bar__btn--wa {
    background: var(--wa);
}

.mob-bar__btn svg {
    flex-shrink: 0;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .mob-bar {
        display: flex;
        gap: 0;
    }

    /* Hide floating buttons to avoid clutter with bottom bar */
    .floats {
        display: none !important;
    }

    /* Typography checks */
    .hero__h1 {
        font-size: 32px;
    }

    .hero__sub {
        font-size: 15px;
    }

    /* Restore and fix Topbar for Mobile */
    .topbar {
        display: flex !important;
        position: relative !important;
        height: auto !important;
        min-height: 50px;
        padding: 10px 0;
        top: 0 !important;
        transform: none !important;
        z-index: 1101;
        font-size: 12px;
    }

    /* Better spacing */
    .section {
        padding: 48px 0;
    }

    /* Card stack */
    .grid--3,
    .team-grid,
    .ba-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure form is reachable */
    .hero {
        padding-bottom: 32px;
    }

    /* Fix Trust Bar stacking */
    .trust-bar__logos {
        gap: 8px;
    }

    .trust-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    /* Video Player resizing */
    .video-wrapper,
    .video-player {
        height: auto;
        aspect-ratio: 16/9;
        width: 100%;
    }
}

/* ═══ PROBLEM VS SOLUTION SPLIT ═══ */
.split-layout {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid var(--border);
}

.split-col {
    flex: 1;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.split-col--problem {
    background: #1f2937;
    /* Dark */
    color: #f3f4f6;
}

.split-col--solution {
    background: #fff;
    /* Light */
    color: var(--text-dark);
    position: relative;
}

.split-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.split-col--solution .split-head {
    border-bottom-color: var(--border);
}

.split-icon {
    font-size: 24px;
}

.split-head h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 15px;
}

.split-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.split-divider {
    width: 60px;
    background: linear-gradient(180deg, var(--gold) 0%, #facc15 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    position: relative;
    z-index: 2;
    clip-path: polygon(20% 0%, 100% 0, 80% 100%, 0% 100%);
    margin: 0 -20px;
    /* Overlap */
}

.split-divider svg {
    width: 32px;
    height: 32px;
    animation: pulse 2s infinite;
}

.split-badge {
    margin-top: auto;
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    margin-top: 24px;
    box-shadow: 0 4px 12px rgba(132, 195, 70, 0.3);
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
        border-radius: 16px;
    }

    .split-divider {
        width: 100%;
        height: 48px;
        margin: -12px 0;
        clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
        z-index: 5;
    }

    .hero--bg {
        min-height: auto;
        padding-top: 40px !important;
        padding-bottom: 60px;
        background-position: center top;
        background-attachment: scroll;
    }

    .hero__h1 {
        font-size: 32px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero__sub {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
        padding: 0 10px;
    }

    /* Optimize Trust Badges for Mobile */
    .hero__trust-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .hero__trust-badges span {
        width: auto;
        min-width: 240px;
        max-width: 90%;
        justify-content: center;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero__cta-box {
        gap: 12px;
    }

    .btn--xl {
        width: 100%;
        padding: 0 20px;
        font-size: 15px;
        justify-content: center;
        white-space: nowrap;
        height: 60px;
        border-radius: 50px;
    }

    .hero__actions {
        padding: 0 10px;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .topbar {
        font-size: 11px;
        padding: 8px 0;
    }

    .topbar__in {
        flex-direction: column;
        gap: 4px;
    }

    .topbar__timer {
        font-size: 13px;
        padding: 1px 6px;
    }

    .topbar__btn {
        display: none;
    }

    .nav__logo img {
        height: 32px;
    }
}

/* ═══ COOL VISUALS: BREAKOUT & 3D ═══ */
.breakout-wrapper {
    position: relative;
    z-index: 1;
}

.breakout-img {
    margin-top: -60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 8px solid #fff;
    transform: rotate(-2deg);
    transition: transform 0.4s var(--ease);
}

.breakout-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.section--split {
    overflow: visible;
    /* Allow divider overlap */
}

/* Pulse effect for the 'Call Now' button to make it unmissable */
.btn--pulse {
    animation: pulse-blue 2.5s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.98);
        box-shadow: 0 8px 24px rgba(0, 165, 210, 0.35), 0 0 0 0 rgba(0, 165, 210, 0.4);
    }

    50% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 165, 210, 0.45), 0 0 0 12px rgba(0, 165, 210, 0);
    }

    100% {
        transform: scale(0.98);
        box-shadow: 0 8px 24px rgba(0, 165, 210, 0.35), 0 0 0 0 rgba(0, 165, 210, 0);
    }
}