/* ========================================
   DURDOM OFM — Hero Section Styles
   Premium Dark Landing Page
   ======================================== */

/* === Reset & Foundation === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}

/* Elegant blend fade connecting hero to the section below */
.hero::after {
    display: none;
}

/* === NAVIGATION SYSTEM === */
.nav {
    position: fixed;
    top: 28px;
    left: 28px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Trigger button */
.nav__trigger {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.8);
    animation: logoBtnReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    overflow: hidden;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@keyframes logoBtnReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav__trigger:hover {
    background: rgba(18, 18, 22, 0.95);
    border-color: rgba(255, 255, 255, 0.14);
    transform: scale(1.05);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(226, 32, 32, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav__trigger:active {
    transform: scale(0.96);
}

/* Hamburger bars — centered, clean, proportional */
.nav__bars {
    width: 22px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.nav__bars span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__bars span:nth-child(1) { width: 22px; }
.nav__bars span:nth-child(2) { width: 16px; }
.nav__bars span:nth-child(3) { width: 19px; }

.nav__trigger:hover .nav__bars span {
    background: rgba(255, 255, 255, 0.9);
}

.nav__trigger:hover .nav__bars span:nth-child(2) {
    width: 22px;
}

/* Open state — bars morph to X */
.nav--open .nav__bars span {
    background: rgba(255, 255, 255, 0.85);
}

.nav--open .nav__bars span:nth-child(1) {
    width: 22px;
    transform: translateY(6px) rotate(45deg);
}
.nav--open .nav__bars span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav--open .nav__bars span:nth-child(3) {
    width: 22px;
    transform: translateY(-6px) rotate(-45deg);
}

.nav--open .nav__trigger {
    border-color: rgba(226, 32, 32, 0.2);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(226, 32, 32, 0.08);
}

/* === Floating panel === */
.nav__panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    padding: 10px;
    background: rgba(10, 10, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top left;
    transition:
        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.35s;
    pointer-events: none;
}

/* Open state */
.nav--open .nav__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* === Nav links === */
.nav__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav__link--active {
    background: rgba(226, 32, 32, 0.06);
}

.nav__link-index {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.2);
    min-width: 18px;
    transition: color 0.3s ease;
}

.nav__link:hover .nav__link-index {
    color: rgba(226, 32, 32, 0.5);
}

.nav__link--active .nav__link-index {
    color: rgba(226, 32, 32, 0.7);
}

.nav__link-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.nav__link:hover .nav__link-text {
    color: rgba(255, 255, 255, 0.9);
}

.nav__link--active .nav__link-text {
    color: #fff;
    font-weight: 600;
}

/* Active red dot indicator */
.nav__link--active::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #e22020;
    box-shadow: 0 0 8px rgba(226, 32, 32, 0.4);
}

/* Backdrop overlay for mobile */
.nav__backdrop {
    display: none;
}

/* === Nav responsive === */
@media (max-width: 768px) {
    .nav {
        top: 16px;
        left: 16px;
    }

    .nav__trigger {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .nav__bars {
        width: 18px;
        height: 12px;
    }

    .nav__bars span:nth-child(1) { width: 18px; }
    .nav__bars span:nth-child(2) { width: 13px; }
    .nav__bars span:nth-child(3) { width: 16px; }

    .nav__trigger:hover .nav__bars span:nth-child(2) {
        width: 18px;
    }

    .nav--open .nav__bars span:nth-child(1) {
        width: 18px;
        transform: translateY(5px) rotate(45deg);
    }
    .nav--open .nav__bars span:nth-child(3) {
        width: 18px;
        transform: translateY(-5px) rotate(-45deg);
    }

    .nav__panel {
        min-width: 220px;
    }
}


/* === GLOBAL ANIMATED BACKGROUND === */
.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: #050505;
    pointer-events: none;
}

.global-bg::before,
.global-bg::after {
    content: '';
    position: absolute;
    width: 70vw;
    height: 70vh;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: floatOrb 25s infinite ease-in-out alternate;
    pointer-events: none;
}

.global-bg::before {
    background: radial-gradient(circle, #e22020 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.global-bg::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -12.5s;
    animation-direction: alternate-reverse;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15vw, 15vh) scale(1.3); }
}

.global-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}



@keyframes fadeIn {
    to { opacity: 1; }
}

/* === OVERLAYS === */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.15) 30%, transparent 55%, rgba(5,5,5,0.1) 100%),
        linear-gradient(180deg, rgba(5,5,5,0.15) 0%, transparent 30%, transparent 100%);
}

/* === GLOW BEHIND IMAGE === */
.hero__glow {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226,32,32,0.06) 0%, rgba(226,32,32,0.015) 50%, transparent 75%);
    z-index: 2;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0;
    animation: glowPulseIn 2s ease 1s forwards;
}

@keyframes glowPulseIn {
    to { opacity: 1; }
}

/* === MAIN CONTAINER === */
.hero__container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(32px, 4vw, 80px);
    min-height: 100vh;
}

/* ========================================
   LEFT SIDE — TEXT CONTENT
   ======================================== */
.hero__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: clamp(80px, 10vh, 120px) 0;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(226, 32, 32, 0.2);
    background: rgba(226, 32, 32, 0.06);
    width: fit-content;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e22020;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Title */
.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.hero__title-line {
    overflow: hidden;
    display: block;
}

.hero__title-word {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    animation: titleSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-word--white {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: #ffffff;
    animation-delay: 0.6s;
}

.hero__title-word--red {
    font-size: clamp(4rem, 9vw, 7.5rem);
    color: #e22020;
    animation-delay: 0.75s;
    text-shadow: 0 0 60px rgba(226, 32, 32, 0.25), 0 0 120px rgba(226, 32, 32, 0.1);
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */
.hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 460px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === CTA BUTTONS === */
.hero__cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* ========================================
   GLOBAL BUTTON SYSTEM
   Clean · Premium · Minimal
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    border-radius: 14px;
    padding: 16px 32px;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        border-color 0.4s ease;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
}

.btn__arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

/* Full width variant */
.btn--full {
    width: 100%;
}

/* Subtle shimmer on primary/dark */
.btn--primary::after,
.btn--dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.06),
        transparent
    );
    pointer-events: none;
    animation: btnShimmer 5s ease-in-out infinite 3s;
}

@keyframes btnShimmer {
    0%   { left: -100%; }
    18%  { left: 120%; }
    100% { left: 120%; }
}

/* ---- PRIMARY: Solid Red ---- */
.btn--primary {
    background: #c8191e;
    color: #fff;
    box-shadow:
        0 2px 8px rgba(200, 25, 30, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn--primary:hover {
    background: #d42025;
    transform: translateY(-2px);
    box-shadow:
        0 6px 24px rgba(200, 25, 30, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--primary:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--primary:active {
    background: #b51518;
    transform: translateY(0) scale(0.98);
    box-shadow:
        0 1px 4px rgba(200, 25, 30, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.3);
    transition-duration: 0.1s;
}

/* ---- DARK: Matte Dark Surface ---- */
.btn--dark {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn--dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn--dark:active {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

/* ---- OUTLINE: Minimal Border ---- */
.btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--outline::after {
    display: none;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn--outline:active {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

/* === REVENUE PROOF METRICS === */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero__stat-currency {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #22c55e;
    line-height: 1;
    margin-right: 2px;
}

.hero__stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero__stat-unit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    margin-left: 1px;
}

.hero__stat-plus {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #e22020;
    line-height: 1;
}

.hero__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

/* ========================================
   RIGHT SIDE — HERO IMAGE
   ======================================== */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: clamp(40px, 5vh, 80px) 0;
    overflow: visible;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 680px;
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    animation: imageReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    will-change: transform, opacity;
}

@keyframes imageReveal {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* The actual image */
.hero__image {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Soft premium blend instead of harsh cut */
    -webkit-mask-image: radial-gradient(
        ellipse 85% 85% at 50% 45%,
        black 30%,
        rgba(0,0,0,0.8) 55%,
        rgba(0,0,0,0.4) 75%,
        transparent 95%
    );
    mask-image: radial-gradient(
        ellipse 85% 85% at 50% 45%,
        black 30%,
        rgba(0,0,0,0.8) 55%,
        rgba(0,0,0,0.4) 75%,
        transparent 95%
    );
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 100px rgba(0, 0, 0, 0.2));
    animation: imageFloat 8s ease-in-out infinite 2s;
    will-change: transform;
}

/* Subtle grounding shadow strictly under the image */
.hero__image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 6%;
    left: 15%;
    right: 15%;
    height: 16%;
    background: radial-gradient(ellipse at center, rgba(3, 3, 3, 0.75) 0%, rgba(3, 3, 3, 0.3) 50%, transparent 80%);
    pointer-events: none;
    z-index: 2;
    filter: blur(20px);
    border-radius: 50%;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(0.3deg);
    }
    50% {
        transform: translateY(-6px) rotate(-0.2deg);
    }
    75% {
        transform: translateY(-12px) rotate(0.2deg);
    }
}

/* ========================================
   GLASS PANEL — Floating stats bar
   Covers the bottom image cut-off edge
   ======================================== */
.hero__glass-panel {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 14px 28px;
    border-radius: 20px;
    background: rgba(12, 12, 14, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.55),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    opacity: 0;
    animation: glassPanelReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
    will-change: transform, opacity;
    cursor: default;
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__glass-panel:hover {
    box-shadow:
        0 12px 56px rgba(0, 0, 0, 0.65),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(226, 32, 32, 0.12);
    transform: translateX(-50%) translateY(-3px);
}

@keyframes glassPanelReveal {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.glass-panel__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    position: relative;
}

.glass-panel__item:first-child {
    padding-left: 4px;
}

.glass-panel__item:last-child {
    padding-right: 4px;
}

.glass-panel__divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent
    );
    flex-shrink: 0;
}

.glass-panel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.glass-panel__dot--live {
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    60%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.glass-panel__icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.45);
}

.glass-panel__value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1;
}

.glass-panel__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

/* Glass panel responsive */
@media (max-width: 1024px) {
    .hero__glass-panel {
        bottom: 4%;
        padding: 12px 20px;
    }
    .glass-panel__item {
        padding: 0 14px;
    }
}

@media (max-width: 768px) {
    .hero__glass-panel {
        bottom: 2%;
        padding: 10px 16px;
        border-radius: 16px;
    }
    .glass-panel__item {
        padding: 0 10px;
    }
    .glass-panel__value {
        font-size: 0.85rem;
    }
    .glass-panel__label {
        font-size: 0.65rem;
    }
}

/* Decorative rings behind image */
.hero__image-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(226, 32, 32, 0.06);
    pointer-events: none;
}

.hero__image-ring--1 {
    width: 105%;
    height: 105%;
    top: -2.5%;
    left: -2.5%;
    z-index: 1;
    opacity: 0;
    animation: ringReveal 1.5s ease 1.2s forwards, ringSpin 30s linear infinite 1.2s;
}

.hero__image-ring--2 {
    width: 115%;
    height: 115%;
    top: -7.5%;
    left: -7.5%;
    z-index: 1;
    border-color: rgba(255, 255, 255, 0.025);
    opacity: 0;
    animation: ringReveal 1.5s ease 1.5s forwards, ringSpinReverse 40s linear infinite 1.5s;
}

@keyframes ringReveal {
    to { opacity: 1; }
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

@keyframes ringSpinReverse {
    to { transform: rotate(-360deg); }
}

/* Hover effect on image wrapper */
.hero__image-wrapper:hover .hero__image {
    filter: drop-shadow(0 14px 50px rgba(0, 0, 0, 0.7))
            drop-shadow(0 0 90px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 40px rgba(226, 32, 32, 0.06));
    transition: filter 0.6s ease;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: slideUp 1s ease 2.2s forwards;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, #e22020, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { top: -50%; }
    100% { top: 120%; }
}

/* ========================================
   CORNER ACCENTS
   ======================================== */
.hero__corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 6;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero__corner--tl {
    top: 28px;
    left: 28px;
}

.hero__corner--tl::before,
.hero__corner--tl::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
}

.hero__corner--tl::before {
    top: 0; left: 0;
    width: 32px; height: 1px;
}

.hero__corner--tl::after {
    top: 0; left: 0;
    width: 1px; height: 32px;
}

.hero__corner--br {
    bottom: 28px;
    right: 28px;
}

.hero__corner--br::before,
.hero__corner--br::after {
    content: '';
    position: absolute;
    background: rgba(226, 32, 32, 0.2);
}

.hero__corner--br::before {
    bottom: 0; right: 0;
    width: 32px; height: 1px;
}

.hero__corner--br::after {
    bottom: 0; right: 0;
    width: 1px; height: 32px;
}

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

/* Large screens */
@media (min-width: 1600px) {
    .hero__image-wrapper {
        max-width: 780px;
    }
    .hero__glow {
        width: 700px;
        height: 700px;
    }
}

/* Mid-size laptops */
@media (max-width: 1200px) {
    .hero__container {
        gap: 32px;
    }
    .hero__image-wrapper {
        max-width: 560px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 100px;
    }

    .hero__content {
        padding: 0;
        text-align: center;
        align-items: center;
        order: 2;
    }

    .hero__visual {
        order: 1;
        padding: 0;
    }

    .hero__image-wrapper {
        max-width: 440px;
    }

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

    .hero__cta-group {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__glow {
        right: 50%;
        transform: translate(50%, -50%);
        width: 350px;
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero__container {
        padding: 80px 20px 40px;
        gap: 16px;
    }

    .hero__image-wrapper {
        max-width: 360px;
    }

    .hero__title-word--white {
        font-size: clamp(2.8rem, 13vw, 3.8rem);
    }

    .hero__title-word--red {
        font-size: clamp(3.2rem, 15vw, 4.5rem);
    }

    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }


    .hero__stats {
        gap: 20px;
    }

    .hero__stat-number,
    .hero__stat-plus {
        font-size: 1.3rem;
    }

    .hero__stat-label {
        font-size: 0.65rem;
    }

    .hero__scroll-hint {
        bottom: 20px;
    }

    .hero__corner--tl {
        top: 16px; left: 16px;
    }
    .hero__corner--br {
        bottom: 16px; right: 16px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .hero__image-wrapper {
        max-width: 300px;
    }

    .hero__title-word--white {
        font-size: 2.4rem;
    }
    .hero__title-word--red {
        font-size: 2.8rem;
    }

    .hero__stats {
        gap: 14px;
    }
}

/* (Cases section removed) */

/* ========================================
   PLACEHOLDER — removed section
   ======================================== */



/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    position: relative;
    width: 100%;
    padding: clamp(80px, 12vh, 160px) 0;
    background: transparent;
    overflow: hidden;
}

/* Background glow accents */
.pricing__bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    z-index: 0;
}

.pricing__bg-glow--1 {
    width: 500px;
    height: 500px;
    top: 15%;
    right: -8%;
    background: radial-gradient(circle, rgba(226, 32, 32, 0.05) 0%, transparent 70%);
}

.pricing__bg-glow--2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -5%;
    background: radial-gradient(circle, rgba(226, 32, 32, 0.04) 0%, transparent 70%);
}

/* === Section header === */
.pricing__header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 80px);
    padding: 0 clamp(24px, 5vw, 80px);
}

.pricing__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(226, 32, 32, 0.2);
    background: rgba(226, 32, 32, 0.06);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}

.pricing__badge.is-visible {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pricing__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e22020;
    animation: pulse 2s ease-in-out infinite;
}

.pricing__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.pricing__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.pricing__title-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
}

.pricing__title-line.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pricing__title-line--accent {
    color: #e22020;
    text-shadow: 0 0 60px rgba(226, 32, 32, 0.25), 0 0 120px rgba(226, 32, 32, 0.1);
}

.pricing__title-line--accent.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.pricing__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.pricing__subtitle.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* === Pricing grid === */
.pricing__grid {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 4vw, 48px);
    align-items: start;
}

/* === Pricing card base === */
.pricing__card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
}

.pricing__card.is-selected {
    box-shadow:
        0 12px 40px rgba(226, 32, 32, 0.1),
        0 0 0 1px rgba(226, 32, 32, 0.4);
    transform: translateY(-4px);
}

.pricing__card.is-selected .pricing__card-border {
    opacity: 1;
    background: linear-gradient(180deg, rgba(226,32,32,0.4), transparent);
}

.pricing__card.is-visible {
    animation: pricingCardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pricingCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card border */
.pricing__card-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.pricing__card:hover .pricing__card-border {
    opacity: 1;
}

/* Card glow */
.pricing__card-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.pricing__card:hover .pricing__card-glow {
    opacity: 1;
}

/* Card inner */
.pricing__card-inner {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 3.5vw, 40px);
    background: rgba(10, 10, 12, 0.9);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hover lift */
.pricing__card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 0, 0, 0.2);
}

.pricing__card.is-visible:hover {
    transform: translateY(-6px);
}

/* === Featured card === */
.pricing__card--featured {
    z-index: 5;
    transform: translateY(40px) scale(1);
}

.pricing__card--featured.is-visible {
    animation: pricingFeaturedReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pricingFeaturedReveal {
    to {
        opacity: 1;
        transform: translateY(-16px) scale(1.05); /* slightly more dominant */
    }
}

.pricing__card--featured.is-selected {
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(226, 32, 32, 0.15),
        0 0 0 2px rgba(226, 32, 32, 0.5);
}

.pricing__card--featured.is-visible:hover {
    transform: translateY(-22px) scale(1.05);
}

.pricing__card--featured .pricing__card-border {
    background: linear-gradient(
        180deg,
        rgba(226, 32, 32, 0.4) 0%,
        rgba(255, 100, 100, 0.12) 30%,
        rgba(255, 255, 255, 0.04) 60%,
        rgba(226, 32, 32, 0.25) 100%
    );
    opacity: 0.8;
}

.pricing__card--featured:hover .pricing__card-border,
.pricing__card--featured.is-selected .pricing__card-border {
    opacity: 1;
}

.pricing__card--featured .pricing__card-glow {
    background: radial-gradient(
        circle at 50% 30%,
        rgba(226, 32, 32, 0.06) 0%,
        transparent 60%
    );
}

.pricing__card--featured:hover .pricing__card-glow {
    opacity: 1;
}

.pricing__card--featured:hover {
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(226, 32, 32, 0.06);
}

/* Popular badge */
.pricing__card-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 6px 24px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #e22020, #c41a1a);
    box-shadow:
        0 4px 16px rgba(226, 32, 32, 0.35),
        0 0 0 3px rgba(226, 32, 32, 0.1);
    white-space: nowrap;
}

/* === Card components === */

/* Label */
.pricing__card-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 5px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.pricing__card-label--popular {
    color: rgba(226, 32, 32, 0.85);
    background: rgba(226, 32, 32, 0.06);
    border-color: rgba(226, 32, 32, 0.12);
}

.pricing__card-label--premium {
    color: #e22020;
    background: rgba(226, 32, 32, 0.08);
    border-color: rgba(226, 32, 32, 0.18);
    box-shadow: 0 0 12px rgba(226, 32, 32, 0.08);
}

/* Name */
.pricing__card-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

/* Description */
.pricing__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

/* Price */
.pricing__card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing__price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing__price-amount--featured {
    color: #e22020;
    text-shadow: 0 0 40px rgba(226, 32, 32, 0.25);
}

.pricing__price-period {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: lowercase;
}

/* Features list */
.pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing__feature svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(226, 32, 32, 0.6);
}

.pricing__card--featured .pricing__feature svg {
    color: #e22020;
}

.pricing__feature span {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

.pricing__card--featured .pricing__feature span {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA in pricing cards */
.pricing__card .btn {
    padding: 16px 24px;
}

/* ========================================
   FULL-SCREEN PRODUCT MODAL
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vw, 40px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.modal__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    max-height: 900px;
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(226, 32, 32, 0.1) inset;
    overflow: hidden;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.is-open .modal__container {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal__close:hover {
    background: rgba(226,32,32,0.15);
    border-color: rgba(226,32,32,0.4);
    color: #e22020;
    transform: rotate(90deg);
}

.modal__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
}

.modal__video-side {
    position: relative;
    background: #08080a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 48px);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.modal__video-wrapper {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal__video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20,20,24,1) 0%, rgba(10,10,12,1) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
}

.modal__video-placeholder:hover .modal__video-overlay {
    background: rgba(0,0,0,0.1);
}

.modal__play-btn {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e22020;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(226,32,32,0.4);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal__play-ring {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 1px solid rgba(226,32,32,0.4);
    border-radius: 50%;
    animation: pulseRing 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.modal__video-placeholder:hover .modal__play-btn {
    transform: scale(1.1);
}

.modal__play-btn svg {
    margin-left: 4px; /* optical alignment for play icon */
}

.modal__content-side {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 48px);
}

/* Custom scrollbar for modal content */
.modal__content-side::-webkit-scrollbar {
    width: 6px;
}
.modal__content-side::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
.modal__content-side::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.modal__content-scroll {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.modal__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 12px;
}

.modal__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #e22020;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.modal__description-box {
    background: rgba(255,255,255,0.02);
    border-left: 3px solid rgba(226,32,32,0.5);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
}

.modal__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.modal__details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal__details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.modal__details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.modal__details li::before {
    content: '✓';
    color: #4ade80; /* green check */
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1px;
}

.modal__footer {
    margin-top: auto;
    padding-top: 20px;
}

/* Modal Content Transition */
.fade-transition {
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-out {
    opacity: 0 !important;
    transform: translateY(15px) !important;
    pointer-events: none;
}

/* Body Lock */
body.modal-open {
    overflow: hidden;
    padding-right: 15px; /* prevent scrollbar shift */
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .modal__video-side {
        padding: 60px 24px 32px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .modal__close {
        top: 16px; 
        right: 16px; 
        background: rgba(0,0,0,0.5);
        z-index: 20;
    }
}

/* ========================================
   PRICING — RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 32px;
    }
    .pricing__card--featured {
        order: -1;
    }
}

/* Button responsive */
@media (max-width: 768px) {
    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .btn {
        justify-content: center;
        padding: 15px 24px;
    }
}

/* ========================================
   INQUIRY / COLLABORATION SECTION
   ======================================== */
.inquiry {
    position: relative;
    width: 100%;
    padding: clamp(80px, 12vh, 160px) 0 clamp(40px, 6vh, 80px) 0;
    background: transparent;
    overflow: hidden;
}

.inquiry__bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    z-index: 0;
}

.inquiry__bg-glow--1 {
    width: 500px;
    height: 500px;
    top: 10%;
    left: -8%;
    background: radial-gradient(circle, rgba(226, 32, 32, 0.04) 0%, transparent 70%);
}

.inquiry__bg-glow--2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    right: -5%;
    background: radial-gradient(circle, rgba(226, 32, 32, 0.03) 0%, transparent 70%);
}

/* Container — 2 column layout */
.inquiry__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

/* === Left: Info === */
.inquiry__info {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 16px;
}

.inquiry__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(226, 32, 32, 0.2);
    background: rgba(226, 32, 32, 0.06);
    width: fit-content;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}

.inquiry__badge.is-visible {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.inquiry__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e22020;
    animation: pulse 2s ease-in-out infinite;
}

.inquiry__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.inquiry__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.inquiry__title-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
}

.inquiry__title-line.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.inquiry__title-line--accent {
    color: #e22020;
    text-shadow: 0 0 60px rgba(226, 32, 32, 0.2);
}

.inquiry__title-line--accent.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.inquiry__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.88rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    max-width: 440px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
}

.inquiry__subtitle.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Trust badges */
.inquiry__trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px);
}

.inquiry__trust.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.inquiry__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inquiry__trust-item svg {
    color: rgba(226, 32, 32, 0.6);
    flex-shrink: 0;
}

.inquiry__trust-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

/* === Right: Form === */
.inquiry__form-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.inquiry__form-wrapper.is-visible {
    animation: pricingCardReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.inquiry__form-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(226, 32, 32, 0.1) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.inquiry__form {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 4vw, 44px);
    background: rgba(10, 10, 12, 0.92);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Row pairs */
.inquiry__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

/* Individual field */
.inquiry__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* Standalone field (textarea) needs its own spacing */
.inquiry__form > .inquiry__field {
    margin-bottom: 24px;
}

/* Labels */
.inquiry__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding-left: 2px;
}

/* Shared input base */
.inquiry__input {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 14px 16px;
    min-height: 50px;
    width: 100%;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.inquiry__input::placeholder {
    color: rgba(255, 255, 255, 0.18);
    font-weight: 400;
}

.inquiry__input:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
}

.inquiry__input:focus {
    border-color: rgba(226, 32, 32, 0.3);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 0 0 3px rgba(226, 32, 32, 0.06);
}

/* Select dropdown */
.inquiry__select {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.18);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.25)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: rgba(255, 255, 255, 0.035);
    padding-right: 42px;
}

.inquiry__select:has(option:checked:not([disabled])) {
    color: #fff;
}

.inquiry__select option {
    background: #0c0c0e;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px;
}

.inquiry__select option[disabled] {
    color: rgba(255, 255, 255, 0.25);
}

/* Textarea */
.inquiry__textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 260px;
    line-height: 1.6;
    padding-top: 16px;
}

/* Submit area */
.inquiry__form > .btn {
    margin-top: 4px;
}

/* Note */
.inquiry__note {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* ========================================
   INQUIRY — RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .inquiry__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inquiry__info {
        text-align: center;
        align-items: center;
    }

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

    .inquiry__trust {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .inquiry__form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .inquiry__form-row .inquiry__field {
        margin-bottom: 20px;
    }

    .inquiry__form-row {
        margin-bottom: 0;
    }

    .inquiry__form {
        padding: 24px 20px;
    }
}

/* ========================================
   CONTACTS SECTION
   ======================================== */

.contacts {
    position: relative;
    width: 100%;
    padding: clamp(40px, 6vh, 80px) 0 0 0;
    overflow: hidden;
}

.contacts__container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: clamp(60px, 10vh, 120px);
}

.contacts__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.contacts__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(226, 32, 32, 0.2);
    background: rgba(226, 32, 32, 0.06);
    width: fit-content;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}

.contacts__badge.is-visible {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contacts__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e22020;
    animation: pulse 2s ease-in-out infinite;
}

.contacts__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.contacts__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}

.contacts__title-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
}

.contacts__title-line.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contacts__title-line--accent {
    color: #e22020;
    text-shadow: 0 0 60px rgba(226, 32, 32, 0.2);
}

.contacts__title-line--accent.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.contacts__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
}

.contacts__links.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.contacts__link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contacts__link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(226,32,32,0) 0%, rgba(226,32,32,0.05) 50%, rgba(226,32,32,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contacts__link:hover::before {
    transform: translateX(100%);
}

.contacts__link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(226, 32, 32, 0.3);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(226, 32, 32, 0.1);
}

.contacts__link-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(226, 32, 32, 0.1);
    color: #e22020;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contacts__link:hover .contacts__link-icon {
    background: #e22020;
    color: #fff;
    transform: scale(1.05);
}

.contacts__link-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.contacts__link-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.contacts__link-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.contacts__link-arrow {
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.contacts__link:hover .contacts__link-arrow {
    color: #e22020;
    transform: translateX(4px);
}


/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    position: relative;
    z-index: 2;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .contacts__links {
        width: 100%;
        max-width: 440px;
    }
    
    .footer__container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
