:root {
    color-scheme: light;
    --bg: #f6f8fb;
    --text: #1f2937;
    --muted: #6b7280;
    --primary: #2563eb;
    --surface: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 480px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background video with slow continuous zoom (Ken Burns effect) */
.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
    pointer-events: none;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: translate(-50%, -50%) scale(1); }
    to   { transform: translate(-50%, -50%) scale(1.12); }
}

/* Overlay with subtle gradient instead of flat black */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Content wrapper */
.hero__content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 0 1.25rem;
    max-width: 800px;
    width: 100%;
}

/* Eyebrow label above heading */
.hero__eyebrow {
    display: inline-block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.hero__title {
    margin: 0 0 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    background: linear-gradient(90deg, #ffffff 0%, #dce8ff 60%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.3s;
}

.hero__text {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.55s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-down indicator */
.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    z-index: 3;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 1s;
}

.hero__scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%   { top: 8px; opacity: 1; }
    70%  { top: 22px; opacity: 0; }
    100% { top: 22px; opacity: 0; }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 992px) {
    .hero {
        height: 85vh;
        min-height: 420px;
    }
    .hero__content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 75vh;
        min-height: 380px;
    }
    .hero__content {
        padding: 0 1rem;
    }
    .hero__text {
        max-width: 90%;
    }
    .hero__scroll {
        bottom: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 65vh;
        min-height: 340px;
    }
    .hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.65) 100%
        );
    }
    .hero__scroll {
        display: none; /* saves space on small screens */
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 300px;
    }
}

/* Respect users who disable motion */
@media (prefers-reduced-motion: reduce) {
    .hero__video {
        animation: none;
        will-change: transform;
    }
    .hero__eyebrow,
    .hero__title,
    .hero__text,
    .hero__scroll {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .hero__scroll-dot {
        animation: none;
    }
}
/* HOME */
/* =========================================================
   AAA LED — Home Page Sections
   Theme: dark background, neon pink/purple/violet glow,
   matches hero video theme in the screenshot.
========================================================= */

:root {
    --bg-dark: #0a0a12;
    --bg-dark-2: #11101c;
    --neon-pink: #ff2e88;
    --neon-purple: #8b2fff;
    --neon-violet: #b46bff;
    --text-light: #f4f2f8;
    --text-muted: #a7a3b8;
    --border-glow: rgba(180, 107, 255, 0.35);
    --radius-lg: 20px;
    --radius-md: 14px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Shared section layout ---------- */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--neon-violet);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 16px;
    line-height: 1.2;
}

.section-text {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 640px;
}

.section-head {
    text-align: center;
    margin: 0 auto 56px;
}

.section-head .section-text {
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---------- CTA buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.btn--primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    box-shadow: 0 0 0 rgba(255, 46, 136, 0);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 46, 136, .35);
}

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

.btn--ghost:hover {
    background: rgba(180, 107, 255, .1);
    border-color: var(--neon-violet);
    transform: translateY(-3px);
}

.hero__cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.link-arrow {
    display: inline-block;
    margin-top: 8px;
    color: var(--neon-violet);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s var(--ease), transform .3s var(--ease);
}

.link-arrow:hover {
    color: var(--neon-pink);
    transform: translateX(4px);
}

/* ---------- Scroll reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- Trust strip ---------- */
.trust-strip {
    background: var(--bg-dark-2);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    padding: 32px 0;
}

.trust-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-strip__num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-strip__label {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ---------- About preview ---------- */
.about-preview {
    background: var(--bg-dark);
    padding: 110px 0;
}

.about-preview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-preview__media {
    position: relative;
}

.about-preview__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}

.about-preview__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 46, 136, .35);
}

.about-preview__badge strong {
    display: block;
    font-size: 22px;
}

.about-preview__badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-light);
    font-size: 15px;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-violet));
    box-shadow: 0 0 8px rgba(255, 46, 136, .6);
}

/* ---------- Services ---------- */
.services {
    background: var(--bg-dark-2);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 47, 255, .18), transparent 70%);
    pointer-events: none;
}

.services__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 45px rgba(255, 46, 136, .18);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 46, 136, .18), rgba(139, 47, 255, .18));
    margin: 0 auto 20px;
}

.service-card__icon img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-card__title {
    color: var(--text-light);
    font-size: 19px;
    margin: 0 0 10px;
}

.service-card__text {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* ---------- Projects preview ---------- */
.projects-preview {
    background: var(--bg-dark);
    padding: 110px 0;
}

.projects-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
}

.project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 10, 18, .95), transparent);
}

.project-card__overlay h3 {
    color: var(--text-light);
    font-size: 17px;
    margin: 0 0 4px;
}

.project-card__overlay span {
    color: var(--neon-violet);
    font-size: 13px;
}

/* ---------- Why us ---------- */
.why-us {
    background: var(--bg-dark-2);
    padding: 110px 0;
}

.why-us__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.why-us__list {
    display: grid;
    gap: 28px;
}

.why-us__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glow);
}

.why-us__item:last-child {
    border-bottom: none;
}

.why-us__num {
    font-size: 22px;
    font-weight: 800;
    color: var(--neon-pink);
    min-width: 40px;
}

.why-us__item h3 {
    color: var(--text-light);
    margin: 0 0 6px;
    font-size: 17px;
}

.why-us__item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
    background: var(--bg-dark);
    padding: 110px 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 0;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-violet);
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card footer img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card cite {
    display: block;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-card footer span {
    color: var(--text-muted);
    font-size: 12.5px;
}

/* ---------- Final CTA band ---------- */
.cta-band {
    position: relative;
    background: var(--bg-dark-2);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-band__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 46, 136, .18), transparent 60%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: .6; }
    50% { opacity: 1; }
}

.cta-band__title {
    position: relative;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-light);
    margin: 0 0 14px;
}

.cta-band__text {
    position: relative;
    color: var(--text-muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .about-preview__grid,
    .why-us__grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 600px) {
    .services__grid,
    .projects-preview__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .about-preview,
    .services,
    .projects-preview,
    .why-us,
    .testimonials,
    .cta-band {
        padding: 72px 0;
    }
}