:root {
    /* Brand */
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #7c3aed;
    --purple-deeper: #6d28d9;
    --purple-glow: #c4b5fd;
    --purple-bright: #b794f6;

    /* Accent (primary CTA) */
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fbbf24;

    /* Highlight (secondary) */
    --highlight: #38bdf8;
    --highlight-dim: rgba(56,189,248,0.08);

    /* Neutrals */
    --white: #ffffff;
    --dark: #0e1229;
    --darker: #0a0e20;
    --darkest: #06081a;

    /* Text */
    --text-body: rgba(255,255,255,0.8);
    --text-muted: rgba(255,255,255,0.5);

    /* Glass */
    --glass: rgba(8, 12, 32, 0.6);
    --glass-heavy: rgba(6, 10, 28, 0.8);
    --glass-border: rgba(139,92,246,0.1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background-color: #06081a;
    background-image:
        radial-gradient(ellipse 900px 700px at 8% 10%, rgba(139,92,246,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 92% 45%, rgba(59,102,246,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 35% 85%, rgba(139,92,246,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 800px 300px at 65% 25%, rgba(30,58,138,0.03) 0%, transparent 60%);
    background-attachment: fixed;
}
::selection { background: var(--purple); color: white; }

/* ====== NAVBAR ====== */
.navbar-main {
    background: rgba(6, 8, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139,92,246,0.08);
    transition: all 0.3s ease;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 90px;
    max-width: 1400px;
    margin: 0 auto;
}
.nav-logo { height: 68px; display: block; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li { position: relative; }
.nav-links li a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.9rem; right: 0.9rem;
    height: 2px;
    background: var(--purple-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}
.nav-links li a:hover { color: var(--purple-light); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--purple-light); }
.nav-links li a.active::after { transform: scaleX(1); }

/* ====== DROPDOWN ====== */
.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: rgba(10, 14, 35, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(139,92,246,0.12);
    border-radius: 12px;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 16px;
    background: transparent;
    display: none;
}
.has-dropdown:hover::before { display: block; }
.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: rgba(10, 14, 35, 0.95);
    border-top: 1px solid rgba(139,92,246,0.12);
    border-left: 1px solid rgba(139,92,246,0.12);
}
.nav-dropdown a {
    display: block;
    padding: 0.65rem 1.6rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(139,92,246,0.06);
    transition: all 0.25s ease;
    position: relative;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--purple);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.nav-dropdown a:hover {
    color: var(--white);
    background: rgba(139,92,246,0.1);
    padding-left: 1.8rem;
}
.nav-dropdown a:hover::before { opacity: 1; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.nav-social-icon:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}
.nav-book-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    color: var(--darkest);
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    background: var(--accent);
}
.nav-book-btn:hover {
    background: var(--accent-hover);
    color: var(--darkest);
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
    transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
    width: 34px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
    flex-shrink: 0;
}
.hamburger span:nth-child(2) { width: 65%; }

/* ====== HERO SECTION (index page) ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
}
.hero-slides {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
}
.hero-slide.active {
    opacity: 1;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(6,8,26,0.7) 0%, rgba(6,8,26,0.3) 40%, rgba(6,8,26,0.8) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 4rem 1.5rem;
}
.hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 1.2rem;
    display: inline-block;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 30px rgba(0,0,0,0.4);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ====== PAGE HERO (sub-pages) ====== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #080d24 0%, #111040 25%, #1e1560 50%, #14104a 75%, #0a0d2a 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139,92,246,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(59,102,241,0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(139,92,246,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(6,8,26,0.95), transparent);
    pointer-events: none;
}
.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--white);
}
.page-hero h1 span { color: var(--purple-glow) !important; }
.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ====== STRIPE DIVIDERS ====== */
.stripe-purple {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--purple-light), var(--purple), transparent);
    background-size: 200% 100%;
    animation: stripeFlow 6s linear infinite;
}

/* ====== GENERAL ====== */
.heading-bold {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.text-purple { color: var(--purple-light) !important; }
.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* ====== DARK SECTIONS ====== */
.section-dark {
    background: var(--glass);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6rem 0;
    position: relative;
}
.section-darkest {
    background: var(--glass-heavy);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6rem 0;
    position: relative;
}
.section-dark p, .section-darkest p {
    font-size: 1.05rem; line-height: 1.85; color: var(--text-body);
}

.about-box {
    background: rgba(139,92,246,0.08);
    border: 1px solid rgba(139,92,246,0.15);
    border-left: 3px solid var(--purple);
    border-radius: 12px;
    padding: 1.8rem;
    margin-top: 1.5rem;
}
.about-box p { color: var(--white) !important; font-weight: 500; margin: 0; }

/* ====== STATS BAR ====== */
.stats-bar {
    background: rgba(139,92,246,0.06);
    border-top: 1px solid rgba(139,92,246,0.1);
    border-bottom: 1px solid rgba(139,92,246,0.1);
    padding: 2.5rem 0;
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ====== SERVICE OVERVIEW CARDS ====== */
.service-card {
    border: 1px solid rgba(139,92,246,0.12);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: rgba(12, 16, 42, 0.4);
    z-index: 0;
}
.service-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: -2;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,
        rgba(6,8,26,0.15) 0%,
        rgba(6,8,26,0.4) 35%,
        rgba(6,8,26,0.85) 65%,
        rgba(6,8,26,0.95) 100%);
    z-index: -1;
    transition: all 0.4s ease;
}
.service-card:hover {
    border-color: rgba(139,92,246,0.35);
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        0 0 40px rgba(139,92,246,0.08);
}
.service-card:hover .service-card-bg {
    opacity: 0.6;
    transform: scale(1.08);
}
.service-card:hover::after {
    background: linear-gradient(180deg,
        rgba(6,8,26,0.05) 0%,
        rgba(6,8,26,0.3) 35%,
        rgba(6,8,26,0.8) 65%,
        rgba(6,8,26,0.92) 100%);
}
.service-card-inner {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    margin-top: auto;
}
.service-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--icon-color, var(--purple-light));
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.service-card:hover .service-card-icon {
    background: rgba(139,92,246,0.25);
    box-shadow: 0 4px 20px rgba(139,92,246,0.2);
    transform: scale(1.08);
}
.service-card h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.service-card p {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.service-card-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--purple-light);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.service-card-link:hover {
    color: var(--white);
    gap: 0.7rem;
}

/* ====== HIGHLIGHT CARDS ====== */
.highlight-card {
    padding: 2rem 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    background: rgba(12, 16, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.highlight-card:hover {
    border-color: rgba(139,92,246,0.25);
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.3),
        0 0 30px rgba(139,92,246,0.08);
}
.highlight-icon {
    font-size: 2rem;
    color: var(--purple-light);
    margin-bottom: 1rem;
    display: block;
}
.highlight-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.highlight-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ====== INCLUDED / EQUIPMENT SECTION ====== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.included-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(139,92,246,0.08);
    background: rgba(12, 16, 42, 0.4);
    transition: all 0.3s ease;
}
.included-item:hover {
    border-color: rgba(139,92,246,0.2);
    background: rgba(139,92,246,0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.included-item i {
    font-size: 1.2rem;
    color: var(--purple-light);
    flex-shrink: 0;
}
.included-item span {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    color: var(--white);
}

/* ====== TESTIMONIALS ====== */
.testimonial-scroll-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 1.5rem;
}
.testimonial-scroll-wrapper::before,
.testimonial-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.testimonial-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--glass), transparent);
}
.testimonial-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--glass), transparent);
}
.testimonial-scroll {
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: testimonialScroll 35s linear infinite;
    padding: 0.5rem 0;
    align-items: stretch;
}
.testimonial-track:hover {
    animation-play-state: paused;
}
@keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testimonial-card {
    background: rgba(12, 16, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem 1.6rem;
    width: 340px;
    min-width: 340px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    border-color: rgba(139,92,246,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139,92,246,0.1);
}
.testimonial-text {
    flex-grow: 1;
}
.testimonial-author {
    margin-top: auto;
    padding-top: 0.5rem;
}
@media (max-width: 575.98px) {
    .testimonial-card { width: 290px; min-width: 290px; padding: 1.5rem 1.3rem; }
    .testimonial-scroll-wrapper { margin: 0 0.8rem; }
}
.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.testimonial-author strong {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.88rem;
    color: var(--white);
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ====== STUDIO ROWS ====== */
.studio-row { padding: 4rem 0; border-bottom: 1px solid rgba(139,92,246,0.06); }
.studio-row:last-child { border-bottom: none; }
.studio-card {
    border-radius: 16px; overflow: hidden; height: 420px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(139,92,246,0.08);
}
.studio-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(139,92,246,0.2);
}
.studio-card-content { text-align: center; padding: 2rem; }
.label-sub {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    text-transform: uppercase; letter-spacing: 4px;
    font-size: 0.85rem; display: block;
}
.label-main {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase; letter-spacing: 3px;
    font-size: 3.2rem; line-height: 1; display: block; color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.label-desc {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    text-transform: uppercase; letter-spacing: 3px;
    font-size: 0.75rem; display: block; margin-top: 0.3rem;
}
.studio-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase; letter-spacing: 3px;
    font-size: 2.6rem; margin-bottom: 1.2rem; line-height: 1;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.92rem; padding: 0.6rem 0;
    color: var(--text-body); display: flex;
    align-items: center; gap: 0.8rem;
    transition: color 0.2s ease;
}
.feature-list li::before {
    content: ''; width: 7px; height: 7px;
    background: var(--purple-light);
    border-radius: 50%; flex-shrink: 0;
    box-shadow: 0 0 8px rgba(139,92,246,0.4);
}
.feature-list li:hover { color: var(--white); }

/* ====== BUTTONS ====== */
.btn-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #e68a00 100%);
    color: var(--darkest);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow:
        0 4px 15px rgba(245,158,11,0.3),
        0 0 0 0 rgba(245,158,11,0);
}
.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--darkest);
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(245,158,11,0.4),
        0 0 30px rgba(245,158,11,0.1);
}
.btn-accent-lg { padding: 1.15rem 3rem; font-size: 1rem; letter-spacing: 3px; }

.btn-hero-outline {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-purple {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deeper) 100%);
    color: var(--white);
    font-family: 'Oswald', sans-serif; font-weight: 500;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.95rem;
    padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none;
    transition: all 0.3s ease; border: none; cursor: pointer;
    box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}
.btn-purple:hover {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139,92,246,0.4), 0 0 30px rgba(139,92,246,0.1); color: var(--white);
}
.btn-purple-lg { padding: 1.2rem 3.5rem; font-size: 1.1rem; letter-spacing: 3px; }

.btn-purple-outline {
    display: inline-block;
    background: transparent;
    color: var(--purple-light);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    border: 1.5px solid rgba(139,92,246,0.35);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-purple-outline:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139,92,246,0.35);
}

/* ====== STUDIO SETS GALLERY ====== */
.studio-sets-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139,92,246,0.1);
}
.studio-sets-heading {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-align: center;
}
.studio-sets-heading i {
    color: var(--purple-light);
    margin-right: 0.5rem;
    font-size: 1.4rem;
}
.studio-sets-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
}
.studio-sets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.studio-set-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(12, 16, 42, 0.5);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}
.studio-set-card:hover {
    border-color: var(--purple);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139,92,246,0.2);
}
.studio-set-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.studio-set-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.studio-set-card:hover .studio-set-img img { transform: scale(1.08); }
.studio-set-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,5,21,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.studio-set-card:hover .studio-set-overlay { opacity: 1; }
.btn-purple-sm {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}
.btn-purple-sm:hover {
    background: var(--purple-deeper);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(139,92,246,0.5);
    transform: scale(1.05);
}
.studio-set-info {
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.studio-set-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.88rem;
    color: var(--white);
}
.studio-set-custom {
    border: 1px dashed rgba(139,92,246,0.25);
}
.studio-set-custom:hover {
    border-color: var(--purple);
    border-style: solid;
}

/* ====== ACCORDION ====== */
.enhance-section { padding: 5rem 0; position: relative; }
.side-stripes::before, .side-stripes::after {
    content: ''; position: absolute; top: 0; width: 120px; height: 100%;
    background: repeating-linear-gradient(-55deg, transparent, transparent 18px,
        rgba(139,92,246,0.03) 18px, rgba(139,92,246,0.03) 20px);
    pointer-events: none;
}
.side-stripes::before { left: 0; }
.side-stripes::after { right: 0; }

.accordion-item-custom { border-bottom: 2px solid rgba(139,92,246,0.15); }
.accordion-item-custom:hover { border-color: var(--purple); }
.accordion-header-custom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 0; cursor: pointer;
}
.accordion-header-custom h5 {
    font-family: 'Oswald', sans-serif; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 1.05rem; margin: 0; color: var(--white);
}
.accordion-header-custom:hover h5 { color: var(--purple-light); }
.accordion-header-custom .arrow {
    color: var(--purple-light); transition: transform 0.3s ease; font-size: 1rem;
}
.accordion-header-custom[aria-expanded="true"] .arrow { transform: rotate(180deg); }
.accordion-body-custom {
    padding: 0 0 1.5rem; color: var(--text-body);
    font-size: 0.95rem; line-height: 1.7;
}

/* ====== PRICING CARDS ====== */
.pricing-card {
    background: rgba(12, 16, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 2rem 1.8rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.pricing-card:hover {
    border-color: var(--purple);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139,92,246,0.2);
}
.pricing-card.featured {
    border-color: var(--purple);
    background: rgba(139,92,246,0.1);
    position: relative;
    box-shadow: 0 8px 30px rgba(139,92,246,0.12);
}
.pricing-badge {
    position: absolute;
    top: -12px; right: 1.5rem;
    background: var(--accent);
    color: var(--darkest);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.68rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.pricing-card h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.pricing-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.pricing-price span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 1rem 0;
    flex-grow: 1;
}
.pricing-btn {
    display: block;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    padding: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(139,92,246,0.35);
    color: var(--purple-light);
    background: transparent;
}
.pricing-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}
.pricing-card.featured .pricing-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--darkest);
    font-weight: 600;
}
.pricing-card.featured .pricing-btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}

/* ====== CTA SECTIONS ====== */
.cta-section {
    background: var(--glass);
    backdrop-filter: blur(6px);
    padding: 5.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section .container {
    position: relative;
    z-index: 1;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}
.cta-section .heading-bold {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}
.cta-section p {
    color: var(--text-body);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== CONTACT ====== */
.contact-section {
    background: var(--glass);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5rem 0;
    position: relative;
}
.contact-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.contact-form-box {
    background: rgba(12, 16, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.form-input {
    background: rgba(139,92,246,0.04);
    border: 1px solid rgba(139,92,246,0.1);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    color: var(--white);
    font-size: 0.92rem;
    width: 100%;
    transition: all 0.3s ease;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
    outline: none; border-color: var(--purple);
    background: rgba(139,92,246,0.08);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
textarea.form-input { min-height: 110px; resize: vertical; }
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a78bfa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
select.form-input option { background: var(--dark); color: var(--white); }
.contact-info-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139,92,246,0.06);
}
.contact-info-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-light); font-size: 1rem; flex-shrink: 0;
}
.contact-info-label {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.72rem; color: var(--text-muted);
}
.contact-info-value { font-size: 0.92rem; color: var(--white); }

/* ====== FOOTER ====== */
.footer-main {
    background: var(--glass-heavy);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(139,92,246,0.08);
    padding: 3.5rem 0 1.5rem;
}
.footer-logo { height: 50px; margin-bottom: 1rem; }
.footer-heading {
    font-family: 'Oswald', sans-serif; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.88rem; margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.85rem; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-links a:hover { color: var(--purple-light); transform: translateX(3px); }
.social-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(139,92,246,0.15); border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none;
    transition: all 0.3s ease; font-size: 0.9rem;
    background: rgba(139,92,246,0.05);
}
.social-icon:hover {
    background: var(--purple); border-color: var(--purple);
    color: var(--white); transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.2rem; margin-top: 2.5rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

/* ====== OFFCANVAS ====== */
.offcanvas {
    background: rgba(6, 10, 26, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(139,92,246,0.1) !important;
}
.offcanvas-header img { filter: none; }
.mobile-nav-link {
    display: block; font-family: 'Oswald', sans-serif; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; font-size: 1.2rem;
    color: var(--white); text-decoration: none; padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139,92,246,0.08);
}
.mobile-nav-link:hover { color: var(--purple-light); }
.mobile-sub-links {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}
.mobile-sub-links a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}
.mobile-sub-links a:hover { color: var(--purple-light); }

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

/* ── Large tablets & small desktops (≤1199px) ── */
@media (max-width: 1199.98px) {
    .navbar-inner { padding: 0 1.5rem; }
    .service-card-inner { padding: 1.8rem 1.3rem; }
}

/* ── Tablets (≤991px) ── */
@media (max-width: 991.98px) {
    /* Nav */
    .nav-links { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }
    .nav-logo { height: 48px; }
    .navbar-inner { height: 72px; padding: 0 1.2rem; }

    /* Hero */
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .hero-subtitle { font-size: 0.88rem; }

    /* Page hero */
    .page-hero { padding: 130px 0 60px; }

    /* Sections */
    .section-dark, .section-darkest { padding: 4.5rem 0; }
    .cta-section { padding: 4rem 0; }

    /* About section: center text when columns stack */
    #about .col-lg-6 { text-align: center; }
    #about .about-box { text-align: left; }
    #about .d-flex.gap-2 { justify-content: center; }

    /* Grids */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .studio-sets-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }

    /* Cards */
    .studio-card { height: 320px; }
    .side-stripes::before, .side-stripes::after { display: none; }

    /* Footer */
    .footer-main .row { gap: 2rem 0; }

    /* About section image */
    .studio-card[style*="height:400px"] { height: 320px !important; }

    /* Blog grid */
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* Pricing cards */
    .pricing-card { padding: 1.8rem 1.5rem; }
}

/* ── Small tablets & large phones (≤767px) ── */
@media (max-width: 767.98px) {
    /* Hero CTAs */
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas a { width: 280px; text-align: center; }

    /* Service cards */
    .service-card { text-align: center; }
    .service-card-inner { text-align: center; }
    .service-card-icon { margin: 0 auto 1rem; }
    .service-card-link { justify-content: center; }

    /* Sections */
    .section-dark, .section-darkest { padding: 3.5rem 0; }
    .cta-section { padding: 3.5rem 0; }

    /* About row */
    .studio-card[style*="height:400px"] { height: 280px !important; }

    /* Trust bar */
    .trust-bar { padding: 1.5rem 0 1.2rem; }
    .trust-label { font-size: 0.68rem; letter-spacing: 2px; }
    .trust-subtitle { font-size: 0.75rem; margin-bottom: 1.2rem; }
    .logo-item { height: 35px; max-width: 110px; }
    .logo-track { gap: 2.5rem; animation-duration: 20s; }

    /* Testimonial cards */
    .testimonial-card { width: 310px; min-width: 310px; }
    .testimonial-scroll-wrapper { margin: 0 1rem; }

    /* Footer */
    .footer-logo { height: 40px; }
    .footer-main { padding: 3rem 0 1.2rem; }

    /* Contact */
    .contact-form-box { padding: 1.8rem 1.2rem; }

    /* Blog post */
    .blog-post-content { padding: 0 0.5rem; }

    /* Pricing */
    .pricing-price { font-size: 2.4rem; }

    /* Heading sizes */
    .heading-bold { letter-spacing: 3px; }
}

/* ── Phones (≤575px) ── */
@media (max-width: 575.98px) {
    /* Hero */
    .hero { min-height: 90vh; }
    .hero-title { font-size: clamp(2rem, 10vw, 3rem); letter-spacing: 3px; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 2.5px; }
    .hero-subtitle { font-size: 0.82rem; padding: 0 0.5rem; }
    .hero-ctas a { width: 100%; max-width: 300px; }
    .hero-content { padding: 3rem 1rem; }
    .hero-rating { padding: 0.4rem 1rem; }
    .hero-rating-text { font-size: 0.72rem; }

    /* Page hero */
    .page-hero { padding: 115px 0 45px; }
    .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); letter-spacing: 3px; }
    .page-hero p { font-size: 0.9rem; padding: 0 1rem; }

    /* Sections */
    .section-dark, .section-darkest { padding: 3rem 0; }
    .cta-section { padding: 3rem 0; }
    .cta-section .heading-bold { font-size: clamp(1.2rem, 5vw, 1.6rem) !important; }
    .cta-section p { font-size: 0.88rem; }

    /* Stats */
    .stats-bar { padding: 2rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.68rem; letter-spacing: 1.5px; }

    /* Service cards */
    .service-card-inner { padding: 1.5rem 1.2rem; }

    /* Included grid */
    .included-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .included-item { padding: 0.85rem 0.7rem; gap: 0.5rem; }
    .included-item span { font-size: 0.7rem; letter-spacing: 0.5px; }
    .included-item i { font-size: 1rem; }

    /* Studio sets gallery */
    .studio-sets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .studio-set-info { padding: 0.7rem 0.8rem; }
    .studio-set-name { font-size: 0.72rem; }
    .studio-sets-heading { font-size: 1.4rem; }

    /* Studio row cards (services page) */
    .studio-card { height: 260px; }
    .label-main { font-size: 2.4rem; }
    .studio-info h3 { font-size: 2rem; }
    .feature-list li { font-size: 0.85rem; padding: 0.5rem 0; }

    /* Testimonial carousel */
    .testimonial-card { width: 280px; min-width: 280px; padding: 1.4rem 1.2rem; }
    .testimonial-text { font-size: 0.88rem; }
    .testimonial-scroll-wrapper { margin: 0 0.6rem; }

    /* Google rating badge */
    .google-rating-badge { font-size: 0.75rem; padding: 0.35rem 1rem; }

    /* Contact */
    .contact-form-box { padding: 1.5rem 1rem; }
    .contact-info-item { padding: 0.7rem 0; }
    .contact-info-icon { width: 36px; height: 36px; font-size: 0.9rem; }

    /* Footer */
    .footer-main { padding: 2.5rem 0 1rem; }
    .footer-logo { height: 36px; }
    .footer-heading { font-size: 0.82rem; margin-bottom: 0.8rem; }
    .footer-links a { font-size: 0.8rem; }
    .footer-bottom p { font-size: 0.7rem; }
    .social-icon { width: 32px; height: 32px; font-size: 0.8rem; }

    /* Buttons */
    .btn-accent { padding: 0.9rem 2rem; font-size: 0.88rem; }
    .btn-accent-lg { padding: 1rem 2.5rem; font-size: 0.92rem; }
    .btn-purple { padding: 0.9rem 2rem; font-size: 0.88rem; }
    .btn-purple-outline { padding: 0.9rem 2rem; font-size: 0.88rem; }
    .btn-hero-outline { padding: 0.9rem 2rem; font-size: 0.88rem; }

    /* Pricing */
    .pricing-card { padding: 1.5rem 1.3rem; border-radius: 14px; }
    .pricing-price { font-size: 2.2rem; }
    .pricing-badge { font-size: 0.62rem; padding: 0.25rem 0.8rem; }

    /* Blog grid */
    .blog-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .blog-card-body { padding: 1.2rem; }
    .blog-card-title { font-size: 0.92rem; }

    /* Blog post */
    .blog-post-content h2 { font-size: 1.2rem; }
    .blog-post-hero-img { border-radius: 12px; }

    /* Accordion */
    .accordion-header-custom h5 { font-size: 0.92rem; }
    .accordion-body-custom { font-size: 0.88rem; }

    /* About box */
    .about-box { padding: 1.4rem; }
    .about-box p { font-size: 0.9rem !important; }

    /* Section subtitle */
    .section-subtitle { font-size: 0.85rem; padding: 0 0.5rem; }

    /* Highlight cards */
    .highlight-card { padding: 1.5rem 1rem; }
    .highlight-icon { font-size: 1.6rem; }
    .highlight-title { font-size: 0.92rem; }
    .highlight-desc { font-size: 0.8rem; }
}

/* ── Very small phones (≤400px) ── */
@media (max-width: 400px) {
    .hero-title { font-size: clamp(1.8rem, 11vw, 2.5rem); }
    .hero-ctas a { font-size: 0.82rem; padding: 0.85rem 1.8rem; }
    .stat-number { font-size: 1.8rem; }
    .included-grid { grid-template-columns: 1fr; }
    .studio-sets-grid { grid-template-columns: 1fr; }
    .testimonial-card { width: 260px; min-width: 260px; }
    .pricing-card h4 { font-size: 0.9rem; }
    .btn-accent, .btn-purple, .btn-purple-outline, .btn-hero-outline {
        padding: 0.85rem 1.6rem;
        font-size: 0.82rem;
        letter-spacing: 1.5px;
    }
    .navbar-inner { padding: 0 1rem; }
    .page-hero h1 { font-size: clamp(1.5rem, 9vw, 2.2rem); }
}

/* ====== BLOG POST (single article) ====== */
.blog-post-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.blog-post-meta-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.blog-post-meta-bar i {
    color: var(--purple-light);
    font-size: 0.75rem;
}
.blog-post-content {
    max-width: 780px;
    margin: 0 auto;
}
.blog-post-hero-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    aspect-ratio: 16/9;
    object-fit: cover;
}
.blog-post-content h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.4rem;
    color: var(--white);
    margin: 2.5rem 0 1rem;
}
.blog-post-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    color: var(--purple-light);
    margin: 1.5rem 0 0.8rem;
}
.blog-post-content p {
    font-size: 1rem !important;
    line-height: 1.85 !important;
    color: var(--text-body) !important;
    margin-bottom: 1.2rem;
}
.blog-post-content ul,
.blog-post-content ol {
    color: var(--text-body);
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}
.blog-post-content li {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}
.blog-post-content blockquote {
    border-left: 3px solid var(--purple);
    background: rgba(139,92,246,0.06);
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
    font-style: italic;
}
.blog-post-content blockquote p {
    color: var(--white) !important;
    margin: 0;
}
.blog-post-content strong {
    color: var(--white);
}
.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
    color: var(--purple-light);
    text-decoration: none;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139,92,246,0.1);
    transition: all 0.3s ease;
    display: block;
}
.blog-post-back:hover {
    color: var(--white);
}

/* ====== HERO RATING BADGE ====== */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
    padding: 0.5rem 1.3rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-rating-stars {
    color: var(--accent-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.hero-rating-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ====== TRUST BAR ====== */
.trust-bar {
    background: rgba(139,92,246,0.04);
    border-top: 1px solid rgba(139,92,246,0.08);
    border-bottom: 1px solid rgba(139,92,246,0.08);
    padding: 2.5rem 0 2rem;
    text-align: center;
    overflow: hidden;
}
.trust-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.3rem;
}
.trust-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0 0 1.8rem;
    font-style: italic;
}

/* Logo Carousel */
.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}
.logo-item {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* ====== GOOGLE RATING BADGE ====== */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.4rem 1.2rem;
    background: rgba(139,92,246,0.08);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-body);
}
.google-rating-badge i {
    font-size: 0.9rem;
}
.google-rating-stars {
    color: var(--accent-light);
    letter-spacing: 1px;
}

/* ====== BLOG ====== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    background: rgba(12, 16, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: rgba(139,92,246,0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139,92,246,0.15);
}
.blog-card-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a3e, #2d1566);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.blog-card-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog-card-title a:hover {
    color: var(--purple-light);
}
.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}
.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.blog-card-meta i {
    font-size: 0.7rem;
    color: var(--purple-light);
}
.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}
.blog-card-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    color: var(--purple-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}
.blog-card-link:hover {
    color: var(--white);
    gap: 0.7rem;
}

@media (max-width: 991.98px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 575.98px) {
    .blog-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .blog-card-body { padding: 1.2rem; }
}

/* ====== MOTION SYSTEM ====== */
/* Easing tokens */
/* --ease-out: cubic-bezier(0.22, 1, 0.36, 1) — smooth decelerate */
/* --ease-spring: cubic-bezier(0.16, 1, 0.3, 1)  — slight overshoot */

/* ── Keyframes ── */
@keyframes stripeFlow {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ── Global transition defaults ── */
.btn-accent,
.btn-purple,
.btn-purple-outline,
.btn-hero-outline,
.nav-book-btn {
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Button hover: lift + shadow ── */
.btn-accent:hover,
.btn-purple:hover {
    transform: translateY(-3px);
}
.btn-accent:active,
.btn-purple:active,
.btn-purple-outline:active,
.btn-hero-outline:active {
    transform: translateY(0) scale(0.97);
    transition-duration: 0.1s;
}

/* ── Card hover system (unified) ── */
.service-card,
.highlight-card,
.pricing-card,
.blog-card,
.studio-set-card,
.testimonial-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
}
.highlight-card:hover,
.pricing-card:hover,
.blog-card:hover,
.studio-set-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(139,92,246,0.06);
}

/* ── Link hover ── */
.nav-links li a,
.footer-links a,
.service-card-link,
.blog-card-link {
    transition: color 0.2s ease, gap 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover { transform: translateX(3px); }

/* ── Social icons: smooth scale ── */
.social-icon,
.nav-social-icon {
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.social-icon:hover,
.nav-social-icon:hover {
    transform: translateY(-2px) scale(1.08);
}

/* ── Featured pricing: subtle border glow ── */
.pricing-card.featured {
    border-color: var(--purple);
    box-shadow: 0 8px 30px rgba(139,92,246,0.1);
}
.pricing-card.featured:hover {
    border-color: var(--purple-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(139,92,246,0.08);
}

/* ── Service card background reveal ── */
.service-card-bg {
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-bg {
    opacity: 0.6;
    transform: scale(1.06);
}
.service-card-icon {
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(139,92,246,0.15);
}

/* ── Studio set card image zoom ── */
.studio-set-img img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.studio-set-card:hover .studio-set-img img {
    transform: scale(1.06);
}
.studio-set-overlay {
    transition: opacity 0.3s ease;
}

/* ── Hero slide: Ken Burns ── */
.hero-slide {
    transition: opacity 1.8s ease;
    transform: scale(1.04);
}
.hero-slide.active {
    transform: scale(1);
    transition: opacity 1.8s ease, transform 7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Input focus ── */
.form-input,
.lml-chat-input input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* ── Accordion ── */
.accordion-header-custom {
    transition: color 0.2s ease;
}
.accordion-header-custom .arrow {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Navbar scroll shadow ── */
.navbar-main {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* ── Stripe flow (continuous) ── */
.stripe-purple {
    animation: stripeFlow 6s linear infinite;
}

/* ── Blog card image zoom ── */
.blog-card-img img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

/* ── Section ambient glow (static, no animation) ── */
.section-dark::before,
.section-darkest::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 600px 300px at 50% 0%, rgba(139,92,246,0.03) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 90% 80%, rgba(56,189,248,0.015) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Reduced motion: respect accessibility ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-slide { transition: opacity 0.5s ease !important; transform: none !important; }
    .hero-slide.active { transform: none !important; }
    .testimonial-track { animation: none !important; }
    [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darkest); }
::-webkit-scrollbar-thumb { background: var(--purple-deeper); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }
