*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url("./images/hero/hero1.png") center / cover no-repeat;
    background-color: #eef0f5;
}

/* =========================================
   Navbar
========================================= */
.navbar {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 28px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: #111;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #000;
    font-weight: 500;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 1.5px solid #000;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.06);
}

.btn-filled {
    background: #000;
    color: #fff;
    border: 1.5px solid #000;
}

.btn-filled:hover {
    background: #222;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 4px;
}

/* =========================================
   Hero Content
========================================= */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px 60px;
}

.tag-line {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    letter-spacing: -1.5px;
    max-width: 820px;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.1rem;
    font-weight: 300;
    color: #333;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 42px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    background: transparent;
    border: 1.5px solid #000;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.btn-hero:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================
   Hero Responsive
========================================= */
@media (max-width: 1024px) {
    .nav-links { gap: 24px; }
    .hero-title { font-size: 3.2rem; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 24px; }
    .nav-links, .nav-buttons { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; }
    .hero-title { font-size: 2.4rem; letter-spacing: -0.8px; }
    .hero-subtext { font-size: 1rem; margin-bottom: 32px; }
    .tag-line { font-size: 0.7rem; letter-spacing: 2.5px; }
    .btn-hero { padding: 13px 32px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; letter-spacing: -0.5px; }
    .hero-subtext { font-size: 0.92rem; }
}

/* =========================================
   About Statement Section
========================================= */
.about-statement {
    background: #fff;
    padding: 120px 0 140px;
    overflow: hidden;
}

.about-statement-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.as-headline {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 0.95;
}

.as-word {
    display: block;
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -3px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.as-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.as-outline {
    color: transparent;
    -webkit-text-stroke: 2.5px #000;
}

.as-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.as-body.visible {
    opacity: 1;
    transform: translateY(0);
}

.as-body p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #444;
    line-height: 1.85;
}

.as-body p strong {
    font-weight: 700;
    color: #000;
}

@media (max-width: 1024px) {
    .about-statement-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 40px;
    }
    .as-word { font-size: clamp(3.5rem, 12vw, 7rem); letter-spacing: -2px; }
    .as-headline { flex-direction: row; flex-wrap: wrap; gap: 0 20px; line-height: 1; }
}

@media (max-width: 640px) {
    .about-statement { padding: 80px 0 96px; }
    .about-statement-container { padding: 0 24px; }
    .as-word { font-size: clamp(2.8rem, 14vw, 5rem); letter-spacing: -1.5px; }
    .as-body p { font-size: 1rem; }
}

/* =========================================
   SHARED Ã¢â‚¬â€ Section Tag
========================================= */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* =========================================
   SHARED Ã¢â‚¬â€ Scroll Animation
========================================= */
.anim-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. Tech Stack Marquee
========================================= */
.tech-stack {
    background: #fafafa;
    padding: 80px 0 72px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.tech-header {
    text-align: center;
    margin-bottom: 48px;
}

.tech-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
}

/* Marquee mechanics */
.marquee-outer {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    margin-bottom: 20px;
}

.marquee-outer:last-child { margin-bottom: 0; }

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    align-items: center;
}

.marquee-rtl { animation: marqueeRTL 25s linear infinite; }
.marquee-ltr { animation: marqueeLTR 28s linear infinite; }

.marquee-outer:hover .marquee-track { animation-play-state: paused; }

.marquee-set {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    padding: 0 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.marquee-item:hover { transform: scale(1.18); }

.marquee-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.35s ease, drop-shadow 0.35s ease;
    pointer-events: none;
    user-select: none;
}

.marquee-item:hover img {
    filter: grayscale(0%) opacity(1) drop-shadow(0 0 12px rgba(0,0,0,0.12));
}

.marquee-item span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-item:hover span { color: #333; }

@keyframes marqueeRTL {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marqueeLTR {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@media (max-width: 768px) {
    .tech-stack { padding: 56px 0; }
    .marquee-item { padding: 0 24px; }
    .marquee-item img { width: 44px; height: 44px; }
    .marquee-rtl { animation-duration: 18s; }
    .marquee-ltr { animation-duration: 20s; }
}

/* =========================================
   4. Services Ã¢â‚¬â€ Editorial Split
========================================= */
.svc {
    background: #fff;
    padding: 120px 0 140px;
}

.svc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 80px;
    align-items: start;
}

.svc-left {
    position: sticky;
    top: 120px;
}

.svc-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #000;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-top: 16px;
}

.svc-heading em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1.5px #000;
}

/* Service rows */
.svc-right {
    display: flex;
    flex-direction: column;
}

.svc-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid #ebebeb;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.svc-row:first-child { border-top: 1px solid #ebebeb; }

.svc-row:hover {
    background: #fafafa;
    padding-left: 20px;
}

.svc-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ccc;
    flex-shrink: 0;
    width: 32px;
    transition: color 0.3s ease;
}

.svc-row:hover .svc-num { color: #000; }

.svc-info {
    flex: 1;
}

.svc-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.svc-row:hover .svc-info h3 { transform: translateX(6px); }

.svc-info p {
    font-size: 0.88rem;
    font-weight: 300;
    color: #777;
    line-height: 1.6;
}

.svc-arrow {
    font-size: 1.4rem;
    color: #ccc;
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.svc-row:hover .svc-arrow {
    color: #000;
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .svc-container { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
    .svc-left { position: relative; top: 0; }
}

@media (max-width: 640px) {
    .svc { padding: 80px 0; }
    .svc-container { padding: 0 24px; }
    .svc-heading { font-size: 2rem; }
    .svc-info h3 { font-size: 1.2rem; }
    .svc-row { padding: 28px 0; gap: 16px; }
}

/* =========================================
   5. Fan Card Showcase
========================================= */
.fan-section {
    background: #f9f9f9;
    padding: 0;
    overflow: visible;
}

.fan-header {
    text-align: center;
    padding: 100px 24px 20px;
    background: #f9f9f9;
}

.fan-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.fan-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: #999;
}

/* Stage â€” tall scroll runway that locks the viewport */
.fan-stage {
    position: relative;
    height: 350vh;
}

/* Deck â€” sticky, stays pinned to viewport center */
.fan-deck {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* â”€â”€ Individual card â”€â”€ */
.fan-card {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    cursor: pointer;
    will-change: transform, opacity;
    /* NO CSS transition â€” JS drives smoothly via rAF */
    transform-origin: center bottom;
}

.fan-card:hover {
    z-index: 100 !important;
    box-shadow: 0 24px 64px rgba(0,0,0,0.28), 0 0 0 1px rgba(0,0,0,0.06);
}

/* Image */
.fan-card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fan-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fan-card:hover .fan-card-img img {
    transform: scale(1.06);
}

/* Gradient overlay */
.fan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
    pointer-events: none;
    transition: background 0.4s ease;
}

.fan-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}

/* Card info â€” bottom */
.fan-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fan-card-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
}

.fan-card-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.fan-card-info p {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fan-card-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease,
                background 0.3s ease, border-color 0.3s ease;
    align-self: flex-start;
}

.fan-card:hover .fan-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.fan-card-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* â”€â”€ Mobile: vertical stack â”€â”€ */
@media (max-width: 768px) {
    .fan-section { background: #f9f9f9; }

    .fan-stage {
        height: auto;
    }

    .fan-deck {
        position: relative;
        height: auto;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px 40px;
        perspective: none;
    }

    .fan-card {
        position: relative !important;
        width: 100% !important;
        height: auto;
        aspect-ratio: 4/3;
        transform: none !important;
        opacity: 1 !important;
    }

    .fan-card-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   6. Stats Section
========================================= */
.stats-section {
    background: #fff;
    padding: 100px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.stats-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-block {
    flex: 1;
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-num {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #000;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: #ebebeb;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-section { padding: 64px 0; }
    .stats-container { padding: 0 24px; }
    .stats-row { flex-wrap: wrap; border-radius: 20px; }
    .stat-block { flex: 1 1 45%; padding: 36px 16px; border-bottom: 1px solid #ebebeb; }
    .stat-block:last-child, .stat-block:nth-last-child(2) { border-bottom: none; }
    .stat-divider { display: none; }
}

@media (max-width: 480px) {
    .stat-block { flex: 1 1 100%; }
    .stat-block:not(:last-child) { border-bottom: 1px solid #ebebeb; }
}

/* =========================================
   7. Final CTA â€” 2-Column with Form
========================================= */
.final-cta {
    background: #f9f9f9;
    padding: 140px 0 160px;
    position: relative;
    overflow: hidden;
}

/* Soft radial glow */
.cta-glow {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* 2-column grid */
.cta-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* â”€â”€ LEFT column â”€â”€ */
.cta-left {
    text-align: left;
}

.final-cta .section-tag {
    color: #bbb;
    margin-bottom: 24px;
}

.cta-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #000;
    line-height: 1.12;
    letter-spacing: -2px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
}

.cta-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-word-accent {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px #000;
}

.cta-word-accent.visible {
    color: transparent;
}

.cta-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: #777;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 440px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Phone numbers */
.cta-phones {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-phones.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.cta-phone:hover { color: #555; }

.cta-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
}

/* Action buttons */
.cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-actions.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 15px 36px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    background: #000;
    border-radius: 100px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #25d366;
    background: transparent;
    border: 1.5px solid #25d366;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.cta-whatsapp:hover {
    background: #25d366;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(37,211,102,0.2);
}

.cta-whatsapp svg { flex-shrink: 0; }

/* â”€â”€ RIGHT column â€” Form Card â”€â”€ */
.cta-form-wrap {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25,0.8,0.25,1),
                transform 0.8s cubic-bezier(0.25,0.8,0.25,1);
}

.cta-form-wrap.visible {
    opacity: 1;
    transform: translateX(0);
}

.cta-form {
    background: #fff;
    border-radius: 20px;
    padding: 44px 36px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
    position: relative;
}

/* Subtle gradient glow border */
.cta-form::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(236,72,153,0.12), rgba(99,102,241,0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.cta-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.cta-form-sub {
    font-size: 0.82rem;
    font-weight: 400;
    color: #999;
    margin-bottom: 28px;
}

/* Fields */
.cta-field {
    margin-bottom: 16px;
}

.cta-field input,
.cta-field select,
.cta-field textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #000;
    background: #f5f5f5;
    border: 1.5px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.cta-field input::placeholder,
.cta-field textarea::placeholder {
    color: #aaa;
}

.cta-field input:focus,
.cta-field select:focus,
.cta-field textarea:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.cta-field select {
    color: #aaa;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' 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;
    padding-right: 40px;
}

.cta-field select:valid {
    color: #000;
}

.cta-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit button */
.cta-form-btn {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-form-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.cta-form-btn:active {
    transform: scale(0.98);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }
    .cta-left { text-align: center; }
    .cta-headline { justify-content: center; }
    .cta-phones { justify-content: center; }
    .cta-actions { justify-content: center; }
    .final-cta { padding: 100px 0 120px; }
}

@media (max-width: 640px) {
    .cta-headline { gap: 0 8px; }
    .cta-phones { flex-direction: column; gap: 8px; }
    .cta-dot { display: none; }
    .cta-actions { flex-direction: column; gap: 12px; }
    .cta-primary, .cta-whatsapp { width: 100%; justify-content: center; }
    .cta-form { padding: 32px 24px; }
}

/* =========================================
   Footer â€” Premium
========================================= */
.site-footer {
    background: #0a0a0a;
    padding: 100px 0 48px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow behind brand */
.site-footer::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

/* Big branding */
.footer-brand {
    text-align: center;
    margin-bottom: 56px;
}

.footer-brand-name {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 16px;
}

.footer-brand-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}

.footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-line {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    display: block;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: #25d366;
    border-radius: 100px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.footer-wa:hover {
    background: #1eb851;
    box-shadow: 0 6px 24px rgba(37,211,102,0.25);
}

.footer-wa svg { flex-shrink: 0; }

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .site-footer { padding: 72px 0 36px; }
    .footer-container { padding: 0 24px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* =========================================
   Local SEO Section
========================================= */
.local-seo {
    background: #fff;
    padding: 100px 0 120px;
    border-top: 1px solid #f0f0f0;
}

.local-seo-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.local-seo-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.local-seo-body {
    font-size: 1.05rem;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    max-width: 780px;
    margin: 0 auto 48px;
}

.local-seo-body strong {
    font-weight: 700;
    color: #000;
}

.local-seo-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.city-card {
    display: block;
    padding: 36px 28px;
    background: #fafafa;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #000;
}

.city-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.city-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .local-seo { padding: 72px 0 80px; }
    .local-seo-container { padding: 0 24px; }
    .local-seo-cities { grid-template-columns: 1fr; }
}

/* =========================================
   Basic Protection
========================================= */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}
