:root {
    --primary: #1a0be9;
    --primary-light: #3d2ef5;
    --primary-dark: #1308b8;
    --ink: #0a0f1a;
    --paper: #eae9f0;
    --slate: #374151;
    --muted: #9ca3af;
    --white: #ffffff;
    --font-family: Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    font-family: var(--font-family);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

body.landing-page h1,
body.landing-page h2,
body.landing-page h3,
body.landing-page h4,
body.landing-page h5 {
    font-family: var(--font-family);
}

/* ── Navbar ── */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 15, 26, 0.07);
    transition: box-shadow 0.3s;
}

.landing-nav.scrolled {
    box-shadow: 0 4px 24px rgba(10, 15, 26, 0.08);
}

.landing-nav .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.landing-nav .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.landing-nav .nav-brand img {
    height: 40px;
    width: auto;
}

.landing-nav .nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.landing-nav .nav-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.landing-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.landing-nav .nav-link:hover {
    color: var(--primary);
}

.landing-nav .nav-link:hover::after {
    width: 100%;
}

.landing-nav .nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.landing-nav .nav-cta:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-1px);
}

.landing-nav .nav-toggle {
    background: none;
    border: 1px solid rgba(10, 15, 26, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1;
}

.landing-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1098;
    display: none;
}

.landing-mobile-overlay.open {
    display: block;
}

.landing-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100vw);
    height: 100vh;
    background: var(--ink);
    z-index: 1099;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.landing-mobile-nav a {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.landing-mobile-nav a:hover {
    color: var(--primary-light);
}

.landing-mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .landing-nav .nav-links {
        display: flex;
    }

    .landing-nav .nav-toggle {
        display: none;
    }
}

/* ── Hero (Model 1) ── */
.landing-hero {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        var(--ink) 0%,
        #0d0847 50%,
        var(--primary) 100%
    );
    color: white;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(26, 11, 233, 0.2) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.landing-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.landing-hero-slides {
    display: grid;
    grid-template-columns: 1fr;
}

.landing-hero-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
    z-index: 0;
}

.landing-hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    z-index: 1;
}

.landing-hero-slide .hero-content > *,
.landing-hero-slide .hero-visual {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-hero-slide.active .hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}
.landing-hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.landing-hero-slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
}
.landing-hero-slide.active .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.36s;
}
.landing-hero-slide.active .hero-stats {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.44s;
}
.landing-hero-slide.active .hero-visual {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}

.landing-hero-slide:not(.active) .hero-content > *,
.landing-hero-slide:not(.active) .hero-visual {
    transition-delay: 0s;
    transition-duration: 0.35s;
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 11, 233, 0.2);
    border: 1px solid rgba(61, 46, 245, 0.5);
    color: #a89dff;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-desc p {
    margin: 0 0 0.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-primary-landing {
    background: var(--primary);
    color: white;
    font-family: var(--font-family);
    font-weight: 600;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(26, 11, 233, 0.35);
}

.btn-primary-landing:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 11, 233, 0.45);
}

.btn-outline-landing {
    background: transparent;
    color: white;
    font-family: var(--font-family);
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline-landing:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 420px;
}

.hero-stat-num {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
}

.hero-glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.hero-glass img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-float-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero-float-badge h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
}

.hero-float-badge p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 3rem;
}

.hero-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.45s ease;
}

.hero-dot.active {
    width: 28px;
    background: var(--primary-light);
}

.hero-dot-progress {
    position: absolute;
    inset: 0;
    display: block;
    width: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.95);
}

.hero-dot.active .hero-dot-progress {
    animation: heroDotProgress 5s linear forwards;
}

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

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.25s ease, border-color 0.25s ease,
        transform 0.25s ease;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.06);
}

.hero-nav:active {
    transform: translateY(-50%) scale(0.96);
}

.hero-nav-prev {
    left: 1.25rem;
}

.hero-nav-next {
    right: 1.25rem;
}

@media (min-width: 992px) {
    .landing-hero-slide {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-float-badge {
        display: block;
    }
}

@media (max-width: 991px) {
    .hero-float-badge {
        display: none;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-nav-prev {
        left: 0.75rem;
    }

    .hero-nav-next {
        right: 0.75rem;
    }
}

/* ── Section utilities ── */
.section-label {
    font-family: var(--font-family);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.section-label.center {
    justify-content: center;
}

.section-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.landing-section {
    padding: 5rem 2rem;
}

.landing-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── About (Model 2) ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap::before {
    content: "";
    background: var(--primary);
    border-radius: 20px;
    width: 80%;
    aspect-ratio: 4/5;
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    opacity: 0.12;
}

.about-img-wrap img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    display: block;
    clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: var(--ink);
    color: white;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(10, 15, 26, 0.25);
}

.about-badge-num {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.2rem;
}

.about-text p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* ── Services (Model 2) ── */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border: 1px solid rgba(10, 15, 26, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 15, 26, 0.12);
    border-color: transparent;
}

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

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(26, 11, 233, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.service-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Clients (Model 2) ── */
.clients-section {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 2rem;
    animation: scrollClients 60s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.clients-track.reverse {
    animation-direction: reverse;
    animation-duration: 60s;
}

@keyframes scrollClients {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.client-chip {
    background: white;
    border: 1px solid rgba(10, 15, 26, 0.08);
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.client-chip-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(26, 11, 233, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.client-chip-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.client-chip-initial {
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.client-chip-name {
    line-height: 1.3;
}

.clients-fade-left,
.clients-fade-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--paper), transparent);
}

.clients-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--paper), transparent);
}

.clients-row {
    overflow: hidden;
    position: relative;
}

.clients-row + .clients-row {
    margin-top: 1.25rem;
}

/* ── Testimonials (Model 2) ── */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--ink);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card.alt-1 {
    background: #111827;
}

.testimonial-card.alt-2 {
    background: #1a1040;
}

.testimonial-card::after {
    content: "\201C";
    position: absolute;
    top: -20px;
    right: 24px;
    font-size: 10rem;
    font-family: var(--font-family);
    color: rgba(26, 11, 233, 0.15);
    line-height: 1;
}

.testimonial-stars {
    color: gold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

.testimonial-name {
    font-family: var(--font-family);
    font-weight: 700;
    color: white;
}

.testimonial-role {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.2rem;
}

/* ── Team (Model 2) ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(10, 15, 26, 0.08);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-info {
    padding: 1.25rem;
    border-top: 1px solid rgba(10, 15, 26, 0.06);
}

.team-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.95rem;
}

.team-role {
    font-size: 0.78rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

/* ── Contact (Model 2) ── */
.contact-section {
    background: var(--ink);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 11, 233, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-info-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-info-value a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
}

.contact-info-value a:hover {
    color: rgba(218, 225, 244, 0.85);
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-wrap h3 {
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    color: white;
    font-family: var(--font-family);
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.contact-input:focus {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.09);
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.4rem;
}

.contact-field {
    margin-bottom: 1rem;
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

.contact-alert {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* ── CTA ── */
.landing-cta {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.landing-cta h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: white;
}

.landing-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-white {
    background: white;
    color: var(--primary);
    font-family: var(--font-family);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

.btn-cta-white:hover {
    background: #f0f0ff;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ── Footer ── */
.landing-footer {
    background: #060912;
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    text-align: center;
}

.landing-footer p {
    font-size: 0.85rem;
    margin: 0;
}

/* ── WhatsApp float ── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.whatsapp-float:hover {
    background: #1ebe57;
    color: white;
    transform: scale(1.08);
}
