/* ============================================
   RV Rising Media - Modern Conversion-Focused CSS
   ============================================ */

:root {
    --primary: #e63946;
    --primary-dark: #b8232f;
    --primary-light: #ff5a6a;
    --accent: #ffb703;
    --dark: #0f1419;
    --dark-2: #1a2332;
    --gray: #5a6772;
    --light: #f8f9fb;
    --white: #ffffff;
    --border: #e5e7eb;
    --gradient: linear-gradient(135deg, #e63946 0%, #b8232f 100%);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    --gradient-accent: linear-gradient(135deg, #ffb703 0%, #fd8a09 100%);
    --shadow-sm: 0 2px 8px rgba(15, 20, 25, 0.06);
    --shadow: 0 8px 24px rgba(15, 20, 25, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 20, 25, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Override Bootstrap reboot's `ul, ol, dl { margin-bottom: 1rem }` so list
   margins stay at 0 on Laravel pages too (Bootstrap's element selector
   otherwise beats our `*` reset by specificity). */
ul, ol, dl { margin-top: 0; margin-bottom: 0; }

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-2);
    background: var(--white);
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', 'Poppins', serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(230, 57, 70, 0.35);
}
.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(230, 57, 70, 0.45);
}
.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--primary-dark); }
.btn-outline-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-block { width: 100%; }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
}
.top-bar a { color: rgba(255, 255, 255, 0.85); }
.top-bar a:hover { color: var(--accent); }
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left a { margin-right: 10px; }
.top-bar-left i { margin-right: 6px; color: var(--accent); }
.top-bar-left .divider { opacity: 0.4; margin-right: 10px; }
.top-bar-right a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-left: 5px;
}
.top-bar-right a:hover { background: var(--primary); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}
.logo-mark {
    width: 46px; height: 46px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
}
.logo-text small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}
/* Image-based logo (replaces the old .logo-mark + .logo-text spans) */
.logo-img {
    display: block;
    height: 50px;
    width: auto;
    max-width: 220px;
}
.logo-footer .logo-img { height: 56px; max-width: 240px; }
@media (max-width: 768px) {
    .logo-img { height: 42px; max-width: 180px; }
    .logo-footer .logo-img { height: 50px; max-width: 210px; }
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { display: flex; gap: 6px; list-style: none; }
.main-nav ul a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
}
.main-nav ul a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.main-nav ul a:hover::after,
.main-nav ul a.active::after { width: 50%; }
.main-nav ul a.active { color: var(--primary); }
.nav-cta { padding: 12px 24px; font-size: 14px; }
.nav-toggle, .nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    padding: 90px 0 110px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.35) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 183, 3, 0.18) 0%, transparent 50%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--accent); }
.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-item i { color: var(--accent); font-size: 20px; }
.hero-trust-item span { font-size: 14px; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.hero-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=800&q=80') center/cover;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}
.hero-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 20, 25, 0.7));
}
.hero-card-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.hero-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-mini-stat {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.hero-mini-stat strong {
    display: block;
    font-size: 26px;
    color: var(--accent);
    font-family: 'Fraunces', serif;
}
.hero-mini-stat span { font-size: 12px; color: rgba(255, 255, 255, 0.75); }

/* Floating decoration on hero */
.float-deco {
    position: absolute;
    border-radius: 50%;
    animation: floatY 6s ease-in-out infinite;
}
.float-deco-1 {
    top: 10%; right: 10%;
    width: 80px; height: 80px;
    background: var(--gradient-accent);
    opacity: 0.15;
}
.float-deco-2 {
    bottom: 15%; left: 8%;
    width: 120px; height: 120px;
    background: var(--gradient);
    opacity: 0.18;
    animation-delay: 1.5s;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* ---------- Sections General ---------- */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    padding-left: 40px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 30px; height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}
.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}
.section-head p { color: var(--gray); font-size: 17px; }

/* ---------- Stats / Counter Strip ---------- */
.stats-strip {
    background: var(--gradient);
    padding: 60px 0;
    color: var(--white);
    margin-top: -50px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}
.stats-strip .container { max-width: 1180px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item .stat-num {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Fraunces', serif;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item .stat-num small { font-size: 28px; }
.stat-item .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}
.stat-item i { font-size: 32px; margin-bottom: 12px; opacity: 0.7; }

/* ---------- Services ---------- */
.services { background: var(--light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(184, 35, 47, 0.1));
    color: var(--primary);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(-6deg) scale(1.08);
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--gray); margin-bottom: 18px; font-size: 15px; }
.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-card .service-link:hover { gap: 12px; }

/* ---------- Why Choose Us ---------- */
.why-us { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-floater {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
}
.why-floater i {
    width: 50px; height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.why-floater strong { display: block; font-size: 22px; color: var(--dark); }
.why-floater span { font-size: 13px; color: var(--gray); }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.why-content > p { color: var(--gray); margin-bottom: 26px; }
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i {
    width: 36px; height: 36px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.feature-list h4 { font-family: 'Poppins', sans-serif; font-size: 17px; margin-bottom: 4px; }
.feature-list p { font-size: 14px; color: var(--gray); margin: 0; }

/* ---------- About Founder section ---------- */
.founder { background: var(--light); }
.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.founder-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.founder-photo img { aspect-ratio: 4/5; object-fit: cover; }
.founder-quote {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    max-width: 80%;
    box-shadow: var(--shadow);
}
.founder-quote i { font-size: 24px; opacity: 0.6; margin-bottom: 4px; }
.founder-quote p { font-size: 14px; font-style: italic; }
.founder-content h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.founder-content .role { color: var(--primary); font-weight: 600; margin-bottom: 18px; display: inline-block; }
.founder-content p { color: var(--gray); margin-bottom: 16px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testi-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: var(--white); }
.testi-card .quote-mark {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 50px;
    color: var(--primary);
    opacity: 0.15;
    font-family: 'Fraunces', serif;
    line-height: 1;
}
.testi-stars { color: var(--accent); margin-bottom: 14px; }
.testi-card p { color: var(--dark-2); margin-bottom: 22px; font-size: 15px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; color: var(--dark); }
.testi-author span { font-size: 13px; color: var(--gray); }

/* ---------- Page Banner ---------- */
.page-banner {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.3), transparent 60%);
}
.page-banner-inner { position: relative; }
.page-banner h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}
.breadcrumbs { display: inline-flex; gap: 8px; color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--accent); }

/* ---------- About page extras ---------- */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-intro-img img { aspect-ratio: 4/3; object-fit: cover; }
.about-intro-img .img-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}
.about-intro-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-intro-content p { color: var(--gray); margin-bottom: 16px; }

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mvv-icon {
    width: 80px; height: 80px;
    margin: 0 auto 22px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
}
.mvv-card h3 { font-size: 22px; margin-bottom: 12px; }
.mvv-card p { color: var(--gray); }

/* ---------- Services page ---------- */
.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.service-detail-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-card:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
.service-detail-card:nth-child(even) .service-detail-img { order: 2; }
.service-detail-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    min-height: 320px;
}
.service-detail-body { padding: 40px; }
.service-detail-body .service-icon { margin-bottom: 18px; }
.service-detail-body h3 { font-size: 26px; margin-bottom: 14px; }
.service-detail-body p { color: var(--gray); margin-bottom: 18px; }
.service-points { list-style: none; margin-bottom: 24px; }
.service-points li {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0; font-size: 15px; color: var(--dark-2);
}
.service-points li i { color: var(--primary); }

/* ---------- Contact page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}
.contact-info-card {
    background: var(--gradient-dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.3;
}
.contact-info-card h3 { color: var(--white); font-size: 26px; margin-bottom: 12px; position: relative; }
.contact-info-card > p { color: rgba(255, 255, 255, 0.8); margin-bottom: 28px; position: relative; }
.contact-info-list { list-style: none; position: relative; }
.contact-info-list li {
    display: flex; gap: 14px; padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list i {
    width: 42px; height: 42px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.contact-info-list span { color: rgba(255, 255, 255, 0.75); font-size: 13px; display: block; }
.contact-info-list a, .contact-info-list strong { color: var(--white); font-weight: 500; }
.contact-info-list a:hover { color: var(--accent); }
.contact-socials-mini { margin-top: 30px; display: flex; gap: 10px; position: relative; }
.contact-socials-mini a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
}
.contact-socials-mini a:hover { background: var(--primary); transform: translateY(-3px); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 28px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray); margin-bottom: 30px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.contact-form .input-group {
    position: relative;
    margin-bottom: 18px;
}
.contact-form .input-group i {
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background: var(--light);
    transition: var(--transition);
}
.contact-form textarea { resize: vertical; min-height: 130px; padding-top: 16px; }
.contact-form .input-group:has(textarea) i { top: 22px; transform: none; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.contact-map {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Flash Toast (global) ---------- */
.flash-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    z-index: 1100;
    min-width: 280px;
    max-width: calc(100vw - 40px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(15, 20, 25, 0.22), 0 4px 10px rgba(15, 20, 25, 0.08);
    padding: 16px 44px 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s ease;
    border-left: 4px solid var(--primary);
}
.flash-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.flash-toast > i {
    font-size: 22px;
    flex-shrink: 0;
}
.flash-toast .flash-msg { flex: 1; line-height: 1.5; }
.flash-toast.flash-success { border-left-color: #10b981; color: #065f46; }
.flash-toast.flash-success > i { color: #10b981; }
.flash-toast.flash-error { border-left-color: #ef4444; color: #991b1b; }
.flash-toast.flash-error > i { color: #ef4444; }
.flash-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: transparent;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.flash-close:hover { background: var(--light); color: var(--dark); }
@media (max-width: 480px) {
    .flash-toast {
        top: 14px;
        min-width: 0;
        width: calc(100vw - 24px);
        padding: 14px 40px 14px 16px;
        font-size: 14px;
    }
    .flash-toast > i { font-size: 20px; }
}

/* ---------- Alert / Form result ---------- */
.alert-success, .alert-error {
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-weight: 500;
    display: flex; gap: 12px; align-items: flex-start;
}
.alert-success { background: #ecfdf5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error { background: #fef2f2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-success i, .alert-error i { font-size: 22px; margin-top: 2px; }

/* ---------- CTA Strip ---------- */
.cta-strip {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cpath d="M0 50 L50 0 L100 50 L50 100 Z" fill="white" opacity="0.05"/%3E%3C/svg%3E') 0 0/80px;
    opacity: 0.5;
}
.cta-strip-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-strip h3 { color: var(--white); font-size: 28px; margin-bottom: 6px; }
.cta-strip p { opacity: 0.92; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-col h4 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
}
.logo-footer { color: var(--white); margin-bottom: 20px; }
.logo-footer .logo-text { color: var(--white); }
.logo-footer .logo-text small { color: rgba(255, 255, 255, 0.6); }
.footer-about { font-size: 14px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a i { font-size: 10px; color: var(--primary); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover i { transform: translateX(4px); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer-contact i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.footer-contact a { color: rgba(255, 255, 255, 0.7); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 13px;
}
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ===============================
   Floating Action Buttons
   =============================== */
.float-actions {
    position: fixed;
    right: 22px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 998;
}
.float-btn {
    position: relative;
    width: 62px; height: 62px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 27px;
    text-decoration: none;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.22),
        0 2px 6px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
    isolation: isolate;
}
.float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.45), transparent 55%);
    pointer-events: none;
    z-index: 1;
}
.float-btn i { position: relative; z-index: 2; }
.float-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.float-call { background: var(--gradient); }
.float-btn:hover {
    color: var(--white);
    transform: translateY(-4px) scale(1.06);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.28),
        0 4px 12px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.float-whatsapp:hover { box-shadow: 0 20px 42px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.float-call:hover { box-shadow: 0 20px 42px rgba(230, 57, 70, 0.45), 0 4px 12px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.3); }

/* Online status dot on WhatsApp */
.float-whatsapp::after {
    content: '';
    position: absolute;
    top: 4px; right: 4px;
    width: 12px; height: 12px;
    background: #4ade80;
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
    animation: statusPulse 2s ease-in-out infinite;
    z-index: 3;
}
@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
    z-index: 0;
}
.float-whatsapp .float-pulse { background: rgba(37, 211, 102, 0.5); }
.float-call .float-pulse { background: rgba(230, 57, 70, 0.55); animation-delay: 1s; }
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.7); opacity: 0; }
}
.float-call i { animation: shakePhone 2s ease-in-out infinite; transform-origin: center; }
.float-whatsapp i { animation: bounceChat 2.4s ease-in-out infinite; }
@keyframes shakePhone {
    0%, 70%, 100% { transform: rotate(0); }
    78% { transform: rotate(-14deg); }
    84% { transform: rotate(10deg); }
    90% { transform: rotate(-8deg); }
    96% { transform: rotate(4deg); }
}
@keyframes bounceChat {
    0%, 65%, 100% { transform: translateY(0); }
    78% { transform: translateY(-5px); }
    88% { transform: translateY(-2px); }
}
.float-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--dark);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
}
.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}
.float-btn:hover .float-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ===============================
   Popup Form
   =============================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 25, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 880px;
    width: 100%;
    max-height: 92vh;
    overflow: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    transform: scale(0.85) translateY(40px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.popup-overlay.active .popup-modal { transform: scale(1) translateY(0); }
.popup-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    transition: var(--transition);
}
.popup-close:hover { background: var(--primary); color: var(--white); transform: rotate(90deg); }
.popup-banner {
    background: var(--gradient);
    color: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
}
.popup-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Ccircle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.2"/%3E%3C/svg%3E') 0 0/120px;
}
.popup-banner-inner { position: relative; }
.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}
.popup-badge i { color: var(--accent); }
.popup-banner h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.2;
}
.popup-banner p { color: rgba(255, 255, 255, 0.92); margin-bottom: 24px; font-size: 15px; }
.popup-perks { list-style: none; }
.popup-perks li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; font-size: 14px;
}
.popup-perks i { color: var(--accent); }
.popup-body { padding: 40px 35px; }
.popup-form .form-row { margin-bottom: 14px; }
.popup-form label {
    position: relative;
    display: block;
}
.popup-form label > i {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}
.popup-form input, .popup-form select {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: var(--light);
    transition: var(--transition);
}
.popup-form input:focus, .popup-form select:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}
.form-mini { font-size: 11px; color: var(--gray); text-align: center; margin-top: 10px; }

/* ===============================
   Studio Page
   =============================== */

/* Hero */
.studio-hero {
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 100px;
}
.studio-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.35) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 183, 3, 0.18) 0%, transparent 50%);
}
.studio-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.studio-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.2vw, 3.3rem);
    line-height: 1.15;
    margin-bottom: 22px;
}
.studio-hero h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.studio-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 560px;
}
.studio-hero-visual { display: flex; justify-content: center; }
.studio-hero-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background: #000;
}
.studio-hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.studio-hero-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}
.studio-hero-tag i { font-size: 8px; animation: blinkDot 1.4s ease-in-out infinite; }
@keyframes blinkDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.studio-hero-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 22px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    z-index: 2;
}
.studio-hero-overlay strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--white);
}
.studio-hero-overlay span { font-size: 13px; color: rgba(255, 255, 255, 0.78); }
.studio-hero-play {
    width: 52px; height: 52px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(230, 57, 70, 0.4);
}
.studio-hero-play:hover { color: var(--white); transform: scale(1.08); }

/* Hero video animated play button (shown when autoplay fails) */
.studio-hero-playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: none;
    background: var(--gradient);
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 14px 36px rgba(230, 57, 70, 0.5),
                0 0 0 4px rgba(255, 255, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease,
                visibility 0.3s ease,
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    isolation: isolate;
}
.studio-hero-playbtn[hidden] { display: none; }
.studio-hero-playbtn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.studio-hero-playbtn i {
    position: relative;
    z-index: 2;
    margin-left: 4px;  /* optical centering for triangle glyph */
}
.studio-hero-playbtn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 18px 44px rgba(230, 57, 70, 0.6),
                0 0 0 6px rgba(255, 255, 255, 0.18);
}
.studio-hero-playbtn:active {
    transform: translate(-50%, -50%) scale(0.96);
}

/* Expanding pulse rings */
.studio-hero-playbtn-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: heroPlayPulse 2.2s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}
.studio-hero-playbtn-ring-2 { animation-delay: 1.1s; }
@keyframes heroPlayPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}

@media (max-width: 480px) {
    .studio-hero-playbtn { width: 70px; height: 70px; font-size: 22px; }
}

/* Hero video mute / unmute toggle */
.studio-hero-mute {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 20, 25, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.studio-hero-mute:hover {
    background: var(--primary);
    transform: scale(1.08);
}
.studio-hero-mute.is-muted {
    background: rgba(230, 57, 70, 0.85);
}
.studio-hero-mute.is-muted:hover { background: var(--primary); }
.studio-hero-mute i { pointer-events: none; }
@media (max-width: 480px) {
    .studio-hero-mute { width: 40px; height: 40px; font-size: 14px; bottom: 10px; right: 10px; }
}

/* Trust strip */
.studio-trust-strip {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}
.studio-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.studio-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--light);
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.studio-trust-item:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--shadow);
}
.studio-trust-item i {
    width: 46px; height: 46px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.studio-trust-item span {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.3;
}
.studio-trust-item small {
    display: block;
    font-weight: 400;
    color: var(--gray);
    font-size: 12px;
    margin-top: 2px;
}

/* Included */
.studio-included { background: var(--light); }
.studio-included-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.studio-included-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.studio-included-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.studio-included-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow);
}
.studio-included-badge i {
    width: 42px; height: 42px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
}
.studio-included-badge strong { display: block; color: var(--dark); font-size: 16px; }
.studio-included-badge span { font-size: 12px; color: var(--gray); }
.studio-included-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.studio-included-content > p { color: var(--gray); margin-bottom: 26px; }
.studio-checklist { list-style: none; margin-bottom: 28px; }
.studio-checklist li {
    display: flex; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    align-items: flex-start;
}
.studio-checklist li:last-child { border-bottom: none; }
.studio-checklist li > i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}
.studio-checklist strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}
.studio-checklist span { font-size: 14px; color: var(--gray); }
.studio-extras {
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: var(--radius);
}
.studio-extras-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 10px;
}
.studio-extras-label i { color: var(--primary); }
.studio-extras-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.studio-extras-tags span {
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary);
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
}

/* Pricing */
.studio-pricing { background: var(--white); }
.studio-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.studio-price-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.studio-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.studio-price-card.popular {
    background: var(--gradient-dark);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}
.studio-price-card.popular:hover { transform: translateY(-16px); }
.studio-price-flag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--dark);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.studio-price-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.studio-price-card.popular .studio-price-label { color: var(--accent); }
.studio-price-card h3 {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--dark);
}
.studio-price-card.popular h3 { color: var(--white); }
.studio-price-amt {
    font-family: 'Fraunces', serif;
    font-size: 54px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}
.studio-price-card.popular .studio-price-amt { color: var(--white); }
.studio-price-amt .cur {
    font-size: 30px;
    vertical-align: top;
    margin-right: 4px;
    color: var(--primary);
}
.studio-price-card.popular .studio-price-amt .cur { color: var(--accent); }
.studio-price-sub { color: var(--gray); margin-bottom: 24px; font-size: 14px; }
.studio-price-card.popular .studio-price-sub { color: rgba(255, 255, 255, 0.8); }
.studio-price-points { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.studio-price-points li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--dark-2);
}
.studio-price-card.popular .studio-price-points li { color: rgba(255, 255, 255, 0.92); }
.studio-price-points li i {
    width: 22px; height: 22px;
    background: rgba(230, 57, 70, 0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}
.studio-price-card.popular .studio-price-points li i {
    background: rgba(255, 183, 3, 0.2);
    color: var(--accent);
}
.studio-pricing-note {
    text-align: center;
    margin-top: 36px;
    color: var(--gray);
    font-size: 14px;
}
.studio-pricing-note i { color: var(--primary); margin-right: 6px; }

/* Samples */
.studio-samples { background: var(--light); }
.studio-samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.studio-sample {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
}
.studio-sample:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.studio-sample-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
}
.studio-sample-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Gallery */
.studio-gallery { background: var(--white); }
.studio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.studio-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: block;
    background: var(--light);
}
.studio-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.studio-gallery-item:hover img { transform: scale(1.08); }
.studio-gallery-zoom {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 20, 25, 0.75));
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    font-size: 22px;
    opacity: 0;
    transition: var(--transition);
}
.studio-gallery-item:hover .studio-gallery-zoom { opacity: 1; }

/* Booking */
.studio-booking { background: var(--light); }
.studio-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}
.studio-booking-side {
    background: var(--gradient-dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.studio-booking-side::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 220px; height: 220px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.3;
}
.studio-booking-side h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 22px;
    position: relative;
}
.studio-booking-perks {
    list-style: none;
    margin-bottom: 36px;
    position: relative;
}
.studio-booking-perks li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    align-items: flex-start;
}
.studio-booking-perks i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}
.studio-booking-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.studio-booking-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: var(--radius);
    color: var(--white);
    transition: var(--transition);
}
.studio-booking-contact-item:not(.static):hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    color: var(--white);
}
.studio-booking-contact-item i {
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.studio-booking-contact-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}
.studio-booking-contact-item strong { font-size: 15px; }
.studio-booking-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.studio-booking-form-card h3 { font-size: 26px; margin-bottom: 8px; }
.studio-booking-form-card > p { color: var(--gray); margin-bottom: 26px; }
.studio-booking-form-card .form-mini i { margin-right: 4px; }

/* FAQ */
.studio-faq { background: var(--white); }
.studio-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.studio-faq-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
}
.studio-faq-item[open] {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.studio-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.studio-faq-item summary::-webkit-details-marker { display: none; }
.studio-faq-item summary i {
    transition: var(--transition);
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}
.studio-faq-item[open] summary i { transform: rotate(180deg); }
.studio-faq-item p {
    padding: 0 24px 22px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Sticky bottom action bar (mobile only) — high-attention animated variant */
.studio-sticky-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(15, 20, 25, 0.08);
    box-shadow: 0 -8px 24px rgba(15, 20, 25, 0.10);
    gap: 8px;
    overflow: hidden;
    animation: stickyBarGlow 3.2s ease-in-out infinite;
}
/* Animated rainbow top edge — the "blinking" color band */
.studio-sticky-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary) 0%,
        var(--accent) 25%,
        var(--primary-light) 50%,
        var(--accent) 75%,
        var(--primary) 100%);
    background-size: 200% 100%;
    animation: stickyTopShimmer 3s linear infinite;
    pointer-events: none;
    z-index: 1;
}
/* Soft animated color wash that "blinks" behind the buttons */
.studio-sticky-bar::after {
    content: '';
    position: absolute;
    inset: 4px 0 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(230, 57, 70, 0.12), transparent 55%),
        radial-gradient(circle at 85% 50%, rgba(255, 183, 3, 0.12), transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: stickyBgPulse 2.8s ease-in-out infinite;
}
.studio-sticky-btn {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 6px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1;
    text-decoration: none;
    min-height: 50px;
    transition: transform 0.16s ease,
                background 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease,
                color 0.2s ease;
}
.studio-sticky-btn i {
    font-size: 17px;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
}
.studio-sticky-btn:active { transform: scale(0.96); }

/* Utility actions: solid surface so they stand out against animated wash */
.studio-sticky-call,
.studio-sticky-wa {
    background: var(--white);
    color: var(--dark);
    border-color: var(--border);
    box-shadow: 0 2px 6px rgba(15, 20, 25, 0.05);
}
.studio-sticky-call:hover,
.studio-sticky-wa:hover {
    color: var(--dark);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}
.studio-sticky-call i {
    color: var(--primary);
    animation: stickyCallRing 2.6s ease-in-out infinite;
    transform-origin: center;
}
.studio-sticky-wa i {
    color: #25d366;
    animation: stickyWaBounce 2.8s ease-in-out infinite;
    animation-delay: 0.4s;
}
/* Pulse ring behind utility icons — bigger + always animating */
.studio-sticky-call::before,
.studio-sticky-wa::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.studio-sticky-call::before {
    background: rgba(230, 57, 70, 0.22);
    animation: stickyPulseRing 2s ease-out infinite;
}
.studio-sticky-wa::before {
    background: rgba(37, 211, 102, 0.26);
    animation: stickyPulseRing 2s ease-out infinite 1s;
}

/* Primary CTA: blinking brand gradient + shimmering sheen */
.studio-sticky-book {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
    overflow: hidden;
    animation: stickyCtaPulse 1.8s ease-in-out infinite;
}
.studio-sticky-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%);
    transform: translateX(-100%);
    animation: stickyCtaShine 2.6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.studio-sticky-book:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 57, 70, 0.50);
}
.studio-sticky-book i {
    animation: stickyCtaNudge 2.4s ease-in-out infinite;
}

/* ------- Keyframes ------- */

/* Whole-bar glow that softly blinks brighter every cycle */
@keyframes stickyBarGlow {
    0%, 100% {
        box-shadow:
            0 -8px 24px rgba(15, 20, 25, 0.10),
            0 -2px 18px rgba(230, 57, 70, 0.10);
    }
    50% {
        box-shadow:
            0 -10px 30px rgba(15, 20, 25, 0.14),
            0 -3px 28px rgba(230, 57, 70, 0.28);
    }
}
/* Animated rainbow top edge */
@keyframes stickyTopShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: -200% 50%; }
}
/* The "blinking" colored wash inside the bar */
@keyframes stickyBgPulse {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 1; }
}
/* CTA shadow pulses with the gradient */
@keyframes stickyCtaPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35); }
    50%      { box-shadow: 0 10px 28px rgba(230, 57, 70, 0.65); }
}
/* Sheen sweeping across CTA */
@keyframes stickyCtaShine {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}
/* Icon animations — staggered so all three never animate at the same moment */
@keyframes stickyCallRing {
    0%, 70%, 100% { transform: rotate(0); }
    74% { transform: rotate(-14deg) scale(1.08); }
    79% { transform: rotate(12deg) scale(1.08); }
    84% { transform: rotate(-10deg); }
    89% { transform: rotate(8deg); }
    94% { transform: rotate(-3deg); }
}
@keyframes stickyWaBounce {
    0%, 65%, 100% { transform: translateY(0); }
    78% { transform: translateY(-6px) scale(1.08); }
    88% { transform: translateY(-2px) scale(1); }
}
@keyframes stickyCtaNudge {
    0%, 75%, 100% { transform: translateY(0) scale(1); }
    85% { transform: translateY(-4px) scale(1.10); }
    93% { transform: translateY(0) scale(1); }
}
@keyframes stickyPulseRing {
    0%   { transform: translateX(-50%) scale(1);   opacity: 0.60; }
    70%, 100% { transform: translateX(-50%) scale(2.6); opacity: 0; }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .studio-sticky-bar,
    .studio-sticky-bar::before,
    .studio-sticky-bar::after,
    .studio-sticky-book,
    .studio-sticky-book::before,
    .studio-sticky-call i,
    .studio-sticky-wa i,
    .studio-sticky-book i,
    .studio-sticky-call::before,
    .studio-sticky-wa::before { animation: none; }
}

/* Show on mobile; hide the floating circle buttons + lift body content */
@media (max-width: 768px) {
    body.studio-page .studio-sticky-bar,
    body.pr-landing .studio-sticky-bar { display: flex; }
    body.studio-page .float-actions,
    body.pr-landing .float-actions     { display: none; }
    body.studio-page,
    body.pr-landing                    { padding-bottom: 68px; }

    /* Push the Tawk.to chat bubble above the sticky bar so they don't overlap.
       Sticky bar height ≈ 66-68px → widget lifted to bottom: 78px (10px gap). */
    body.studio-page iframe[src*="tawk.to"],
    body.pr-landing  iframe[src*="tawk.to"] {
        bottom: 78px !important;
    }
}

/* Studio popup banner uses dark gradient */
/* Studio popup banner now uses the same brand gradient as the default popup */
.popup-form textarea {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: var(--light);
    transition: var(--transition);
    resize: vertical;
    min-height: 70px;
}
.popup-form label:has(textarea) > i { top: 16px; transform: none; }
.popup-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

/* ===============================
   Responsive  (mobile-first refinements)
   =============================== */

/* Tablet landscape & small desktop */
@media (max-width: 1100px) {
    .container { padding: 0 24px; }
    .hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
    section { padding: 80px 0; }
}

/* Tablet portrait */
@media (max-width: 991px) {
    .container { padding: 0 22px; }
    section { padding: 70px 0; }

    /* Two-column → one-column stacks */
    .hero-grid,
    .why-grid,
    .founder-grid,
    .about-intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .hero { padding: 60px 0 90px; }

    .services-grid,
    .testi-grid,
    .mvv-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .service-detail-card:nth-child(even) .service-detail-img { order: 0; }
    .service-detail-img { min-height: 240px; }
    .service-detail-body { padding: 32px 28px; }

    .popup-modal {
        grid-template-columns: 1fr;
        max-width: 480px;
        max-height: 90vh;
    }
    .popup-banner {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 28px 26px;
    }
    .popup-banner h3 { font-size: 22px; }
    .popup-banner p { font-size: 14px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    /* Page banners less tall */
    .page-banner { padding: 60px 0; }
}

/* Tablet → Mobile */
@media (max-width: 768px) {
    body { font-size: 15px; }
    section { padding: 56px 0; }
    .section-head { margin-bottom: 40px; }
    .section-head h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .section-head p { font-size: 15px; }

    /* Top bar: keep phone, hide email to save space */
    .top-bar { font-size: 12px; padding: 8px 0; }
    .top-bar-inner { justify-content: space-between; gap: 8px; }
    .top-bar-left .divider,
    .top-bar-left a:first-child { display: none; }
    .top-bar-right a { width: 26px; height: 26px; font-size: 12px; }

    /* Hamburger menu */
    .header-inner { padding: 12px 18px; gap: 10px; }
    .logo { font-size: 20px; }
    .logo-mark { width: 40px; height: 40px; font-size: 14px; }
    .logo-text small { font-size: 10px; letter-spacing: 3px; }

    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; right: 0;
        width: 86%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;        /* center the UL + CTA group vertically */
        padding: 64px 24px 32px;        /* 64px top = close-button clearance */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        gap: 18px;
        z-index: 1001;
        overflow-y: auto;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-top: 1px solid var(--border);
    }
    .main-nav ul li { border-bottom: 1px solid var(--border); }
    .main-nav ul a {
        display: block;
        padding: 14px 4px;
        font-size: 16px;
    }
    .main-nav ul a::after { display: none; }
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 14px; right: 14px;
        width: 38px; height: 38px;
        border-radius: 50%;
        background: var(--light);
    }
    .nav-cta { width: 100%; justify-content: center; }

    /* Body lock when menu open */
    body.nav-open { overflow: hidden; }

    /* Hero */
    .hero { padding: 50px 0 70px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 18px; }
    .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); margin-bottom: 18px; }
    .hero p { font-size: 15px; margin-bottom: 28px; }
    .hero-actions { gap: 10px; margin-bottom: 28px; }
    .hero-actions .btn { padding: 12px 22px; font-size: 14px; flex: 1 1 auto; }
    .hero-trust { gap: 18px; }
    .hero-trust-item { font-size: 13px; }
    .hero-trust-item i { font-size: 18px; }
    .hero-card { padding: 22px; }
    .hero-mini-stat { padding: 12px; }
    .hero-mini-stat strong { font-size: 22px; }
    .float-deco { display: none; }

    /* Stats */
    .stats-strip { margin-top: -36px; padding: 36px 0; border-radius: var(--radius); }
    .stats-strip .container { padding: 0 16px; }
    .stats-grid { gap: 24px; }
    .stat-item i { font-size: 26px; }
    .stat-item .stat-num { font-size: 32px; }
    .stat-item .stat-label { font-size: 12px; letter-spacing: 1.5px; }

    /* Single-column grids */
    .services-grid,
    .testi-grid,
    .mvv-grid,
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 28px 22px; }
    .service-icon { width: 60px; height: 60px; font-size: 26px; }

    /* Why us / About */
    .why-floater { padding: 14px 16px; gap: 10px; bottom: 14px; left: 14px; }
    .why-floater i { width: 42px; height: 42px; font-size: 18px; }
    .why-floater strong { font-size: 18px; }

    /* MVV cards */
    .mvv-card { padding: 32px 22px; }
    .mvv-icon { width: 64px; height: 64px; font-size: 26px; }

    /* Founder */
    .founder-grid { gap: 36px; }
    .founder-quote { padding: 12px 16px; max-width: 90%; bottom: 14px; right: 14px; }
    .founder-quote p { font-size: 13px; }
    .founder-content .role { font-size: 14px; }

    /* Testimonials */
    .testi-card { padding: 26px 22px; }
    .testi-card p { font-size: 14px; }

    /* Page banner */
    .page-banner { padding: 48px 0; }
    .page-banner h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    /* Service-detail */
    .service-detail-img { min-height: 200px; aspect-ratio: 16/10; }
    .service-detail-body { padding: 28px 22px; }
    .service-detail-body h3 { font-size: 22px; }
    .service-detail-body p { font-size: 14px; }

    /* Contact */
    .contact-info-card,
    .contact-form-card { padding: 28px 22px; }
    .contact-info-card h3,
    .contact-form-card h3 { font-size: 22px; }
    .contact-info-list i { width: 36px; height: 36px; font-size: 14px; }
    .contact-info-list li { padding: 12px 0; gap: 12px; }
    .contact-map iframe { height: 320px; }
    .contact-map { margin-top: 40px; }

    /* CTA strip */
    .cta-strip { padding: 44px 0; }
    .cta-strip-inner { text-align: center; justify-content: center; flex-direction: column; gap: 18px; }
    .cta-strip h3 { font-size: 22px; }
    .cta-strip-actions { justify-content: center; width: 100%; }
    .cta-strip-actions .btn { flex: 1 1 auto; padding: 12px 18px; font-size: 14px; }

    /* Footer */
    .site-footer { padding-top: 56px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
    .footer-col h4 { margin-bottom: 16px; font-size: 16px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
    .footer-bottom { font-size: 12px; }

    /* Buttons - bigger tap targets */
    .btn { padding: 13px 24px; font-size: 14px; min-height: 46px; }

    /* Floating buttons */
    .float-actions { right: 14px; bottom: 70px; gap: 12px; }
    .float-btn { width: 52px; height: 52px; font-size: 22px; }
    .float-tooltip { display: none; }

    /* Popup modal: centered, responsive on mobile */
    .popup-overlay { padding: 16px; align-items: center; }
    .popup-modal {
        max-width: 100%;
        max-height: 90vh;
        max-height: 90dvh;
        border-radius: var(--radius-lg);
        transform: scale(0.9) translateY(20px);
    }
    .popup-overlay.active .popup-modal { transform: scale(1) translateY(0); }
    .popup-banner {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 24px 24px 20px;
    }
    .popup-banner h3 { font-size: 20px; }
    .popup-banner p { font-size: 13px; margin-bottom: 16px; }
    .popup-perks li { font-size: 13px; margin-bottom: 8px; }
    .popup-body { padding: 24px; }
    .popup-form input,
    .popup-form select { padding: 13px 16px 13px 42px; font-size: 14px; }
    .popup-close {
        width: 34px; height: 34px;
        top: 10px; right: 10px;
    }

    /* Contact form inputs: bigger touch target */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 14px 14px 44px;
        font-size: 15px;
    }

    /* Alerts */
    .alert-success, .alert-error { padding: 16px 18px; font-size: 14px; }
}

/* Small mobile (≤ 600px) */
@media (max-width: 600px) {
    section { padding: 48px 0; }
    .container { padding: 0 18px; }

    /* Stats: 2 across still readable */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item i { font-size: 22px; margin-bottom: 8px; }
    .stat-item .stat-num { font-size: 28px; }
    .stat-item .stat-num small { font-size: 20px; }

    /* Hero adjustments */
    .hero-mini-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-mini-stat strong { font-size: 20px; }

    /* Section tag underline tighter */
    .section-tag { font-size: 12px; letter-spacing: 2px; padding-left: 32px; }
    .section-tag::before { width: 24px; }
}

/* Extra-small (≤ 480px) */
@media (max-width: 480px) {
    body { font-size: 14.5px; }
    .container { padding: 0 16px; }
    section { padding: 44px 0; }

    .top-bar-left a { font-size: 11px; }
    .top-bar-right a { width: 24px; height: 24px; font-size: 11px; margin-left: 3px; }

    .header-inner { padding: 10px 14px; }
    .logo { gap: 8px; font-size: 18px; }
    .logo-mark { width: 36px; height: 36px; font-size: 13px; border-radius: 10px; }

    .hero { padding: 40px 0 60px; }
    .hero h1 { font-size: 1.6rem; line-height: 1.2; }
    .hero p { font-size: 14px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { gap: 14px; }
    .hero-trust-item { font-size: 12px; }

    /* Stats stack at this size */
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stats-strip { padding: 28px 0; margin-top: -28px; }
    .stat-item { padding: 6px 0; }

    /* Service cards tighter */
    .service-card { padding: 24px 18px; }
    .service-card h3 { font-size: 19px; }
    .service-card p { font-size: 14px; }

    /* Feature list */
    .feature-list li { padding: 12px 0; gap: 12px; }
    .feature-list i { width: 32px; height: 32px; font-size: 13px; }
    .feature-list h4 { font-size: 15px; }
    .feature-list p { font-size: 13px; }

    /* MVV cards */
    .mvv-card { padding: 26px 20px; }
    .mvv-card h3 { font-size: 19px; }

    /* Testimonials */
    .testi-card { padding: 22px 18px; }
    .testi-author img { width: 42px; height: 42px; }
    .testi-author strong { font-size: 14px; }
    .testi-author span { font-size: 12px; }

    /* Page banner */
    .page-banner { padding: 36px 0; }
    .breadcrumbs { font-size: 12px; }

    /* Service detail */
    .service-detail-body { padding: 22px 18px; }
    .service-detail-body .service-icon { width: 54px; height: 54px; font-size: 22px; }
    .service-points li { font-size: 14px; }

    /* Contact form */
    .contact-info-card,
    .contact-form-card { padding: 24px 18px; }
    .contact-info-card h3,
    .contact-form-card h3 { font-size: 20px; }
    .contact-info-list span { font-size: 12px; }
    .contact-info-list a, .contact-info-list strong { font-size: 14px; }
    .contact-map iframe { height: 260px; }

    /* CTA strip */
    .cta-strip h3 { font-size: 19px; }
    .cta-strip p { font-size: 14px; }
    .cta-strip-actions { flex-direction: column; }
    .cta-strip-actions .btn { width: 100%; }

    /* Buttons */
    .btn { width: 100%; padding: 12px 20px; font-size: 14px; }
    .hero-actions .btn,
    .cta-strip-actions .btn { width: 100%; }

    /* Footer */
    .footer-about { font-size: 13px; }
    .footer-social a { width: 36px; height: 36px; }

    /* Floating buttons */
    .float-actions { right: 12px; bottom: 64px; gap: 10px; }
    .float-btn { width: 48px; height: 48px; font-size: 20px; }

    /* Popup */
    .popup-banner { padding: 22px 18px; }
    .popup-banner h3 { font-size: 18px; }
    .popup-perks { display: none; }
    .popup-body { padding: 20px 18px 24px; }
    .popup-form .form-row { margin-bottom: 12px; }
    .popup-close {
        width: 32px; height: 32px;
        background: var(--white);
    }
    .form-mini { font-size: 10px; }
}

/* Tiny phones (≤ 360px) */
@media (max-width: 360px) {
    .top-bar-left a { font-size: 10.5px; }
    .top-bar-right { gap: 2px; }
    .hero h1 { font-size: 1.45rem; }
    .section-head h2 { font-size: 1.35rem; }
    .stat-item .stat-num { font-size: 26px; }
    .float-btn { width: 44px; height: 44px; font-size: 18px; }
}

/* Landscape phones: hide page banner overhead */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
    .hero { padding: 40px 0 50px; }
    .page-banner { padding: 36px 0; }
    .popup-modal { max-height: 95vh; }
}

/* High-DPI tap target accessibility */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .main-nav ul a,
    .footer-links a,
    .service-link { min-height: 44px; }
    .float-btn:hover { transform: none; }
}

/* Reduced motion: respect user preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .float-pulse { display: none; }
}

/* ===============================
   PR Services Landing Page
   =============================== */

/* Offer strip */
.pr-offer-strip {
    background: var(--gradient);
    color: var(--white);
    padding: 11px 0;
    font-size: 13.5px;
    text-align: center;
    font-weight: 500;
}
.pr-offer-strip strong { font-weight: 700; }
.pr-offer-strip i { color: var(--accent); margin-right: 4px; }
.pr-offer-strip a { color: var(--white); text-decoration: underline; margin-left: 6px; font-weight: 600; }
.pr-offer-strip a:hover { color: var(--accent); }

/* Hero */
.pr-hero {
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    padding: 90px 0 110px;
}
.pr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 28%, rgba(230, 57, 70, 0.32) 0%, transparent 50%),
                radial-gradient(circle at 82% 72%, rgba(255, 183, 3, 0.18) 0%, transparent 55%);
}
.pr-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.pr-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 22px;
}
.pr-hero h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pr-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 32px;
    max-width: 580px;
}
.pr-hero-proof {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}
.pr-hero-proof strong { color: var(--white); font-weight: 700; }
.pr-hero-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pr-hero-stars i { color: var(--accent); font-size: 14px; }
.pr-hero-stars strong { margin-left: 4px; }
.pr-hero-proof-sep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Hero mockup: stacked media coverage cards */
.pr-hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}
.pr-hero-mockup {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 460px;
}

/* ===============================
   Hero coverage carousel — auto-scrolling press article screenshots
   =============================== */
.pr-hero-coverage {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 540px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 60px rgba(255, 183, 3, 0.15);
    /* Top + bottom fade so images dissolve into the hero background */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.pr-hero-coverage-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 14px;
    width: 100%;
    /* Scrolls upward continuously; -50% = one full set since we duplicated */
    animation: coverageScroll 28s linear infinite;
    will-change: transform;
}
.pr-hero-coverage-track img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    background: var(--white);
}
.pr-hero-coverage:hover .pr-hero-coverage-track { animation-play-state: paused; }

@keyframes coverageScroll {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

/* Floating "Live Coverage" pill — top right */
.pr-hero-coverage-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(230, 57, 70, 0.45);
}
.pr-hero-coverage-tag i {
    font-size: 11px;
    color: var(--accent);
    animation: coverageDot 1.5s ease-in-out infinite;
}
@keyframes coverageDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}

/* Floating "Verified Placements" pin — bottom left */
.pr-hero-coverage-pin {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.pr-hero-coverage-pin i { color: #16a34a; font-size: 13px; }

/* Reduced motion: stop animation, show first set static */
@media (prefers-reduced-motion: reduce) {
    .pr-hero-coverage-track { animation: none; }
    .pr-hero-coverage-tag i { animation: none; }
}

/* Mobile sizing */
@media (max-width: 991px) {
    .pr-hero-coverage { max-width: 420px; height: 480px; }
    .pr-hero-coverage-track { gap: 14px; padding: 14px 12px; }
}
@media (max-width: 768px) {
    .pr-hero-coverage { height: 420px; max-width: 380px; }
    .pr-hero-coverage-tag,
    .pr-hero-coverage-pin { font-size: 10.5px; padding: 6px 12px; }
}
@media (max-width: 480px) {
    .pr-hero-coverage { height: 360px; max-width: 320px; }
    .pr-hero-coverage-track { gap: 12px; padding: 12px 10px; animation-duration: 24s; }
}
.pr-mock-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 22px 20px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    width: 86%;
    color: var(--dark);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-mock-card:hover { transform: translateY(-4px) rotate(0) !important; }
.pr-mock-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--dark);
}
.pr-mock-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}
.pr-mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.pr-mock-logo {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 16px;
}
.pr-mock-date {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}
.pr-mock-card-1 { top: 0;    left: 0;   transform: rotate(-4deg); z-index: 1; }
.pr-mock-card-2 { top: 130px; right: 0; transform: rotate(3deg);  z-index: 2; }
.pr-mock-card-3 { bottom: 0; left: 6%;  transform: rotate(-2deg); z-index: 3; }

.pr-mock-pin {
    position: absolute;
    background: var(--white);
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}
.pr-mock-pin-1 { top: -14px;   right: 0;   color: var(--primary); animation: pinFloat 4s ease-in-out infinite; }
.pr-mock-pin-2 { bottom: -10px; left: 12%; color: #16a34a;       animation: pinFloat 4s ease-in-out infinite 1.5s; }
.pr-mock-pin i { font-size: 11px; }
@keyframes pinFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Marquee section header — modern editorial style */
.pr-marquee-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.pr-marquee-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}
.pr-marquee-eyebrow i {
    color: var(--accent);
    font-size: 11px;
    filter: drop-shadow(0 2px 4px rgba(255, 183, 3, 0.4));
}
.pr-marquee-line {
    display: inline-block;
    width: 36px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--primary));
    border-radius: 2px;
}
.pr-marquee-line:last-child {
    background: linear-gradient(90deg, var(--primary), transparent);
}
.pr-marquee-head h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.pr-marquee-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}
.pr-marquee-head p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 560px;
}
.brand-marquee-compact { padding: 60px 0 !important; }

@media (max-width: 768px) {
    .pr-marquee-head { margin-bottom: 36px; padding: 0 14px; }
    .pr-marquee-eyebrow { font-size: 11px; letter-spacing: 3px; gap: 10px; margin-bottom: 14px; }
    .pr-marquee-line { width: 24px; }
    .pr-marquee-head h3 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
    .pr-marquee-head p { font-size: 13.5px; }
}

/* Problem grid */
.pr-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.pr-pain-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}
.pr-pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); }
.pr-pain-icon {
    width: 60px; height: 60px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}
.pr-pain-card h3 { font-size: 21px; margin-bottom: 12px; }
.pr-pain-card p { color: var(--gray); font-size: 15px; }

/* Comparison */
.pr-compare-wrap { background: var(--white); padding: 90px 0; }
.pr-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 1080px;
    margin: 0 auto;
}
.pr-compare-col {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    position: relative;
}
.pr-compare-us {
    background: var(--gradient-dark);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}
.pr-compare-head { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px dashed var(--border); }
.pr-compare-us .pr-compare-head { border-bottom-color: rgba(255, 255, 255, 0.12); }
.pr-compare-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pr-compare-tag-bad { background: rgba(230, 57, 70, 0.12); color: var(--primary); }
.pr-compare-tag-good { background: var(--gradient-accent); color: var(--dark); }
.pr-compare ul { list-style: none; }
.pr-compare li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.5;
    align-items: flex-start;
}
.pr-compare-them li { color: var(--gray); }
.pr-compare-them li i { color: #b91c1c; margin-top: 4px; flex-shrink: 0; font-size: 16px; }
.pr-compare-us li { color: rgba(255, 255, 255, 0.92); }
.pr-compare-us li i { color: var(--accent); margin-top: 4px; flex-shrink: 0; font-size: 16px; }

/* Guarantee strip */
.pr-guarantee {
    background: var(--gradient);
    color: var(--white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.pr-guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cpath d="M0 50 L50 0 L100 50 L50 100 Z" fill="white" opacity="0.04"/%3E%3C/svg%3E') 0 0/70px;
}
.pr-guarantee-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.pr-guarantee-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.pr-guarantee-item > i {
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--accent);
}
.pr-guarantee-item strong { display: block; font-size: 15.5px; margin-bottom: 4px; color: var(--white); }
.pr-guarantee-item span { font-size: 13.5px; color: rgba(255, 255, 255, 0.85); }

/* Final CTA banner */
.pr-final-cta {
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    padding: 90px 0;
}
.pr-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 32%, rgba(230, 57, 70, 0.3) 0%, transparent 52%),
                radial-gradient(circle at 78% 68%, rgba(255, 183, 3, 0.16) 0%, transparent 55%);
}
.pr-final-cta-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.pr-final-cta h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    margin-bottom: 18px;
    line-height: 1.15;
}
.pr-final-cta h2 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pr-final-cta-text p { color: rgba(255, 255, 255, 0.86); font-size: 17px; margin-bottom: 26px; max-width: 540px; }
.pr-final-perks {
    list-style: none;
    margin-bottom: 28px;
}
.pr-final-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    padding: 6px 0;
}
.pr-final-perks li i { color: var(--accent); font-size: 18px; }
.pr-final-cta-quick { display: flex; gap: 12px; flex-wrap: wrap; }

.pr-final-cta-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}
.pr-final-cta-form h3 { font-size: 22px; margin-bottom: 6px; }
.pr-final-cta-form > p { color: var(--gray); margin-bottom: 22px; font-size: 14.5px; }
.pr-final-cta-form .form-grid { grid-template-columns: 1fr; gap: 14px; }
.pr-final-cta-form .input-group.full { grid-column: auto; }

/* ===============================
   WHY CHOOSE US — Cinematic visual + stats floater
   =============================== */
.pr-why-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}
.pr-why-visual img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/4.2;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-why-visual:hover img { transform: scale(1.04); }
.pr-why-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 20, 25, 0.1) 0%, transparent 30%, rgba(15, 20, 25, 0.55) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(230, 57, 70, 0.25), transparent 65%);
    pointer-events: none;
    z-index: 1;
}

/* Top-left "Live Coverage" pill */
.pr-why-tag-top {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 20, 25, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.pr-why-tag-top i {
    color: #ef4444;
    font-size: 8px;
    animation: pulseRed 1.4s ease-in-out infinite;
}
@keyframes pulseRed { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Bottom credentials floater */
.pr-why-floater {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}
.pr-why-floater-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}
.pr-why-floater-num strong {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
}
.pr-why-floater-num strong sup {
    font-size: 0.5em;
    color: var(--accent);
    margin-left: 2px;
    top: -0.4em;
    position: relative;
}
.pr-why-floater-num span {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-top: 2px;
}
.pr-why-floater-sep {
    width: 1px;
    height: 44px;
    background: var(--border);
    flex-shrink: 0;
}
.pr-why-floater-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
}
.pr-why-floater-stats > div { text-align: center; }
.pr-why-floater-stats strong {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1;
}
.pr-why-floater-stats strong i {
    color: var(--accent);
    font-size: 13px;
}
.pr-why-floater-stats span {
    display: block;
    font-size: 10.5px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .pr-why-visual { max-width: 540px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .pr-why-visual img { aspect-ratio: 4/3.4; }
    .pr-why-floater { padding: 12px 14px; gap: 12px; }
    .pr-why-floater-num strong { font-size: 32px; }
    .pr-why-floater-stats strong { font-size: 17px; }
    .pr-why-floater-sep { height: 38px; }
    .pr-why-tag-top { top: 14px; left: 14px; font-size: 11px; padding: 6px 12px; }
}
@media (max-width: 480px) {
    .pr-why-floater {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
    }
    .pr-why-floater-num { flex-direction: row; gap: 8px; }
    .pr-why-floater-num strong { font-size: 28px; }
    .pr-why-floater-num span { margin-top: 0; align-self: center; }
    .pr-why-floater-sep { display: none; }
    .pr-why-floater-stats { gap: 8px; padding-top: 10px; border-top: 1px solid var(--border); }
}

/* ===============================
   PR STATS — Premium "Numbers That Speak"
   =============================== */
.pr-stats {
    position: relative;
    background: var(--light);
    padding: 90px 0 80px;
    overflow: hidden;
}
.pr-stats-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.pr-stats-deco-1 { top: -120px; left: -60px;   width: 320px; height: 320px; background: rgba(230, 57, 70, 0.10); }
.pr-stats-deco-2 { bottom: -120px; right: -60px; width: 360px; height: 360px; background: rgba(255, 183, 3, 0.12); }
.pr-stats .container { position: relative; z-index: 1; }

.pr-stats-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.pr-stat-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px 30px;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.35s ease;
    overflow: hidden;
    isolation: isolate;
}

/* Animated gold glow that appears on hover */
.pr-stat-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center top, rgba(255, 183, 3, 0.18), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.pr-stat-card:hover .pr-stat-glow { opacity: 1; }

/* Top-edge gradient accent bar (animates in) */
.pr-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-stat-card:hover::before { transform: scaleX(1); }

.pr-stat-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 24px 50px rgba(15, 20, 25, 0.12);
}

.pr-stat-card > *:not(.pr-stat-glow) { position: relative; z-index: 1; }

.pr-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), #fd8a09);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 24px rgba(255, 183, 3, 0.32);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-stat-card:hover .pr-stat-icon { transform: rotate(-8deg) scale(1.08); }

.pr-stat-num {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(46px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #0f1419 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: baseline;
}
.pr-stat-plus {
    font-size: 0.55em;
    margin-left: 4px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pr-stat-label {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.pr-stat-sub {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 36px;
}
.pr-stat-bar {
    width: 36px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin: 0 auto;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-stat-card:hover .pr-stat-bar { width: 60px; }

/* Foot line */
.pr-stats-foot {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}
.pr-stats-foot-icon {
    width: 26px;
    height: 26px;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .pr-stats { padding: 70px 0; }
    .pr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .pr-stats { padding: 56px 0; }
    .pr-stat-card { padding: 28px 22px 24px; }
    .pr-stat-icon { width: 52px; height: 52px; font-size: 22px; margin-bottom: 14px; }
    .pr-stat-num { font-size: 42px; }
    .pr-stat-label { font-size: 13px; }
    .pr-stat-sub { font-size: 12.5px; min-height: 0; margin-bottom: 14px; }
    .pr-stats-foot { font-size: 12.5px; flex-wrap: wrap; text-align: center; padding: 0 16px; }
}
@media (max-width: 480px) {
    .pr-stats { padding: 44px 0; }
    .pr-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .pr-stat-card { padding: 22px 16px 20px; }
    .pr-stat-icon { width: 46px; height: 46px; font-size: 18px; }
    .pr-stat-num { font-size: 34px; letter-spacing: 0; }
    .pr-stat-label { font-size: 12px; letter-spacing: 0.3px; }
    .pr-stat-sub { font-size: 11.5px; line-height: 1.4; }
    .pr-stat-bar { width: 28px; }
    .pr-stat-card:hover .pr-stat-bar { width: 44px; }
}

/* ===============================
   OUR NETWORK — Media Partners image section
   =============================== */
.pr-network {
    position: relative;
    background: var(--light);
    padding: 90px 0 80px;
    overflow: hidden;
}
.pr-network-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.pr-network-deco-1 { top: -100px; left: -80px;   width: 320px; height: 320px; background: rgba(230, 57, 70, 0.10); }
.pr-network-deco-2 { bottom: -100px; right: -80px; width: 340px; height: 340px; background: rgba(255, 183, 3, 0.10); }
.pr-network .container { position: relative; z-index: 1; }

.pr-network-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image frame with luxury gold-red gradient border */
.pr-network-frame {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 12px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.35), rgba(230, 57, 70, 0.35));
    box-shadow:
        0 30px 80px rgba(15, 20, 25, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 183, 3, 0.18);
}
.pr-network-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 4px);
    background: var(--white);
}
/* Decorative corner brackets like a press kit folder */
.pr-network-corners span {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent);
    pointer-events: none;
    z-index: 2;
}
.pr-network-corners span:nth-child(1) { top: -2px;    left: -2px;    border-right: none; border-bottom: none; }
.pr-network-corners span:nth-child(2) { top: -2px;    right: -2px;   border-left: none;  border-bottom: none; }
.pr-network-corners span:nth-child(3) { bottom: -2px; left: -2px;    border-right: none; border-top: none; }
.pr-network-corners span:nth-child(4) { bottom: -2px; right: -2px;   border-left: none;  border-top: none; }

/* Three trust points below the network image */
.pr-network-foot {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 36px;
}
.pr-network-foot-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}
.pr-network-foot-item i {
    color: var(--primary);
    font-size: 18px;
}
.pr-network-foot-item strong { color: var(--dark); font-weight: 700; }

/* ===============================
   OUR CLIENTS — Client brands image section
   =============================== */
.pr-clients {
    background: var(--white);
    padding: 90px 0 80px;
    position: relative;
}
.pr-clients-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pr-clients-frame {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(15, 20, 25, 0.10),
        0 0 0 1px var(--border);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.pr-clients-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px rgba(15, 20, 25, 0.14);
}
.pr-clients-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tag chips below clients image — industries served */
.pr-clients-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}
.pr-clients-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--light);
    border: 1px solid var(--border);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.pr-clients-tag i {
    color: var(--primary);
    font-size: 12px;
}
.pr-clients-tag:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(230, 57, 70, 0.3);
}
.pr-clients-tag:hover i { color: var(--accent); }

/* Responsive */
@media (max-width: 991px) {
    .pr-network { padding: 70px 0; }
    .pr-network-foot { gap: 22px; margin-top: 28px; }
    .pr-clients { padding: 70px 0; }
}
@media (max-width: 768px) {
    .pr-network { padding: 56px 0; }
    .pr-network-frame { padding: 8px; border-radius: var(--radius); }
    .pr-network-frame img { border-radius: 6px; }
    .pr-network-corners span { width: 16px; height: 16px; }
    .pr-network-foot {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 26px;
    }
    .pr-network-foot-item { font-size: 13px; }

    .pr-clients { padding: 56px 0; }
    .pr-clients-tags { gap: 8px; margin-top: 28px; }
    .pr-clients-tag { font-size: 12px; padding: 7px 13px; }
}
@media (max-width: 480px) {
    .pr-network { padding: 44px 0; }
    .pr-clients { padding: 44px 0; }
    .pr-network-foot-item { font-size: 12.5px; gap: 8px; }
    .pr-network-foot-item i { font-size: 16px; }
    .pr-clients-tag { font-size: 11.5px; padding: 6px 12px; gap: 5px; }
    .pr-clients-tag i { font-size: 10px; }
}

/* ===============================
   PROMO VIDEO SECTION
   =============================== */
.pr-promo {
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 90px 0 100px;
    overflow: hidden;
}
.pr-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 183, 3, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(230, 57, 70, 0.18) 0%, transparent 55%);
    pointer-events: none;
}
.pr-promo-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.pr-promo-glow-1 { top: -120px;  left: -100px;  width: 360px; height: 360px; background: rgba(230, 57, 70, 0.28); animation: promoFloat 9s ease-in-out infinite; }
.pr-promo-glow-2 { bottom: -140px; right: -80px; width: 380px; height: 380px; background: rgba(255, 183, 3, 0.18); animation: promoFloat 11s ease-in-out infinite 1s; }
@keyframes promoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.pr-promo .section-head { color: var(--white); position: relative; z-index: 1; }
.pr-promo .section-head h2 { color: var(--white); }
.pr-promo .section-head p { color: rgba(255, 255, 255, 0.78); }
.pr-promo-tag { color: var(--accent) !important; }
.pr-promo-tag::before { background: var(--accent) !important; }
.pr-promo-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pr-promo-frame {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.4), rgba(230, 57, 70, 0.4));
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 80px rgba(255, 183, 3, 0.15);
    z-index: 1;
}
.pr-promo-glass {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%);
    pointer-events: none;
}
.pr-promo-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}
.pr-promo-video iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}
/* Decorative corner accents — luxury frame feel */
.pr-promo-corners span {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid var(--accent);
    pointer-events: none;
    opacity: 0.85;
}
.pr-promo-corners span:nth-child(1) { top: -2px;    left: -2px;    border-right: none; border-bottom: none; border-top-left-radius: 6px; }
.pr-promo-corners span:nth-child(2) { top: -2px;    right: -2px;   border-left: none;  border-bottom: none; border-top-right-radius: 6px; }
.pr-promo-corners span:nth-child(3) { bottom: -2px; left: -2px;    border-right: none; border-top: none;    border-bottom-left-radius: 6px; }
.pr-promo-corners span:nth-child(4) { bottom: -2px; right: -2px;   border-left: none;  border-top: none;    border-bottom-right-radius: 6px; }

.pr-promo-meta {
    position: relative;
    z-index: 1;
    margin-top: 42px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.pr-promo-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    font-weight: 500;
}
.pr-promo-meta-item i { color: var(--accent); font-size: 16px; }

/* ===============================
   360 DEGREE PR & MARKETING
   =============================== */
.pr-360 {
    position: relative;
    background: var(--dark);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}
.pr-360::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 15% 0%, rgba(230, 57, 70, 0.22), transparent 55%),
        radial-gradient(ellipse 700px 500px at 85% 100%, rgba(255, 183, 3, 0.10), transparent 60%);
    pointer-events: none;
}
.pr-360-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.pr-360-deco-1 { top: 40px;    right: -60px;  width: 320px; height: 320px; background: rgba(255, 183, 3, 0.18); }
.pr-360-deco-2 { bottom: 40px; left: -80px;   width: 360px; height: 360px; background: rgba(230, 57, 70, 0.22); }

.section-head-light h2,
.section-head-light p { color: var(--white); }
.section-head-light p { color: rgba(255, 255, 255, 0.78); }
.pr-360-tag { color: var(--accent) !important; }
.pr-360-tag::before { background: var(--accent) !important; }

.pr-360-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.pr-360-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px 22px 24px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.35s ease,
                background 0.35s ease;
    overflow: hidden;
    isolation: isolate;
    cursor: default;
}
.pr-360-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.55), rgba(230, 57, 70, 0.55), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.pr-360-shine {
    position: absolute;
    top: -50%; left: -60%;
    width: 60%; height: 200%;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
    transform: skewX(-18deg);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.pr-360-corner {
    position: absolute;
    bottom: 0; right: 0;
    width: 36px; height: 36px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 183, 3, 0.18) 50%);
    pointer-events: none;
}
.pr-360-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(230, 57, 70, 0.08));
    border-color: transparent;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.pr-360-card:hover::before { opacity: 1; }
.pr-360-card:hover .pr-360-shine { left: 130%; }

.pr-360-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #fd8a09);
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(255, 183, 3, 0.3);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-360-card:hover .pr-360-icon { transform: rotate(-6deg) scale(1.08); }
.pr-360-card h3 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.3;
}
.pr-360-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

/* ===============================
   CAPABILITY INDEX — Pill Cloud
   (Visually distinct from .pr-360 cards; this is a light scannable A–Z)
   =============================== */
.pr-cap {
    background: var(--white);
    padding: 90px 0 80px;
    position: relative;
}
.pr-cap-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pr-cap-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1040px;
    margin: 0 auto;
}

.pr-cap-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                transform 0.25s ease,
                box-shadow 0.3s ease;
}
.pr-cap-pill i {
    color: var(--primary);
    font-size: 13px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover: subtle red gradient fill + lift */
.pr-cap-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.pr-cap-pill > * { position: relative; z-index: 1; }
.pr-cap-pill:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(230, 57, 70, 0.32);
}
.pr-cap-pill:hover::before { opacity: 1; }
.pr-cap-pill:hover i { color: var(--accent); transform: rotate(-6deg) scale(1.1); }

/* Foot CTA line */
.pr-cap-foot {
    margin-top: 40px;
    text-align: center;
    color: var(--gray);
    font-size: 14.5px;
}
.pr-cap-foot i {
    color: var(--primary);
    margin-right: 6px;
}
.pr-cap-foot a {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid currentColor;
    padding-bottom: 1px;
    transition: var(--transition);
}
.pr-cap-foot a:hover { color: var(--primary-dark); }

@media (max-width: 768px) {
    .pr-cap { padding: 56px 0; }
    .pr-cap-cloud { gap: 8px; }
    .pr-cap-pill {
        padding: 10px 16px;
        font-size: 13px;
        gap: 7px;
    }
    .pr-cap-pill i { font-size: 12px; }
    .pr-cap-foot { font-size: 13px; padding: 0 16px; }
}
@media (max-width: 480px) {
    .pr-cap-cloud { gap: 6px; }
    .pr-cap-pill { padding: 8px 14px; font-size: 12.5px; }
}

/* ===============================
   CELEBRITY COLLAGE
   =============================== */
.pr-celeb {
    background: var(--light);
    padding: 90px 0;
}
.pr-celeb-tag { color: var(--primary) !important; }
.pr-celeb-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pr-celeb-collage {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.pr-celeb-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 20, 25, 0.28);
    aspect-ratio: 16 / 9;
    background: var(--dark);
}
.pr-celeb-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-celeb-frame:hover img { transform: scale(1.05); }
.pr-celeb-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 40%, rgba(15, 20, 25, 0.92) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(230, 57, 70, 0.25), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 36px 40px 32px;
    color: var(--white);
}
.pr-celeb-overlay-inner { max-width: 720px; }
.pr-celeb-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--accent);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.pr-celeb-overlay h3 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    margin-bottom: 10px;
    line-height: 1.2;
}
.pr-celeb-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    max-width: 580px;
    margin: 0;
}
.pr-celeb-shine {
    position: absolute;
    top: 0; left: -30%;
    width: 30%; height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: celebShine 6s ease-in-out infinite;
}
@keyframes celebShine {
    0%, 80%, 100% { left: -30%; }
    90% { left: 130%; }
}

.pr-celeb-strip {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.pr-celeb-strip-item {
    text-align: center;
    border-right: 1px solid var(--border);
    padding: 6px 0;
}
.pr-celeb-strip-item:last-child { border-right: none; }
.pr-celeb-strip-item strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 30px;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.pr-celeb-strip-item span {
    font-size: 12.5px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* ===============================
   ABOUT THE FOUNDER (premium glass)
   =============================== */
.pr-founder {
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}
.pr-founder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 500px at 0% 30%, rgba(230, 57, 70, 0.22), transparent 60%),
        radial-gradient(ellipse 700px 500px at 100% 70%, rgba(255, 183, 3, 0.12), transparent 60%);
    pointer-events: none;
}
.pr-founder-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.pr-founder-deco-1 { top: 60px;    left: -80px;  width: 360px; height: 360px; background: rgba(230, 57, 70, 0.25); }
.pr-founder-deco-2 { bottom: 60px; right: -80px; width: 320px; height: 320px; background: rgba(255, 183, 3, 0.16); }

.pr-founder-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.pr-founder-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.pr-founder-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/5;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 60px rgba(230, 57, 70, 0.2);
}
.pr-founder-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pr-founder-photo:hover img { transform: scale(1.04); }

/* Square celebrity image beneath the founder photo */
.pr-founder-celeb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 40px rgba(255, 183, 3, 0.18);
    isolation: isolate;
}
/* Inline (in-content) version — hidden by default; shown on mobile,
   replaces the visual-column copy so the image flows beneath the
   "Professional Journey" heading where the context fits best. */
.pr-founder-celeb--inline { display: none; }
.pr-founder-celeb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.pr-founder-celeb:hover img { transform: scale(1.05); }
.pr-founder-celeb-overlay {
    position: absolute;
    inset: 0;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background:
        linear-gradient(180deg, transparent 40%, rgba(15, 20, 25, 0.92) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(230, 57, 70, 0.22), transparent 60%);
}
.pr-founder-celeb-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: max-content;
    margin-bottom: 10px;
}
.pr-founder-celeb-pill i { font-size: 10px; }
.pr-founder-celeb-overlay strong {
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 18px;
    line-height: 1.25;
}
.pr-founder-badge {
    position: absolute;
    bottom: 18px; left: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    color: var(--dark);
    padding: 12px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.pr-founder-badge i {
    width: 38px; height: 38px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.pr-founder-badge strong { display: block; font-size: 15px; color: var(--dark); }
.pr-founder-badge span { font-size: 12px; color: var(--gray); }

.pr-founder-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
/* Decorative "EST. 2017" typography behind the content */
.pr-founder-content::before {
    content: 'EST. 2017';
    position: absolute;
    top: 14px;
    right: 22px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    letter-spacing: -2px;
    user-select: none;
}
.pr-founder-tag { color: var(--accent) !important; }
.pr-founder-tag::before { background: var(--accent) !important; }
.pr-founder-content h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    margin-bottom: 4px;
    line-height: 1.1;
}
.pr-founder-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pr-founder-role {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.pr-founder-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.pr-founder-section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pr-founder-section h3 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.pr-founder-section-bar {
    width: 36px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
.pr-founder-section p { margin-bottom: 14px; font-size: 15px; }
.pr-founder-section strong { color: var(--accent); font-weight: 700; }

.pr-founder-meta {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pr-founder-meta-item { text-align: center; }
.pr-founder-meta-item strong {
    display: block;
    font-family: 'Fraunces', serif;
    color: var(--accent);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}
.pr-founder-meta-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.pr-founder-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.pr-founder-socials { display: flex; gap: 10px; }
.pr-founder-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.pr-founder-socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* Lede paragraph — slightly larger + drop cap on first letter */
.pr-founder-lede {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.7;
    position: relative;
}
.pr-founder-lede::first-letter {
    font-family: 'Fraunces', serif;
    font-size: 3.2em;
    font-weight: 800;
    float: left;
    line-height: 0.9;
    padding: 8px 12px 0 0;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Founder pull quote — editorial accent */
.pr-founder-quote {
    position: relative;
    margin: 26px 0;
    padding: 22px 26px 22px 30px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.06), transparent 60%);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.pr-founder-quote > i {
    position: absolute;
    top: -8px;
    left: -10px;
    width: 36px; height: 36px;
    background: var(--gradient-accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}
.pr-founder-quote p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 19px !important;
    line-height: 1.45;
    color: var(--white) !important;
    margin-bottom: 8px !important;
}
.pr-founder-quote cite {
    display: block;
    color: var(--accent);
    font-style: normal;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* "As Seen In" press chips */
.pr-founder-press {
    margin-top: 26px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pr-founder-press-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}
.pr-founder-press-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0;
    padding: 0;
}
.pr-founder-press-chips li {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    padding: 4px 0;
    position: relative;
}
.pr-founder-press-chips li:not(:last-child)::after {
    content: '·';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* Signature — handwritten feel + underline flourish */
.pr-founder-signature {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0.85;
}
.pr-founder-sig-script {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    line-height: 1;
}
.pr-founder-sig-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 183, 3, 0.5), transparent);
}

/* ===============================
   PR Landing Responsive — new sections
   =============================== */
@media (max-width: 1100px) {
    .pr-360-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .pr-promo { padding: 70px 0 80px; }
    .pr-promo-frame { padding: 10px; }
    .pr-promo-meta { gap: 22px; }

    .pr-360 { padding: 70px 0; }
    .pr-360-grid { grid-template-columns: repeat(2, 1fr); }

    .pr-celeb { padding: 70px 0; }
    .pr-celeb-overlay { padding: 28px 30px 26px; }

    .pr-founder { padding: 70px 0; }
    .pr-founder-grid { grid-template-columns: 1fr; gap: 36px; }
    .pr-founder-visual { max-width: 480px; gap: 14px; }
    .pr-founder-photo { aspect-ratio: 4/5; max-width: 360px; margin: 0 auto; }
    /* On tablet+mobile, celebrity becomes a wider, shorter banner — way less scroll */
    .pr-founder-celeb { aspect-ratio: 16 / 9; }
    .pr-founder-content { padding: 32px 28px; }
    .pr-founder-content::before { font-size: 64px; top: 10px; right: 18px; }
}
@media (max-width: 768px) {
    .pr-promo { padding: 56px 0 64px; }
    .pr-promo-frame { padding: 8px; border-radius: var(--radius); }
    .pr-promo-video { border-radius: 6px; }
    .pr-promo-corners span { width: 18px; height: 18px; }
    .pr-promo-meta { margin-top: 28px; gap: 14px; }
    .pr-promo-meta-item { font-size: 13px; }
    .pr-promo-meta-item i { font-size: 14px; }

    .pr-360 { padding: 56px 0; }
    .pr-360-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .pr-360-card { padding: 22px 18px 20px; }
    .pr-360-icon { width: 46px; height: 46px; font-size: 19px; margin-bottom: 14px; }
    .pr-360-card h3 { font-size: 15.5px; }
    .pr-360-card p { font-size: 12.5px; }

    .pr-celeb { padding: 56px 0; }
    .pr-celeb-frame { aspect-ratio: 4/3; }
    .pr-celeb-overlay { padding: 22px 22px 20px; }
    .pr-celeb-overlay h3 { font-size: 1.2rem; }
    .pr-celeb-overlay p { font-size: 13.5px; }
    .pr-celeb-pill { font-size: 10.5px; padding: 5px 11px; }
    .pr-celeb-strip {
        margin-top: 20px;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 18px;
    }
    .pr-celeb-strip-item { padding: 12px 6px; border-right: none; border-bottom: 1px solid var(--border); }
    .pr-celeb-strip-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .pr-celeb-strip-item:nth-last-child(-n+2) { border-bottom: none; }
    .pr-celeb-strip-item strong { font-size: 24px; }
    .pr-celeb-strip-item span { font-size: 11px; }

    .pr-founder { padding: 56px 0; }
    .pr-founder-content { padding: 26px 22px; }
    .pr-founder-content::before { font-size: 48px; top: 8px; right: 14px; }
    .pr-founder-content h2 { font-size: 2rem; }
    .pr-founder-role { font-size: 13px; margin-bottom: 18px; }
    .pr-founder-content p { font-size: 14.5px; }
    .pr-founder-lede { font-size: 15px !important; }
    .pr-founder-lede::first-letter { font-size: 2.6em; padding: 6px 10px 0 0; }
    .pr-founder-quote { padding: 18px 20px 18px 22px; margin: 20px 0; }
    .pr-founder-quote > i { width: 30px; height: 30px; font-size: 11px; top: -6px; left: -8px; }
    .pr-founder-quote p { font-size: 16px !important; }
    .pr-founder-quote cite { font-size: 11px; letter-spacing: 1.5px; }
    .pr-founder-section { margin-top: 18px; padding-top: 18px; }
    .pr-founder-meta { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 0; }
    .pr-founder-meta-item strong { font-size: 20px; }
    .pr-founder-meta-item span { font-size: 10.5px; letter-spacing: 1px; }
    .pr-founder-press { margin-top: 20px; padding: 14px 0; }
    .pr-founder-press-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 10px; }
    .pr-founder-press-chips li { font-size: 13px; }
    .pr-founder-actions { justify-content: center; }
    .pr-founder-actions .btn { width: 100%; }
    .pr-founder-socials { width: 100%; justify-content: center; }
    .pr-founder-sig-script { font-size: 22px; }

    /* Mobile: hide visual-column celebrity, show inline one under Professional Journey */
    .pr-founder-visual .pr-founder-celeb:not(.pr-founder-celeb--inline) { display: none; }
    .pr-founder-celeb--inline {
        display: block;
        aspect-ratio: 1 / 1;
        margin: 14px 0 18px;
        max-width: 100%;
    }
    .pr-founder-celeb-overlay { padding: 16px 18px; }
    .pr-founder-celeb-pill { font-size: 10.5px; padding: 5px 11px; margin-bottom: 8px; }
    .pr-founder-celeb-overlay strong { font-size: 15.5px; }
    .pr-founder-visual { gap: 12px; max-width: 420px; }
    .pr-founder-photo { max-width: 320px; }
}

@media (max-width: 480px) {
    /* Remove decorative EST 2017 on phones — was clashing with content */
    .pr-founder-content::before { display: none; }
    /* Inline celebrity image stays square but tighter on small phones */
    .pr-founder-celeb--inline { margin: 12px 0 16px; aspect-ratio: 1 / 1; }
    .pr-founder-celeb-overlay { padding: 14px 14px; }
    .pr-founder-celeb-pill { font-size: 9.5px; letter-spacing: 1px; padding: 4px 9px; }
    .pr-founder-celeb-overlay strong { font-size: 14px; }
    .pr-founder-photo { max-width: 280px; }
    /* Drop cap smaller on tiny */
    .pr-founder-lede::first-letter { font-size: 2.4em; padding: 4px 8px 0 0; }
    /* Quote spacing tighter */
    .pr-founder-quote { padding: 16px 16px 16px 18px; margin: 18px 0; }
    .pr-founder-quote > i { display: none; }
    .pr-founder-quote p { font-size: 14.5px !important; }
    /* Signature smaller */
    .pr-founder-sig-script { font-size: 19px; }
    .pr-founder-press-chips li { font-size: 12.5px; }
    .pr-founder-press-chips li:not(:last-child)::after { margin-left: 10px; }
}
@media (max-width: 480px) {
    .pr-360-grid { grid-template-columns: 1fr; }
    .pr-celeb-overlay h3 { font-size: 1.05rem; }
    .pr-celeb-overlay p { font-size: 12.5px; }
    .pr-celeb-strip { grid-template-columns: 1fr; padding: 14px; }
    .pr-celeb-strip-item { border-right: none !important; border-bottom: 1px solid var(--border); }
    .pr-celeb-strip-item:last-child { border-bottom: none; }
    .pr-founder-photo { max-width: 340px; }
    .pr-founder-content { padding: 22px 18px; }
    .pr-founder-content h2 { font-size: 1.7rem; }
}

/* ---- PR Landing Responsive ---- */

/* Tablet landscape — keep 2-col where it still works */
@media (max-width: 1100px) {
    .pr-pain-grid       { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .pr-guarantee-grid  { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* Tablet portrait — first stacking point */
@media (max-width: 991px) {
    .pr-hero { padding: 60px 0 80px; }
    .pr-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pr-hero-text { text-align: center; }
    .pr-hero p { margin-left: auto; margin-right: auto; }
    .pr-hero-actions, .hero-actions { justify-content: center; }
    .pr-hero-proof { justify-content: center; }
    .pr-hero-visual { max-width: 460px; margin: 0 auto; }

    .pr-pain-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .pr-pain-card:last-child { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; width: 100%; }

    .pr-compare { grid-template-columns: 1fr; gap: 22px; max-width: 560px; }
    .pr-compare-us { transform: none; order: -1; }

    .pr-final-cta { padding: 70px 0; }
    .pr-final-cta-grid { grid-template-columns: 1fr; gap: 40px; max-width: 560px; margin: 0 auto; }
    .pr-final-cta-text { text-align: center; }
    .pr-final-cta-text p { margin-left: auto; margin-right: auto; }
    .pr-final-perks { max-width: 380px; margin-left: auto; margin-right: auto; }
    .pr-final-cta-quick { justify-content: center; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Offer strip */
    .pr-offer-strip { font-size: 12.5px; padding: 9px 0; }
    .pr-offer-strip .container { padding: 0 16px; }

    /* Hero */
    .pr-hero { padding: 44px 0 56px; }
    .pr-hero-grid { gap: 36px; }
    .pr-hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); margin-bottom: 16px; }
    .pr-hero p { font-size: 15px; margin-bottom: 24px; }
    .hero-actions { gap: 10px; width: 100%; }
    .hero-actions .btn { flex: 1 1 auto; padding: 12px 18px; font-size: 14px; }
    .pr-hero-proof {
        margin-top: 24px;
        gap: 14px;
        font-size: 12.5px;
    }
    .pr-hero-proof-sep { display: none; }
    .pr-hero-stars i { font-size: 13px; }

    /* Hero mockup — switch from absolute layered to natural vertical stack on mobile */
    .pr-hero-mockup {
        height: auto;
        max-width: 360px;
        padding: 18px 12px 24px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .pr-mock-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        padding: 14px 16px;
        border-radius: var(--radius);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    }
    .pr-mock-card h4 { font-size: 14.5px; line-height: 1.3; }
    .pr-mock-card p {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .pr-mock-logo { font-size: 14px; }
    .pr-mock-date { font-size: 10.5px; }
    .pr-mock-card-1 { transform: rotate(-2deg) translateX(-4px); }
    .pr-mock-card-2 { transform: rotate(1.5deg) translateX(6px); }
    .pr-mock-card-3 { transform: rotate(-1deg) translateX(-2px); }
    /* Decorative pins — keep relative to the stack, smaller, optional */
    .pr-mock-pin { font-size: 11px; padding: 5px 10px; position: absolute; }
    .pr-mock-pin-1 { top: 6px; right: -4px; }
    .pr-mock-pin-2 { bottom: 10px; left: -4px; }

    /* Pain */
    .pr-pain-grid { grid-template-columns: 1fr; gap: 16px; }
    .pr-pain-grid .pr-pain-card:last-child { max-width: none; }
    .pr-pain-card { padding: 26px 22px; }
    .pr-pain-card h3 { font-size: 18px; }
    .pr-pain-card p { font-size: 14px; }
    .pr-pain-icon { width: 52px; height: 52px; font-size: 20px; margin-bottom: 16px; }

    /* Comparison */
    .pr-compare-wrap { padding: 60px 0; }
    .pr-compare-col { padding: 24px 20px; }
    .pr-compare li { font-size: 14px; gap: 10px; padding: 8px 0; }
    .pr-compare li i { font-size: 15px; }

    /* Guarantee */
    .pr-guarantee { padding: 36px 0; }
    .pr-guarantee-grid { grid-template-columns: 1fr; gap: 14px; }
    .pr-guarantee-item { padding: 6px 4px; }
    .pr-guarantee-item > i { width: 42px; height: 42px; font-size: 17px; }
    .pr-guarantee-item strong { font-size: 14.5px; }
    .pr-guarantee-item span { font-size: 13px; }

    /* Final CTA */
    .pr-final-cta { padding: 52px 0; }
    .pr-final-cta h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
    .pr-final-cta-text p { font-size: 15px; }
    .pr-final-cta-form { padding: 24px 20px; }
    .pr-final-cta-form h3 { font-size: 20px; }
    .pr-final-cta-quick { flex-direction: column; gap: 10px; width: 100%; }
    .pr-final-cta-quick .btn { width: 100%; }

    /* Marquee chips: tighter on phones */
    .brand-marquee-wrap { padding: 48px 0; }
    .brand-marquee-compact { padding: 48px 0 !important; }
    .brand-marquee { gap: 14px; }
    .brand-row { gap: 14px; padding-right: 14px; }
    .brand-chip { min-width: 150px; height: 70px; padding: 14px 18px; }
    .brand-chip img { max-height: 32px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .pr-offer-strip { font-size: 11.5px; padding: 8px 0; line-height: 1.45; }
    .pr-offer-strip a { display: inline-block; margin-left: 0; margin-top: 2px; }

    .pr-hero h1 { font-size: 1.6rem; }
    .pr-hero p { font-size: 14.5px; }
    .pr-hero-proof { gap: 10px; font-size: 12px; }
    .pr-hero-proof > * { flex-basis: auto; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    /* Mockup stays in vertical-stack mode, just smaller */
    .pr-hero-mockup {
        max-width: 320px;
        padding: 14px 8px 18px;
        gap: 12px;
    }
    .pr-mock-card {
        padding: 12px 14px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    }
    .pr-mock-card h4 { font-size: 13.5px; margin-bottom: 6px; }
    .pr-mock-card p { font-size: 11.5px; }
    .pr-mock-card-1 { transform: rotate(-1.5deg) translateX(-2px); }
    .pr-mock-card-2 { transform: rotate(1deg) translateX(4px); }
    .pr-mock-card-3 { transform: rotate(-0.8deg) translateX(-1px); }
    .pr-mock-pin { font-size: 10px; padding: 4px 9px; }
    .pr-mock-pin-1 { top: 4px; right: -2px; }
    .pr-mock-pin-2 { bottom: 6px; left: -2px; }

    .pr-pain-card { padding: 22px 18px; }
    .pr-pain-icon { width: 46px; height: 46px; font-size: 17px; }

    .pr-final-cta-form { padding: 20px 16px; }
    .pr-final-cta-form h3 { font-size: 18px; }

    .brand-chip { min-width: 130px; height: 64px; padding: 12px 16px; }
    .brand-chip img { max-height: 28px; }
    .brand-marquee { gap: 12px; }
    .brand-row { gap: 12px; padding-right: 12px; }
}

/* ===============================
   PR Services — Brand Logo Marquee
   =============================== */
.brand-marquee-wrap { background: var(--light); padding: 90px 0; }
.brand-marquee-wrap .section-head { margin-bottom: 50px; }
.brand-marquee {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.brand-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.brand-row {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
    flex-shrink: 0;
}
/* Animate the TRACK (which holds 2 duplicate rows side-by-side) by exactly
   half its width — that's one row's content. At -50% the visible viewport
   shows row 2 in the exact position row 1 was at t=0, so the snap-back to 0%
   is visually identical → seamless infinite loop, no gaps ever. */
.brand-track-left  { animation: brandScrollLeft  48s linear infinite; }
.brand-track-right { animation: brandScrollRight 48s linear infinite; }
.brand-marquee:hover .brand-track { animation-play-state: paused; }

@keyframes brandScrollLeft  { from { transform: translate3d(0, 0, 0); }       to { transform: translate3d(-50%, 0, 0); } }
@keyframes brandScrollRight { from { transform: translate3d(-50%, 0, 0); }    to { transform: translate3d(0, 0, 0); } }

.brand-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 30px;
    min-width: 200px;
    height: 90px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--gray);
    letter-spacing: 0.4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.brand-chip img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.78;
    transition: filter 0.25s ease, opacity 0.25s ease;
}
.brand-chip:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
    color: var(--primary);
}
.brand-chip:hover img { filter: grayscale(0); opacity: 1; }

@media (max-width: 768px) {
    .brand-marquee-wrap { padding: 60px 0; }
    .brand-chip { min-width: 160px; height: 76px; padding: 16px 22px; font-size: 16px; }
    .brand-chip img { max-height: 36px; }
}

/* ===============================
   PR Services — Specializations grid
   =============================== */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.spec-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    cursor: default;
}
.spec-item i {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}
.spec-item span {
    font-weight: 600;
    color: var(--dark);
    font-size: 14.5px;
    line-height: 1.3;
}
.spec-item:hover {
    background: var(--white);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.spec-item:hover i { transform: rotate(-6deg) scale(1.06); }

@media (max-width: 991px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .spec-item { padding: 18px 14px; gap: 12px; } .spec-item i { width: 38px; height: 38px; font-size: 16px; } .spec-item span { font-size: 13.5px; } }
@media (max-width: 480px) { .spec-grid { grid-template-columns: 1fr; } }

/* PR pricing grid — 3-col responsive, 6 cards total */
.pr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
/* Desktop: row wrappers are invisible — cards flow into parent grid */
.pr-pricing-row { display: contents; }
.pr-pricing-dots { display: none; }
.pr-pricing .studio-price-card.popular { transform: none; }
@media (max-width: 991px) { .pr-pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }

/* Mobile: each row = independent horizontal carousel (strictly 1 card visible) + dot indicators */
@media (max-width: 768px) {
    .pr-pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 0;
        padding: 0;
    }
    .pr-pricing-row {
        display: flex;
        gap: 16px;                       /* gap only seen during scroll between cards */
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 22px 0 6px;             /* top room for .studio-price-flag (top:-14px) */
        margin: 0;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }
    .pr-pricing-row::-webkit-scrollbar { display: none; }

    .pr-pricing-row > .studio-price-card {
        flex: 0 0 100%;                  /* one card fills the viewport exactly — no peek */
        scroll-snap-align: center;
        scroll-snap-stop: always;
        padding: 18px 18px 20px;
        margin: 0;
        transform: none !important;      /* reset .popular's Y offset */
    }
    .pr-pricing-row > .studio-price-card .studio-price-head { margin-bottom: 8px; }
    .pr-pricing-row > .studio-price-card h3 { font-size: 19px; margin-bottom: 6px; }
    .pr-pricing-row > .studio-price-card .studio-price-label { font-size: 11px; margin-bottom: 4px; }
    .pr-pricing-row > .studio-price-card .studio-price-amt { font-size: 34px; margin-bottom: 4px; }
    .pr-pricing-row > .studio-price-card .studio-price-amt .cur { font-size: 20px; }
    .pr-pricing-row > .studio-price-card .studio-price-sub { font-size: 12.5px; margin-bottom: 10px; }
    .pr-pricing-row > .studio-price-card .studio-price-points { margin-bottom: 14px; }
    .pr-pricing-row > .studio-price-card .studio-price-points li { padding: 4px 0; font-size: 13px; }
    .pr-pricing-row > .studio-price-card .btn { padding: 10px 18px; font-size: 13.5px; }

    /* Dot indicators — one row of dots below each carousel row */
    .pr-pricing-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: -4px 0 6px;
    }
    .pr-pricing-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(15, 20, 25, 0.18);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
    }
    .pr-pricing-dot.is-active {
        background: var(--gradient);
        width: 28px;          /* active dot stretches into a pill */
        border-radius: 8px;
    }
    .pr-pricing-dot:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 3px;
    }
}

/* ===============================
   Studio Page — Responsive
   =============================== */
@media (max-width: 1100px) {
    .studio-trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .studio-hero { padding: 60px 0 80px; }
    .studio-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .studio-hero-visual { max-width: 460px; margin: 0 auto; }
    .studio-included-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .studio-included-visual { max-width: 540px; margin: 0 auto; }
    .studio-included-visual img { aspect-ratio: 4/3; }
    .studio-samples-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .studio-samples-grid .studio-sample:nth-child(3) {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        justify-self: center;
    }
    .studio-booking-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .studio-price-card,
    .studio-price-card.popular {
        transform: none;
    }
    .studio-price-card.popular { order: -1; }
    .studio-price-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .studio-price-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
    .studio-hero { padding: 50px 0 60px; }
    .studio-hero-card { max-width: 480px; aspect-ratio: 16 / 9; }
    .studio-hero-overlay { padding: 16px; }
    .studio-hero-overlay strong { font-size: 17px; }
    .studio-hero-play { width: 44px; height: 44px; font-size: 14px; }

    .studio-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .studio-trust-item { padding: 14px 16px; }
    .studio-trust-item i { width: 40px; height: 40px; font-size: 17px; }
    .studio-trust-item span { font-size: 13px; }

    .studio-checklist li { padding: 10px 0; gap: 12px; }
    .studio-checklist strong { font-size: 15px; }
    .studio-checklist span { font-size: 13.5px; }

    .studio-price-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .studio-price-card:nth-child(3) { grid-column: auto; max-width: none; }
    .studio-price-card { padding: 30px 24px; }
    .studio-price-card h3 { font-size: 26px; }
    .studio-price-amt { font-size: 44px; }
    .studio-price-amt .cur { font-size: 26px; }

    .studio-samples-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .studio-samples-grid .studio-sample:nth-child(3) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }

    .studio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .studio-booking-side,
    .studio-booking-form-card {
        padding: 28px 22px;
    }
    .studio-booking-side h3,
    .studio-booking-form-card h3 { font-size: 22px; }
    .studio-booking-contact-item i { width: 40px; height: 40px; font-size: 16px; }

    .studio-faq-item summary {
        padding: 16px 18px;
        font-size: 15px;
    }
    .studio-faq-item p {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .studio-hero-card { aspect-ratio: 16 / 9; max-width: 100%; }
    .studio-trust-grid { grid-template-columns: 1fr; }
    .studio-included-badge { padding: 10px 14px; gap: 10px; bottom: 14px; left: 14px; }
    .studio-included-badge i { width: 36px; height: 36px; font-size: 15px; }
    .studio-included-badge strong { font-size: 14px; }
    .studio-extras-tags span { font-size: 12px; padding: 5px 10px; }
    .studio-price-flag { padding: 6px 12px; font-size: 11px; }
    .studio-price-card { padding: 26px 20px; }
    .studio-price-amt { font-size: 38px; }
    .studio-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ===============================
   PR Landing — Final Mobile Polish
   Consistent vertical rhythm + edge-case fixes
   =============================== */
@media (max-width: 768px) {
    /* Uniform section padding for the PR landing */
    body.pr-landing section {
        padding: 56px 0;
    }
    body.pr-landing .pr-hero       { padding: 44px 0 56px; }
    body.pr-landing .pr-guarantee  { padding: 36px 0; }
    body.pr-landing .brand-marquee-wrap,
    body.pr-landing .brand-marquee-compact { padding: 48px 0 !important; }
    body.pr-landing .stats-strip-wrap      { padding: 40px 0 0 !important; }

    /* Section head margins tighter on mobile */
    body.pr-landing .section-head {
        margin-bottom: 32px;
        padding: 0 4px;
    }

    /* Buttons inside hero + final CTA: ensure 46px tap target */
    body.pr-landing .hero-actions .btn,
    body.pr-landing .pr-final-cta-quick .btn,
    body.pr-landing .why-content .btn,
    body.pr-landing .pr-founder-actions .btn {
        min-height: 46px;
    }

    /* Container padding tighter */
    body.pr-landing .container { padding: 0 18px; }
}

@media (max-width: 480px) {
    body.pr-landing section {
        padding: 44px 0;
    }
    body.pr-landing .pr-hero { padding: 32px 0 44px; }
    body.pr-landing .pr-guarantee { padding: 28px 0; }
    body.pr-landing .brand-marquee-wrap,
    body.pr-landing .brand-marquee-compact { padding: 36px 0 !important; }

    body.pr-landing .section-head { margin-bottom: 28px; }
    body.pr-landing .section-head h2 { font-size: clamp(1.4rem, 6.2vw, 1.85rem); }
    body.pr-landing .section-head p  { font-size: 14px; }

    /* Hero proof line: items wrap properly on tiny screens */
    .pr-hero-proof { justify-content: center; gap: 8px 14px; }
    .pr-hero-stars i { font-size: 12px; }

    /* Offer strip: avoid horizontal scroll on tiny screens */
    .pr-offer-strip .container { overflow-x: hidden; }
    .pr-offer-strip span { display: block; line-height: 1.5; }

    /* Final CTA form fields stay full-width and touch-friendly */
    .pr-final-cta-form input,
    .pr-final-cta-form select,
    .pr-final-cta-form textarea { font-size: 15px; min-height: 46px; }
    .pr-final-cta-form textarea { min-height: 80px; }

    /* Founder content card padding adjustment for very small */
    .pr-founder-content { padding: 20px 16px; }
    .pr-founder-meta-item strong { font-size: 18px; }

    /* 360 card padding on small */
    .pr-360-card { padding: 20px 16px 18px; }

    /* Celebrity overlay padding on tight screens */
    .pr-celeb-overlay { padding: 18px 18px 16px; }
}
