:root {
    --site-max: 1320px;
    --container-pad: clamp(0.9rem, 2vw, 1.35rem);
    --bg: #060606;
    --bg-deep: #020202;
    --surface: rgba(12, 12, 12, 0.84);
    --surface-strong: rgba(8, 8, 8, 0.94);
    --surface-soft: rgba(16, 16, 16, 0.76);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(230, 255, 41, 0.24);
    --text: #f3f7fb;
    --text-soft: #97a1ac;
    --accent: #e6ff29;
    --accent-2: #cddd1a;
    --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.24);
    --radius-xl: 30px;
    --radius-lg: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at 16% 20%, rgba(230, 255, 41, 0.08), transparent 20%),
        radial-gradient(circle at 84% 14%, rgba(230, 255, 41, 0.06), transparent 22%),
        linear-gradient(180deg, #060606 0%, #020202 46%, #090909 100%);
    overflow-x: hidden;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: var(--site-max);
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

.container-fluid {
    padding-left: clamp(0.9rem, 2vw, 1.5rem);
    padding-right: clamp(0.9rem, 2vw, 1.5rem);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 84%);
    opacity: 0.22;
}

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

img {
    display: block;
    max-width: 100%;
}

main,
.site-shell {
    position: relative;
    z-index: 1;
}

.site-background,
.site-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-blob,
.bg-ring,
.hero-orb {
    position: absolute;
    border-radius: 50%;
}

.bg-blob,
.hero-orb {
    filter: blur(60px);
    opacity: 0.9;
}

.bg-blob-one,
.hero-orb-one {
    width: 26rem;
    height: 26rem;
    top: 7rem;
    left: -6rem;
    background: rgba(230, 255, 41, 0.08);
}

.bg-blob-two,
.hero-orb-two {
    width: 28rem;
    height: 28rem;
    top: 9rem;
    right: -6rem;
    background: rgba(230, 255, 41, 0.06);
}

.bg-blob-three {
    width: 23rem;
    height: 23rem;
    bottom: 5rem;
    left: 40%;
    background: rgba(230, 255, 41, 0.05);
}

.bg-ring {
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.bg-ring-one {
    width: 34rem;
    height: 34rem;
    top: 8rem;
    right: 12%;
}

.bg-ring-two {
    width: 28rem;
    height: 28rem;
    bottom: 10rem;
    left: 10%;
}

.section-space {
    padding: 6rem 0;
}

.soft-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.08));
}

.anchor-offset {
    scroll-margin-top: 120px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 255, 41, 0.95));
}

.hero-title,
.page-title,
.section-title,
.service-card h2,
.showcase-card h3,
.process-card h3,
.team-card h3,
.client-card h3,
.review-card h3,
.info-panel h3,
.mini-feature-card h3,
.footer-top h2,
.screen-copy h2,
.services-nav-item,
.about-stat-card strong,
.contact-lead-card strong {
    font-family: "Sora", sans-serif;
}

.hero-title,
.page-title {
    font-size: clamp(2.35rem, 3.25vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 0.95rem;
    text-wrap: pretty;
}

.section-title {
    font-size: clamp(2.35rem, 3.25vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 0.8rem;
    text-wrap: pretty;
}

.section-title.small-title {
    font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.hero-copy,
.section-copy,
.service-summary,
.showcase-card p,
.process-card p,
.team-card p,
.client-card p,
.review-card p,
.review-card span,
.info-panel p,
.mini-feature-card p,
.footer-copy,
.footer-bottom,
.contact-success p,
.about-stat-card span,
.contact-note-list li,
.service-item-card p,
.contact-lead-card p {
    color: var(--text-soft);
    line-height: 1.8;
    text-wrap: pretty;
}

.max-copy {
    max-width: 54rem;
}

.btn-premium {
    border-radius: 999px;
    padding: 0.95rem 1.55rem;
    font-weight: 700;
    border-width: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-dark.btn-premium {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
    color: #050505;
    box-shadow: 0 18px 45px rgba(230, 255, 41, 0.18);
}

.btn-dark.btn-premium:hover,
.btn-dark.btn-premium:focus {
    color: #050505;
    transform: translateY(-2px);
}

.btn-outline-dark.btn-premium {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline-dark.btn-premium:hover,
.btn-outline-dark.btn-premium:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}

.btn-light.btn-premium {
    color: #050505;
    background: #eff7ff;
    border-color: transparent;
}

.premium-navbar {
    --bs-navbar-active-color: var(--accent);
    --bs-navbar-color: rgba(239, 247, 255, 0.78);
    padding: 1rem 0;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.premium-navbar::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: min(92vw, 1240px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.nav-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.premium-navbar.is-scrolled {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.55), transparent);
    backdrop-filter: blur(12px);
}

.navbar-collapse {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.nav-primary {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-link {
    color: rgba(239, 247, 255, 0.78);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0 !important;
    position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--accent);
}

.premium-navbar .navbar-nav .nav-link.active,
.premium-navbar .navbar-nav .nav-link.show,
.premium-navbar .navbar-nav .show > .nav-link {
    color: var(--accent) !important;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.65rem;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateX(-50%);
}

.premium-dropdown {
    background: rgba(9, 9, 9, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 0.65rem;
    box-shadow: var(--shadow);
}

.premium-dropdown .dropdown-item {
    color: var(--text);
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
}

.premium-dropdown .dropdown-item:hover,
.premium-dropdown .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.05);
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    margin-right: 1.25rem;
    max-width: min(100%, 520px);
}

.brand-logo {
    width: auto;
    height: 46px;
    filter: drop-shadow(0 10px 22px rgba(230, 255, 41, 0.12));
}

.brand-logo-full {
    height: clamp(68px, 7vw, 104px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.brand-copy {
    display: inline-flex;
    align-items: center;
}

.brand-copy strong {
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    color: var(--accent);
}

.navbar-toggler-icon {
    width: 22px;
    height: 14px;
    background-image:
        linear-gradient(rgba(243, 247, 251, 0.9), rgba(243, 247, 251, 0.9)),
        linear-gradient(rgba(243, 247, 251, 0.9), rgba(243, 247, 251, 0.9)),
        linear-gradient(rgba(243, 247, 251, 0.9), rgba(243, 247, 251, 0.9));
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 0, 0 6px, 0 12px;
    filter: none;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding-inline: 1.6rem;
}

.hero-section,
.page-hero {
    position: relative;
    padding-top: 8.5rem;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-shell-centered {
    position: relative;
    min-height: calc(100vh - 9rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0 3rem;
    width: 100%;
}

.hero-tools,
.hero-actions,
.hero-metrics,
.cta-actions,
.service-tab-row,
.footer-contact,
.footer-socials,
.star-row {
    display: flex;
}

.hero-tools,
.hero-actions,
.hero-metrics,
.cta-actions,
.service-tab-row {
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-tools {
    margin-bottom: 1.3rem;
}

.hero-tools span,
.hero-metrics span,
.pill-label,
.service-tab,
.marquee-track span,
.services-nav-item {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(239, 247, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-actions {
    margin-top: 1.7rem;
}

.hero-actions-centered {
    justify-content: center;
}

.hero-metrics {
    margin-top: 1.75rem;
}

.hero-liquid-blob {
    position: absolute;
    left: 50%;
    top: 47%;
    width: min(34rem, 52vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 44% 56% 46% 54% / 43% 42% 58% 57%;
    background:
        radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.08), transparent 28%),
        radial-gradient(circle at 64% 72%, rgba(230, 255, 41, 0.08), transparent 20%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, 0.04),
        0 0 120px rgba(230, 255, 41, 0.05);
    opacity: 0.95;
    pointer-events: none;
}

.hero-mini-glow {
    position: absolute;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 255, 41, 0.24), transparent 60%);
    filter: blur(16px);
    pointer-events: none;
}

.glow-left {
    left: 6%;
    top: 22%;
}

.glow-right {
    right: 10%;
    top: 28%;
}

.glow-bottom {
    left: 50%;
    bottom: 20%;
    transform: translateX(-50%);
}

.hero-starburst {
    position: absolute;
    left: 18%;
    bottom: 20%;
    width: 78px;
    aspect-ratio: 1;
    background: var(--accent);
    clip-path: polygon(50% 0%, 60% 33%, 100% 50%, 60% 67%, 50% 100%, 40% 67%, 0% 50%, 40% 33%);
    filter: drop-shadow(0 0 24px rgba(230, 255, 41, 0.25));
    pointer-events: none;
}

.hero-badge-tilt {
    position: absolute;
    top: 24%;
    right: 18%;
    padding: 0.8rem 1.1rem;
    border-radius: 16px;
    background: var(--accent);
    color: #050505;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transform: rotate(8deg);
    box-shadow: 0 14px 30px rgba(230, 255, 41, 0.15);
    pointer-events: none;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.82);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust-icon,
.hero-mini-icons span {
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
}

.hero-trust-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: #050505;
    font-size: 1rem;
    flex: 0 0 auto;
}

.hero-trust-text {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
}

.hero-mini-icons {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
}

.hero-mini-icons span {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.95rem;
}

.hero-kicker {
    margin: 0 0 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-display {
    margin: 0;
    max-width: 74rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(3.05rem, 6.2vw, 4.85rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.hero-display span {
    display: block;
}

.hero-subline {
    max-width: 44rem;
    margin: 1.6rem auto 0;
    color: rgba(243, 247, 251, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
}

.hero-subline span {
    color: var(--accent);
}

.hero-primary-cta {
    min-width: 220px;
}

.hero-secondary-cta {
    min-width: 220px;
}

.hero-footer {
    margin-top: 5rem;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.hero-footer p {
    margin: 0;
    color: rgba(243, 247, 251, 0.94);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-footer-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.hero-footer-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(239, 247, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 600;
}

.hero-video-card,
.marquee-shell,
.service-preview-card,
.showcase-card,
.process-card,
.visual-card,
.info-panel,
.team-card,
.service-card,
.client-card,
.review-card,
.contact-form-panel,
.contact-content-panel,
.mini-feature-card,
.cta-panel,
.faq-shell,
.about-preview-shell,
.services-sidebar,
.about-stat-card,
.contact-lead-card,
.service-item-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(6, 6, 6, 0.88));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-video-card::before,
.marquee-shell::before,
.service-preview-card::before,
.showcase-card::before,
.process-card::before,
.visual-card::before,
.info-panel::before,
.team-card::before,
.service-card::before,
.client-card::before,
.review-card::before,
.contact-form-panel::before,
.contact-content-panel::before,
.mini-feature-card::before,
.cta-panel::before,
.faq-shell::before,
.about-preview-shell::before,
.services-sidebar::before,
.about-stat-card::before,
.contact-lead-card::before,
.service-item-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%);
    pointer-events: none;
}

.hero-video-card {
    padding: 1.05rem;
    transform-style: preserve-3d;
}

.video-chrome {
    display: flex;
    gap: 0.45rem;
    padding: 0.25rem 0.2rem 0.9rem;
}

.video-chrome span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.video-stage {
    position: relative;
    min-height: 29rem;
    border-radius: 24px;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    background:
        radial-gradient(circle at top, rgba(230, 255, 41, 0.08), transparent 24%),
        linear-gradient(135deg, #0a0a0a 0%, #111111 46%, #040404 100%);
}

.video-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 80%);
}

.video-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 35%, transparent 62%);
    transform: translateX(-100%);
    animation: shine 6s linear infinite;
}

.video-badge,
.floating-chip {
    position: absolute;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    color: var(--text);
    background: rgba(230, 255, 41, 0.9);
    border: 1px solid rgba(230, 255, 41, 0.16);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.video-badge {
    top: 1.3rem;
    left: 1.3rem;
}

.screen-copy {
    position: relative;
    z-index: 1;
    max-width: 24rem;
}

.screen-kicker {
    color: rgba(239, 247, 255, 0.62);
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.screen-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
}

.screen-copy p {
    margin-bottom: 1.2rem;
    color: rgba(239, 247, 255, 0.76);
    line-height: 1.7;
}

.chip-one {
    top: 22%;
    right: 1.5rem;
    animation: floatBadge 5s ease-in-out infinite;
}

.chip-two {
    bottom: 5.2rem;
    right: 1.8rem;
    animation: floatBadge 5s ease-in-out infinite 1.2s;
}

.chip-three {
    bottom: 1.4rem;
    left: 1.6rem;
    animation: floatBadge 5s ease-in-out infinite 2s;
}

.marquee-section {
    padding: 0 0 1rem;
}

.home-trust-strip {
    padding-top: 0;
}

.showreel-section {
    padding: 0;
}

.showreel-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.showreel-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
    border-right: 0;
    background: #050505;
    box-shadow: var(--shadow);
}

.showreel-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 18%);
    pointer-events: none;
    z-index: 2;
}

.showreel-label-row {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.showreel-label,
.showreel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.showreel-label {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.showreel-link {
    color: #050505;
    background: rgba(250, 250, 250, 0.94);
    border-color: transparent;
    font-weight: 700;
}

.showreel-media {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    background: #050505;
}

.marquee-shell {
    padding: 2rem;
}

.marquee-shell-compact {
    padding: 1rem 1.25rem;
    background: rgba(10, 10, 10, 0.64);
}

.trust-band-copy {
    margin-bottom: 1.2rem;
}

.marquee-track-wrap {
    overflow: hidden;
}

.marquee-track {
    display: inline-flex;
    gap: 1rem;
    min-width: max-content;
    animation: marquee 24s linear infinite;
}

.section-intro {
    margin-bottom: 2rem;
}

.split-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    align-items: start;
}

.section-intro .section-copy {
    max-width: 44rem;
    margin: 0;
}

.services-highlight-intro {
    max-width: 100%;
}

.services-highlight-title {
    max-width: none;
}

.services-highlight-title span {
    display: inline;
}

.services-highlight-title span + span::before {
    content: " ";
}

.service-tab-row {
    margin-bottom: 1.5rem;
}

.service-tab-row,
.hero-footer-tags {
    width: 100%;
}

.service-tab-row {
    justify-content: flex-start;
}

.service-tab,
.services-nav-item {
    white-space: normal;
}

.service-tab {
    text-align: center;
    justify-content: center;
}

.service-preview-card,
.showcase-card,
.process-card,
.info-panel,
.team-card,
.service-card,
.client-card,
.review-card,
.mini-feature-card,
.contact-form-panel,
.contact-content-panel {
    padding: 2rem;
}

.showcase-cta {
    margin-top: 2rem;
}

.showcase-cta .cta-panel {
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: clamp(1.25rem, 2vw, 2.4rem);
    padding: clamp(1.8rem, 2.2vw, 2.45rem);
}

.showcase-cta-copy {
    max-width: 60rem;
}

.showcase-cta-title {
    max-width: 56rem;
    margin-bottom: 0;
    font-size: clamp(2.35rem, 3.25vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.showcase-cta-title span {
    display: inline;
}

.showcase-cta-title span + span::before {
    content: " ";
}

.showcase-cta-accent {
    color: var(--accent);
}

.showcase-cta .cta-actions {
    justify-content: flex-end;
}

.showcase-cta .btn-premium {
    min-width: 240px;
}

.service-preview-head,
.client-head {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.service-dot,
.services-nav-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 6px rgba(230, 255, 41, 0.08);
}

.services-nav-bullet {
    flex: 0 0 auto;
}

.service-preview-head p,
.service-card h2,
.client-card h3,
.review-card h3,
.showcase-card h3,
.process-card h3,
.info-panel h3,
.mini-feature-card h3,
.team-card h3 {
    margin: 0;
    text-wrap: pretty;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}

.service-emoji {
    font-size: 1.1em;
}

.clean-list {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(239, 247, 255, 0.88);
    line-height: 1.85;
}

.compact-list {
    margin-top: 0.8rem;
}

.services-link-orb {
    display: inline-grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid rgba(230, 255, 41, 0.18);
    background: rgba(230, 255, 41, 0.04);
    color: var(--accent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 36px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.services-link-orb:hover,
.services-link-orb:focus {
    transform: translateY(-2px);
    border-color: rgba(230, 255, 41, 0.3);
    background: rgba(230, 255, 41, 0.08);
    color: var(--accent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 44px rgba(0, 0, 0, 0.22);
}

.services-link-orb i {
    font-size: 2rem;
    line-height: 1;
}

.services-orb-slot {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 1rem 0;
}

.showcase-card {
    min-height: 100%;
}

.service-preview-card,
.process-card,
.info-panel,
.team-card,
.client-card,
.review-card,
.mini-feature-card,
.service-card,
.service-item-card,
.contact-lead-card {
    height: 100%;
}

.showcase-card h3 {
    font-size: 1.6rem;
    margin: 1rem 0 0.85rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(230, 255, 41, 0.08);
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 1rem;
    border: 1px solid rgba(230, 255, 41, 0.16);
}

.about-preview-shell {
    padding: clamp(0.75rem, 1.8vw, 1.35rem);
}

.about-preview-layout {
    --bs-gutter-x: clamp(1.75rem, 3vw, 3.25rem);
}

.about-preview-title {
    max-width: 44rem;
    font-size: clamp(2rem, 2.75vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 0.85rem;
}

.about-preview-title span {
    display: inline;
}

.about-preview-title span + span::before {
    content: " ";
}

.about-preview-title-accent {
    color: var(--accent);
}

.about-preview-copy {
    max-width: 40rem;
    margin-bottom: 0;
}

.mini-feature-grid,
.contact-info-grid,
.contact-lead-grid {
    display: grid;
    gap: 1rem;
}

.mini-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.5rem 0;
}

.about-mini-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1.75rem 0;
}

.about-mini-feature-grid .mini-feature-card:last-child {
    grid-column: 1 / -1;
}

.visual-card {
    padding: 1.15rem;
}

.about-preview-visual {
    height: 100%;
    padding: 1.35rem;
}

.about-preview-aside {
    display: grid;
    gap: 1rem;
    height: 100%;
    align-content: start;
}

.about-preview-lead-card,
.about-preview-mini-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.94), rgba(7, 7, 7, 0.9));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.about-preview-lead-card::before,
.about-preview-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%);
    pointer-events: none;
}

.about-preview-lead-card {
    display: grid;
    gap: 0.95rem;
    padding: 1.4rem;
}

.about-preview-value-card {
    gap: 1.15rem;
}

.about-preview-lead-card h3,
.about-preview-mini-card h3 {
    font-family: "Sora", sans-serif;
    margin: 0;
    color: var(--text);
}

.about-preview-lead-card h3 {
    font-size: clamp(1.4rem, 1.8vw, 1.7rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.about-preview-lead-card p:last-child,
.about-preview-mini-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.72;
}

.about-preview-lead-card > p:not(.eyebrow) {
    color: rgba(239, 247, 255, 0.72);
}

.about-preview-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.about-preview-metric {
    position: relative;
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 255, 41, 0.12);
    background: rgba(230, 255, 41, 0.05);
}

.about-preview-metric::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(230, 255, 41, 0.85), rgba(230, 255, 41, 0.18));
}

.about-preview-metric strong {
    padding-left: 0.6rem;
    font-family: "Sora", sans-serif;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
}

.about-preview-metric span {
    padding-left: 0.6rem;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.92rem;
}

.about-preview-aside-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-preview-mini-card {
    display: grid;
    gap: 0.8rem;
    padding: 1.25rem 1.15rem;
    min-height: 100%;
}

.about-preview-mini-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(230, 255, 41, 0.08);
    border: 1px solid rgba(230, 255, 41, 0.16);
    color: var(--accent);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.about-preview-mini-card h3 {
    font-size: 1.18rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.about-preview-quote-card {
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    min-height: 118px;
    padding: 1.35rem 1.3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(230, 255, 41, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(8, 8, 8, 0.92));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.about-preview-quote-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%);
    pointer-events: none;
}

.about-preview-quote-card p {
    position: relative;
    margin: 0;
    max-width: 28ch;
    font-family: "Sora", sans-serif;
    font-size: 1.18rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--text);
}

.about-preview-aside-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-preview-aside-strip span {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(239, 247, 255, 0.86);
    font-size: 0.86rem;
    font-weight: 600;
}

.visual-card img {
    width: 100%;
    border-radius: 24px;
}

.about-preview-visual img {
    display: block;
    aspect-ratio: 0.92 / 1;
    object-fit: cover;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.7rem;
}

.about-stat-card {
    padding: 1.3rem 1.1rem;
    text-align: left;
}

.about-stat-card strong {
    display: block;
    color: var(--accent);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.services-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.services-sidebar-shell {
    position: relative;
    align-self: stretch;
    z-index: 2;
}

.services-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.4rem;
}

.services-sidebar.is-fixed {
    position: fixed;
    top: var(--services-sidebar-top, 7rem);
    left: var(--services-sidebar-left, 0);
    width: var(--services-sidebar-width, 280px);
    right: auto;
}

.services-sidebar.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
}

.services-nav-list {
    display: grid;
    gap: 0.8rem;
}

.services-nav-item {
    gap: 0.75rem;
    justify-content: flex-start;
    padding: 0.9rem 1rem;
}

.services-nav-item.is-active,
.services-nav-item:hover {
    color: var(--accent);
    border-color: rgba(230, 255, 41, 0.18);
    background: rgba(230, 255, 41, 0.08);
}

.services-detail-column {
    display: grid;
    gap: 1.4rem;
    align-content: start;
}

.mega-service-card {
    scroll-margin-top: 110px;
}

.page-services .services-detail-column {
    gap: 1.7rem;
}

.page-services .mega-service-card {
    min-height: auto;
}

.page-services .service-card h2 {
    font-size: clamp(1.95rem, 2.35vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.page-services .service-summary {
    max-width: 58rem;
    font-size: 1.04rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.page-services .service-item-card p {
    font-size: 1rem;
    line-height: 1.55;
}

.service-item-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.service-item-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
}

.service-item-card p {
    margin: 0;
}

.service-item-icon {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(230, 255, 41, 0.1);
    color: var(--accent);
    flex: 0 0 auto;
}

.faq-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    padding: 2rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.15rem 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    padding-right: 2rem;
    position: relative;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -0.05rem;
    font-size: 1.4rem;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0.9rem 0 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
}

.page-hero {
    padding-bottom: 1.8rem;
}

.services-page-hero {
    padding-bottom: 2.4rem;
}

.services-page-title {
    max-width: 24ch;
    margin-bottom: 0.95rem;
}

.services-page-copy {
    max-width: 46rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

.testimonials-page-hero {
    padding-bottom: 2.35rem;
}

.testimonials-page-title {
    max-width: 24ch;
    margin-bottom: 0.95rem;
    font-size: clamp(2.35rem, 3.25vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.testimonials-page-copy,
.testimonials-section-copy {
    max-width: 47rem;
    font-size: 1.03rem;
    line-height: 1.82;
}

.testimonials-section-title {
    max-width: 24ch;
}

.testimonials-cards-row {
    --bs-gutter-y: 1.5rem;
}

.page-testimonials .client-card,
.page-testimonials .review-card {
    display: flex;
    flex-direction: column;
}

.page-testimonials .client-card {
    display: grid;
    grid-template-rows: 17rem auto;
    gap: 1.3rem;
}

.page-testimonials .client-head {
    display: grid;
    gap: 1.15rem;
    align-items: start;
    min-height: 17rem;
}

.testimonial-headline-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-height: 4.8rem;
}

.page-testimonials .client-card h3 {
    min-height: 3.15rem;
    margin: 0;
    text-wrap: balance;
}

.page-testimonials .client-body {
    margin-top: 0;
    padding-top: 1.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.client-identity {
    display: grid;
    grid-template-rows: 3.15rem 5.75rem;
    gap: 0.85rem;
}

.testimonial-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    align-items: flex-start;
    align-content: start;
    min-height: 4.8rem;
}

.testimonial-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonial-card-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, rgba(230, 255, 41, 0.9), rgba(230, 255, 41, 0.32));
    box-shadow: 0 0 18px rgba(230, 255, 41, 0.18);
}

.testimonial-location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(239, 247, 255, 0.66);
    font-size: 0.83rem;
    font-weight: 600;
}

.testimonial-location i {
    color: rgba(230, 255, 41, 0.9);
}

.testimonial-person {
    margin: 0;
    color: rgba(239, 247, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.72;
    text-wrap: pretty;
    max-width: 20ch;
    align-self: start;
}

.testimonial-stack {
    display: grid;
    gap: 0;
}

.testimonial-stack-block {
    display: grid;
    gap: 0.7rem;
}

.testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.testimonial-label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: rgba(230, 255, 41, 0.68);
}

.testimonial-result-block {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-project {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.22rem;
    line-height: 1.3;
    color: var(--text);
}

.testimonial-card-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
    text-wrap: pretty;
}

.page-testimonials .client-card h3,
.page-testimonials .review-card h3 {
    font-size: 1.32rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.page-testimonials .review-card {
    display: grid;
    grid-template-rows: auto minmax(7rem, auto) auto auto;
    gap: 1.15rem;
}

.review-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.star-meter {
    position: relative;
    display: inline-grid;
}

.star-meter-base,
.star-meter-fill {
    display: inline-flex;
    gap: 0.35rem;
}

.star-meter-base {
    color: rgba(255, 255, 255, 0.12);
}

.star-meter-fill {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    color: var(--accent);
    white-space: nowrap;
}

.review-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 0.55rem 0.85rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-family: "Sora", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
}

.review-quote {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.review-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0.35rem;
    margin-top: 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.review-footer > div {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.review-footer span {
    display: block;
}

.page-testimonials .review-footer h3 {
    min-height: 2.5em;
}

.review-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    min-height: 3.95rem;
    padding: 0.72rem 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(243, 247, 251, 0.88);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    margin-top: auto;
}

.review-footer .review-tag {
    display: inline-flex;
}

.about-page-hero {
    padding-bottom: 2.45rem;
}

.about-hero-shell {
    position: relative;
    padding: 0.5rem 0 0.25rem;
}

.about-page-title {
    max-width: none;
    margin-bottom: 0.95rem;
}

.about-page-copy {
    max-width: 40rem;
    font-size: 1.04rem;
    line-height: 1.82;
}

.about-hero-note {
    max-width: 46rem;
    margin: 1.1rem 0 0;
    color: rgba(243, 247, 251, 0.84);
    font-size: 1rem;
    line-height: 1.82;
}

.page-about .about-stats-grid {
    margin-top: 1.55rem;
    gap: 0.85rem;
}

.page-about .about-stat-card {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    padding: 1.1rem 1rem;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(8, 8, 8, 0.84));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.page-about .about-stat-card strong {
    font-size: clamp(1.55rem, 1.8vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
}

.about-stat-value {
    color: var(--accent);
}

.about-stat-title {
    font-family: "Sora", sans-serif;
    color: var(--accent);
    font-size: clamp(1.12rem, 1.28vw, 1.34rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    max-width: 8ch;
    text-wrap: balance;
}

.page-about .about-stat-card span {
    font-size: 0.88rem;
    line-height: 1.55;
}

.about-stat-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.58;
    text-wrap: pretty;
}

.about-hero-aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-content: start;
}

.about-hero-mini-card {
    position: relative;
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem 1.1rem;
    min-height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(8, 8, 8, 0.84));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.about-hero-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%);
    pointer-events: none;
}

.about-hero-mini-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(230, 255, 41, 0.08);
    border: 1px solid rgba(230, 255, 41, 0.14);
    color: var(--accent);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.about-hero-mini-title {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.18;
    color: var(--text);
}

.about-hero-mini-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-team-intro {
    margin-bottom: 1.65rem;
}

.about-overview-intro {
    margin-bottom: 1.65rem;
}

.about-overview-title {
    max-width: 28ch;
    margin-bottom: 0.75rem;
}

.about-overview-copy {
    max-width: 44rem;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.about-team-title {
    max-width: 26ch;
    margin-bottom: 0.75rem;
}

.about-team-copy {
    max-width: 42rem;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.about-team-grid {
    --bs-gutter-y: 1.3rem;
}

.page-about .about-team-card {
    padding: 1.65rem;
}

.page-about .about-team-card h3 {
    font-size: clamp(1.12rem, 1.22vw, 1.28rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: pretty;
}

.page-about .about-team-card .member-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 0.55rem;
}

.page-about .about-team-card .team-role {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.page-about .about-team-card p:last-child {
    font-size: 0.98rem;
    line-height: 1.72;
    margin-bottom: 0;
}

.info-panel h3,
.team-card h3,
.service-card h2,
.client-card h3,
.review-card h3 {
    font-size: 1.45rem;
    margin: 0.5rem 0 0.7rem;
}

.info-icon,
.member-badge {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 255, 41, 0.18), rgba(230, 255, 41, 0.08));
    border: 1px solid rgba(230, 255, 41, 0.14);
    color: var(--accent);
    flex: 0 0 58px;
    aspect-ratio: 1 / 1;
}

.member-badge {
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.member-badge i {
    font-size: 1.05rem;
}

.client-mark {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(230, 255, 41, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(230, 255, 41, 0.14);
    color: var(--accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    flex: 0 0 auto;
}

.client-mark i {
    font-size: 1.15rem;
}

.team-role {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.contact-content-panel {
    padding: 2rem;
}

.contact-lead-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1.5rem 0;
}

.contact-lead-card {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem;
    border-radius: 18px;
}

.contact-lead-card > div {
    min-width: 0;
}

.contact-lead-card strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.contact-lead-card p {
    margin: 0;
    font-size: 0.88rem;
}

.contact-note-list {
    margin: 0 0 1.5rem;
    padding-left: 1.1rem;
}

.contact-note-list li + li {
    margin-top: 0.45rem;
}

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

.service-card,
.service-preview-card,
.showcase-card,
.process-card,
.info-panel,
.team-card,
.client-card,
.review-card,
.mini-feature-card,
.faq-item,
.cta-panel,
.contact-lead-card,
.service-item-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.service-preview-card:hover,
.showcase-card:hover,
.process-card:hover,
.info-panel:hover,
.team-card:hover,
.client-card:hover,
.review-card:hover,
.mini-feature-card:hover,
.faq-item:hover,
.cta-panel:hover,
.contact-lead-card:hover,
.service-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.client-body,
.review-card p {
    margin-top: 1rem;
}

.star-row {
    color: var(--accent);
    gap: 0.35rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 14px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    color: var(--text);
    backdrop-filter: blur(12px);
}

.contact-form .form-control::placeholder {
    color: rgba(151, 161, 172, 0.82);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgba(230, 255, 41, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(230, 255, 41, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
    color: var(--text);
}

.contact-form .form-select option {
    background: #0b0e0d;
    color: rgba(243, 247, 251, 0.96);
}

.contact-form .form-select option:checked,
.contact-form .form-select option:hover,
.contact-form .form-select option:focus {
    background: #101412;
    color: var(--accent);
}

.contact-form .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color-scheme: dark;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--accent) 50%),
        linear-gradient(135deg, var(--accent) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 3rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 24px rgba(0, 0, 0, 0.16);
}

.contact-success {
    text-align: center;
    padding: 2.8rem 1.4rem;
}

.contact-success i {
    display: inline-block;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-success h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 0.75rem;
}

.site-footer {
    position: relative;
    margin-top: 4rem;
    padding: 4.5rem 0 2rem;
    background:
        radial-gradient(circle at 15% 0%, rgba(230, 255, 41, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(4, 4, 4, 0.92) 20%, #040404 100%);
}

.site-footer::before {
    display: none;
}

.footer-inner {
    position: relative;
    display: grid;
    gap: 2rem;
}

.footer-grid,
.footer-meta {
    display: grid;
    gap: 1.4rem;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.55fr) minmax(240px, 0.72fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.footer-brand {
    max-width: 40rem;
}

.footer-brand h2 {
    max-width: 30rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.footer-copy {
    max-width: 40rem;
    margin: 0;
}

.footer-column {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 1rem;
}

.footer-connect {
    justify-self: end;
    width: min(100%, 18rem);
}

.footer-label {
    margin: 0;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.footer-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 0.9rem 1.8rem;
    width: 100%;
}

.footer-nav-links a,
.footer-contact a {
    color: rgba(239, 247, 255, 0.86);
    font-weight: 600;
    transition: color 0.22s ease, opacity 0.22s ease;
}

.footer-nav-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact {
    display: grid;
    gap: 0.8rem;
}

.footer-contact span {
    color: var(--text-soft);
    line-height: 1.8;
}

.footer-meta {
    padding-top: 0.5rem;
    color: rgba(151, 161, 172, 0.86);
    font-size: 0.9rem;
    text-align: center;
    justify-items: center;
}

.footer-socials {
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-socials a,
.whatsapp-float {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    color: var(--accent);
    background: rgba(230, 255, 41, 0.1);
}

.service-chatbot {
    position: fixed;
    right: 1.4rem;
    bottom: 5.4rem;
    z-index: 21;
}

.chatbot-float,
.whatsapp-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 50px;
    height: 50px;
    z-index: 20;
    color: #2de06b;
    background: rgba(19, 28, 13, 0.92);
    border-color: rgba(45, 224, 107, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.chatbot-float {
    position: static;
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--accent);
    background: rgba(12, 16, 9, 0.94);
    border: 1px solid rgba(230, 255, 41, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.chatbot-float:hover,
.chatbot-float:focus {
    transform: translateY(-2px);
    background: rgba(230, 255, 41, 0.08);
    border-color: rgba(230, 255, 41, 0.26);
}

.chatbot-float i,
.whatsapp-float i {
    font-size: 1.2rem;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.9rem);
    width: min(360px, calc(100vw - 2rem));
    padding: 1rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.97), rgba(5, 5, 5, 0.95));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.chatbot-panel-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}

.chatbot-label {
    margin: 0 0 0.35rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.chatbot-panel-head h3 {
    margin: 0;
    font-size: 1.08rem;
    color: var(--text);
}

.chatbot-close {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.chatbot-messages {
    display: grid;
    gap: 0.7rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.25rem;
    margin-bottom: 0.95rem;
}

.chatbot-message {
    display: flex;
}

.chatbot-message p {
    margin: 0;
    max-width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    line-height: 1.65;
    font-size: 0.93rem;
}

.chatbot-message-bot p {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(239, 247, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.chatbot-message-user {
    justify-content: flex-end;
}

.chatbot-message-user p {
    background: rgba(230, 255, 41, 0.12);
    color: var(--text);
    border: 1px solid rgba(230, 255, 41, 0.12);
}

.chatbot-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
}

.chatbot-form input {
    min-width: 0;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.chatbot-form input::placeholder {
    color: rgba(151, 161, 172, 0.92);
}

.chatbot-form button {
    padding: 0.85rem 1.05rem;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #050505;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-side.reveal {
    transform: translateX(36px);
}

.slide-side.reveal.is-visible {
    transform: translateX(0);
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(140%);
    }
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1199.98px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .services-sidebar-shell {
        align-self: auto;
    }

    .services-sidebar,
    .services-sidebar.is-fixed,
    .services-sidebar.is-bottom {
        position: relative;
        inset: auto;
        width: auto;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .footer-connect {
        justify-self: start;
        width: 100%;
    }

    .faq-shell,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .about-preview-layout {
        align-items: start !important;
    }

    .about-preview-visual,
    .about-hero-visual-card {
        max-width: 100%;
        margin-left: 0;
    }

    .review-footer {
        grid-template-columns: minmax(0, 1fr);
    }

    .review-tag {
        width: fit-content;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 4.75rem 0;
    }

    .premium-navbar {
        padding: 0.85rem 0;
    }

    .nav-container {
        align-items: center;
    }

    .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 12px 28px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(10px);
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        background: rgba(230, 255, 41, 0.04);
        border-color: rgba(230, 255, 41, 0.18) !important;
    }

    .navbar-toggler:focus {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 12px 28px rgba(0, 0, 0, 0.18),
            0 0 0 0.12rem rgba(230, 255, 41, 0.08);
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(6, 6, 6, 0.94));
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(18px);
    }

    .nav-primary {
        width: 100%;
        align-items: stretch;
        gap: 0.35rem;
        margin: 0 0 1rem;
    }

    .nav-primary .nav-item {
        width: 100%;
    }

    .nav-primary .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.85rem 0.95rem !important;
        border-radius: 16px;
    }

    .nav-link.active::after {
        display: none;
    }

    .premium-dropdown {
        margin-top: 0.45rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        box-shadow: none;
    }

    .nav-end {
        display: none;
    }

    .page-hero,
    .hero-section {
        padding-top: 7.25rem;
    }

    .hero-shell-centered {
        min-height: auto;
        padding: 3.25rem 0 2.5rem;
    }

    .hero-display {
        font-size: clamp(2.6rem, 10vw, 4rem);
        line-height: 1;
    }

    .hero-subline {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-liquid-blob {
        width: min(28rem, 78vw);
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .hero-actions .btn-premium,
    .cta-actions .btn-premium {
        flex: 1 1 220px;
        justify-content: center;
    }

    .showreel-label-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .showreel-frame {
        border-radius: 28px;
    }

    .services-orb-slot {
        justify-content: flex-start;
        padding: 0.5rem 0 0;
    }

    .service-item-grid,
    .mini-feature-grid,
    .about-mini-feature-grid,
    .contact-lead-grid,
    .compact-contact-grid,
    .about-stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-nav-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-intro {
        gap: 1rem;
    }

    .split-intro,
    .section-intro {
        align-items: flex-start;
    }

    .contact-content-panel,
    .contact-form-panel,
    .cta-panel,
    .faq-shell {
        padding: 1.5rem;
    }

    .contact-shell,
    .cta-panel,
    .faq-shell,
    .about-preview-shell {
        border-radius: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-testimonials .client-card {
        grid-template-rows: auto auto;
    }

    .page-testimonials .client-head {
        min-height: auto;
    }

    .client-identity {
        grid-template-rows: auto auto;
    }

    .page-testimonials .client-card h3,
    .page-testimonials .review-footer h3 {
        min-height: auto;
    }

    .about-hero-aside {
        grid-template-columns: 1fr 1fr;
    }

    .about-preview-aside-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-metrics {
        grid-template-columns: 1fr;
    }

    .about-preview-quote-card {
        grid-column: auto;
    }

    .about-preview-title span,
    .showcase-cta-title span,
    .services-highlight-title span {
        display: inline;
    }

    .about-preview-title span + span::before,
    .showcase-cta-title span + span::before,
    .services-highlight-title span + span::before {
        content: " ";
    }
}

@media (max-width: 767.98px) {
    .nav-container {
        align-items: center;
    }

    .navbar-brand {
        margin-right: 0;
        max-width: calc(100% - 66px);
    }

    .navbar-collapse {
        margin-top: 0.85rem;
        padding: 0.95rem;
        border-radius: 26px;
        background:
            radial-gradient(circle at top right, rgba(230, 255, 41, 0.08), transparent 28%),
            linear-gradient(180deg, rgba(10, 10, 10, 0.97), rgba(7, 7, 7, 0.96));
    }

    .nav-primary {
        gap: 0.5rem;
        margin-bottom: 0.85rem;
    }

    .nav-primary .nav-link {
        min-height: 54px;
        padding: 0.9rem 1rem !important;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.02);
    }

    .nav-primary .nav-link.active,
    .nav-primary .nav-link:hover,
    .nav-primary .nav-link:focus {
        background: rgba(230, 255, 41, 0.06);
    }

    .nav-primary .dropdown-toggle::after {
        margin-left: auto;
        font-size: 0.85rem;
        opacity: 0.8;
    }

    .premium-dropdown {
        padding: 0.45rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.025);
    }

    .premium-dropdown .dropdown-item {
        font-size: 0.92rem;
        padding: 0.72rem 0.8rem;
    }

    .nav-end {
        display: none;
    }

    .hero-trust-pill {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.9rem;
        width: min(100%, 22rem);
        padding: 1.05rem 1rem 1rem;
        margin-bottom: 1.6rem;
        border-radius: 26px;
    }

    .hero-trust-text {
        max-width: 18ch;
        text-align: center;
        line-height: 1.55;
    }

    .hero-mini-icons {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .hero-mini-icons span {
        width: 42px;
        height: 42px;
        margin: 0 auto;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn-premium,
    .cta-actions .btn-premium {
        width: 100%;
        min-width: 0;
    }

    .section-title,
    .page-title {
        max-width: 100%;
    }

    .section-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .services-nav-list,
    .hero-footer-tags {
        grid-template-columns: 1fr;
    }

    .service-tab-row {
        gap: 0.6rem;
    }

    .service-tab {
        width: 100%;
    }

    .services-link-orb {
        width: 72px;
        height: 72px;
    }

    .services-link-orb i {
        font-size: 1.55rem;
    }

    .showreel-label-row {
        top: 0.9rem;
        left: 0.9rem;
        right: 0.9rem;
    }

    .showreel-label,
    .showreel-link {
        width: 100%;
        justify-content: center;
    }

    .showreel-link {
        order: 2;
    }

    .showreel-label {
        order: 1;
    }

    .contact-form .row > [class*="col-"],
    .contact-info-grid,
    .service-grid {
        width: 100%;
    }

    .showcase-cta-copy,
    .contact-copy,
    .faq-intro {
        max-width: 100%;
    }

    .hero-shell-centered,
    .page-hero-copy {
        text-align: left;
        align-items: flex-start;
    }

    .hero-actions-centered {
        justify-content: flex-start;
    }

    .hero-footer {
        width: 100%;
    }

    .about-hero-chip-top,
    .about-hero-chip-bottom {
        position: static;
        margin-top: 1rem;
    }

    .about-hero-visual-stage {
        padding-bottom: 1.25rem;
    }

    .review-card,
    .client-card,
    .service-preview-card,
    .showcase-card,
    .process-card,
    .info-panel,
    .team-card,
    .service-card,
    .mini-feature-card,
    .contact-lead-card {
        padding: 1.4rem;
    }

    .footer-nav-links {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-bottom {
        gap: 1rem;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --container-pad: 1rem;
    }

    .section-space {
        padding: 4rem 0;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .hero-display {
        font-size: clamp(1.9rem, 9.8vw, 2.65rem);
        line-height: 1.03;
        letter-spacing: -0.045em;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
        text-wrap: balance;
    }

    .hero-subline {
        font-size: 0.96rem;
    }

    .hero-kicker {
        line-height: 1.45;
    }

    .hero-display span {
        display: inline;
    }

    .hero-display span + span::before {
        content: " ";
    }

    .hero-kicker,
    .hero-footer p {
        font-size: 0.74rem;
    }

    .hero-footer-tags span,
    .hero-tools span,
    .hero-metrics span,
    .pill-label,
    .service-tab,
    .services-nav-item {
        font-size: 0.8rem;
    }

    .services-nav-list {
        grid-template-columns: 1fr;
    }

    .about-hero-aside {
        grid-template-columns: 1fr;
    }

    .navbar-collapse {
        padding: 0.9rem;
        border-radius: 20px;
    }

    .brand-logo-full {
        height: 60px;
    }

    .showreel-frame {
        display: grid;
        gap: 0.75rem;
        padding: 0.85rem;
        border-radius: 20px;
    }

    .showreel-frame::before {
        display: none;
    }

    .showreel-label-row {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        gap: 0.65rem;
    }

    .showreel-label,
    .showreel-link {
        width: 100%;
        padding: 0.7rem 0.9rem;
        justify-content: center;
        text-align: center;
        font-size: 0.88rem;
    }

    .showreel-label-row {
        display: none;
    }

    .showreel-media {
        width: 100%;
        height: auto;
        max-height: none;
        border-radius: 18px;
        object-fit: contain;
        aspect-ratio: auto;
    }

    .hero-trust-pill {
        width: 100%;
        padding: 1rem 0.9rem 0.95rem;
    }

    .showcase-cta .cta-panel {
        grid-template-columns: 1fr;
        gap: 1.15rem;
        align-items: start;
        padding: 1.35rem 1.15rem;
        border-radius: 28px;
        background:
            radial-gradient(circle at top right, rgba(230, 255, 41, 0.08), transparent 34%),
            linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(6, 6, 6, 0.94));
    }

    .showcase-cta-copy {
        max-width: 100%;
        display: grid;
        gap: 0.8rem;
    }

    .showcase-cta .eyebrow {
        margin-bottom: 0;
    }

    .showcase-cta-title {
        max-width: 100%;
        font-size: clamp(1.7rem, 8vw, 2.15rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .showcase-cta-title[data-mobile-title] {
        display: block;
    }

    .showcase-cta-title[data-mobile-title] span {
        display: none;
    }

    .showcase-cta-title[data-mobile-title]::after {
        content: attr(data-mobile-title);
        color: var(--text);
    }

    .showcase-cta .cta-actions {
        width: 100%;
        justify-content: stretch;
    }

    .showcase-cta .btn-premium {
        min-width: 0;
        width: 100%;
        min-height: 56px;
        border-radius: 18px;
        justify-content: center;
        box-shadow: 0 18px 36px rgba(230, 255, 41, 0.14);
    }

    .hero-trust-icon {
        width: 54px;
        height: 54px;
    }

    .hero-trust-text {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .hero-mini-icons {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .nav-primary .nav-link {
        padding: 0.78rem 0.85rem !important;
        font-size: 0.94rem;
    }

    .btn-premium {
        padding: 0.88rem 1.2rem;
    }

    .nav-end {
        display: none;
    }

    .hero-actions .btn-premium,
    .cta-actions .btn-premium {
        width: 100%;
    }

    .hero-shell-centered {
        padding: 2.8rem 0 2.2rem;
    }

    .hero-trust-pill,
    .cta-panel,
    .faq-shell,
    .contact-content-panel,
    .contact-form-panel,
    .about-preview-shell {
        border-radius: 24px;
    }

    .service-preview-head,
    .client-head,
    .review-footer,
    .testimonial-meta-row {
        align-items: flex-start;
    }

    .showreel-frame {
        border-radius: 24px;
    }

    .showreel-media {
        min-height: 0;
        object-fit: contain;
        background: #050505;
    }

    .about-preview-lead-card,
    .about-preview-mini-card,
    .about-preview-quote-card,
    .process-card,
    .showcase-card,
    .service-preview-card,
    .mini-feature-card,
    .about-stat-card,
    .info-panel,
    .contact-lead-card {
        border-radius: 22px;
    }

    .service-preview-head,
    .client-head {
        gap: 0.75rem;
    }

    .testimonial-headline-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        min-height: auto;
    }

    .client-mark,
    .member-badge,
    .info-icon,
    .client-logo {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .testimonial-meta-row {
        min-height: auto;
    }

    .testimonial-person,
    .service-summary,
    .section-copy,
    .about-preview-copy,
    .about-overview-copy,
    .about-team-copy,
    .services-page-copy,
    .testimonials-page-copy,
    .testimonials-section-copy,
    .about-page-copy {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .page-testimonials .review-card {
        grid-template-rows: auto auto auto auto;
    }

    .review-topbar {
        flex-wrap: wrap;
    }

    .review-score {
        min-width: 62px;
    }

    .contact-content-panel,
    .contact-form-panel,
    .faq-shell,
    .cta-panel {
        padding: 1.2rem;
    }

    .footer-brand h2,
    .footer-top h2 {
        max-width: 100%;
    }

    .footer-brand h2 {
        font-size: 1.35rem;
    }
}

@media (min-width: 1600px) {
    :root {
        --site-max: 1480px;
        --container-pad: clamp(1.1rem, 1.8vw, 1.6rem);
    }

    body::before {
        background-size: 104px 104px;
    }

    .premium-navbar::after {
        width: min(94vw, 1480px);
    }

    .hero-display {
        max-width: 82rem;
        font-size: clamp(4rem, 5.8vw, 7rem);
    }

    .hero-subline {
        max-width: 52rem;
    }

    .page-title {
        max-width: 74rem;
    }

    .showreel-frame {
        border-radius: 0;
    }

    .showreel-label-row {
        top: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }

    .services-layout {
        grid-template-columns: 320px 1fr;
        gap: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr) minmax(260px, 0.8fr);
    }
}

@media (min-width: 1920px) {
    :root {
        --site-max: 1680px;
    }

    .premium-navbar::after {
        width: min(94vw, 1680px);
    }

    .hero-display {
        max-width: 88rem;
    }

    .hero-liquid-blob {
        width: min(40rem, 40vw);
    }
}

@media (min-width: 2400px) {
    :root {
        --site-max: 1840px;
    }
}

/* ── Brand Context (inside About Preview) ──────────────────────────── */

.about-brand-context {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.25rem;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
    max-width: 40rem;
}

.about-brand-context p {
    margin: 0 0 0.45rem;
    color: rgba(243, 247, 251, 0.52);
    font-size: clamp(0.78rem, 1.2vw, 0.86rem);
    line-height: 1.7;
}

.about-brand-context p:last-child {
    margin-bottom: 0;
}

.about-brand-link {
    color: var(--accent);
    text-decoration: none;
}

.about-brand-link:hover {
    text-decoration: underline;
}
