/* =========================================
   ATF FITNESS — STYLE.CSS
   White + Blue + Gradient Theme
   ========================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { height: 100%; }
body {
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---------- CSS VARIABLES ---------- */
:root {
    --blue-900: #1E3A8A;
    --blue-800: #1E40AF;
    --blue-700: #1D4ED8;
    --blue-600: #2563EB;
    --blue-500: #3B82F6;
    --blue-400: #60A5FA;
    --blue-200: #BFDBFE;
    --blue-100: #DBEAFE;
    --blue-50:  #EFF6FF;
    --white:    #FFFFFF;
    --gray-50:  #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-900: #0F172A;
    --red-500:  #EF4444;
    --green-500:#22C55E;
    --orange-500:#F97316;
    --gradient-main: linear-gradient(135deg, #1E3A8A 0%, #2563EB 60%, #60A5FA 100%);
    --gradient-soft: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 50%, #ffffff 100%);
    --gradient-hero: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 40%, #F8FAFC 100%);
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 16px rgba(37,99,235,0.10);
    --shadow-lg:  0 10px 40px rgba(37,99,235,0.15);
    --shadow-xl:  0 20px 60px rgba(37,99,235,0.20);
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --transition: 0.3s ease;
    --container:  1200px;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ---------- SECTION BASE ---------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-gradient { background: var(--gradient-main); }
.bg-gradient-soft { background: var(--gradient-soft); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-label.light { color: var(--blue-200); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }

.section-h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.55rem, 3.6vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}
.section-h2.white { color: #fff; }
.section-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 640px;
    margin-bottom: 3rem;
    line-height: 1.7;
}
.text-blue { color: var(--blue-600); }
.text-lightblue { color: var(--blue-200); }
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.45); }
.btn-outline {
    background: transparent;
    color: var(--blue-600);
    border-color: var(--blue-600);
}
.btn-outline:hover { background: var(--blue-50); transform: translateY(-2px); }
.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--blue-700);
    border-color: var(--blue-200);
}
.btn-ghost:hover { background: var(--blue-50); }
.btn-white {
    background: #fff;
    color: var(--blue-700);
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(37,99,235,0.10); }

/* scroll-margin-top offsets navbar height for scrollIntoView accuracy */
#book-form, #hero, #results, #why, #media-coverage, #philosophy, #services, #testimonials, #faq {
    scroll-margin-top: 76px;
}
/* form-right is the direct scroll target on mobile — give it extra clearance */
#form-right, #leadForm {
    scroll-margin-top: 90px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    white-space: nowrap;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--blue-600); background: var(--blue-50); }
.nav-cta { padding: 0.55rem 1.4rem; font-size: 0.9rem; }
.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 1.1rem;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-700, var(--gray-600));
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.mobile-link:hover { background: var(--blue-50); color: var(--blue-600); }
.mobile-cta { margin-top: 0.5rem; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    background: var(--gradient-hero);
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--blue-400), transparent);
    top: -200px; right: -100px;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--blue-200), transparent);
    bottom: -100px; left: -100px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37,99,235,0.08);
    border: 1px solid var(--blue-200);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-700);
    width: fit-content;
    animation: fadeInDown 0.6s ease both;
}
.hero-badge i { color: var(--blue-500); font-size: 0.9rem; }
.hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.25rem, 5.4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--gray-900);
    animation: fadeInUp 0.7s ease 0.1s both;
}
.highlight-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--gray-600);
    max-width: 500px;
    line-height: 1.75;
    animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    animation: fadeInUp 0.7s ease 0.3s both;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-top { display: flex; align-items: baseline; gap: 0.05rem; }
.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-600);
    line-height: 1;
}
.stat-suffix { color: var(--blue-600); font-weight: 800; font-size: 1.5rem; display: inline; }
.stat-lbl { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-sep { width: 1px; height: 40px; background: var(--gray-200); }
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.7s ease 0.4s both;
}

/* HERO IMAGE */
.hero-img-col { display: flex; justify-content: center; align-items: flex-end; }
.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
    animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-img-bg {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 85%;
    background: var(--gradient-main);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0.12;
    z-index: 0;
}
.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    object-position: top;
    max-height: 580px;
    box-shadow: var(--shadow-xl);
}
.float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    border: 1px solid var(--blue-100);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.float-card i { font-size: 1.4rem; color: var(--blue-600); }
.float-card strong { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--gray-900); display: block; line-height: 1; }
.float-card span { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; }
.fc-1 { top: 10%; right: -8%; animation-delay: 0s; }
.fc-2 { bottom: 15%; left: -8%; animation-delay: 2s; }

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

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
    background: var(--gradient-main);
    overflow: hidden;
    padding: 1rem 0;
    border-top: 1px solid var(--blue-800);
    border-bottom: 1px solid var(--blue-800);
}
.marquee-track { overflow: hidden; }
.marquee-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-content:hover { animation-play-state: paused; }
.marquee-content span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.05em;
}
.marquee-content span i { color: var(--blue-200); font-size: 0.85rem; }

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

/* ============================================
   PROBLEM SECTION
   ============================================ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.problem-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-500), #fb923c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red-500); }
.problem-card:hover::before { transform: scaleX(1); }
.pcard-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.pcard-icon.red { background: #FEF2F2; color: var(--red-500); }
.problem-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.problem-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

.problem-bridge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-md);
}
.bridge-line { flex: 1; height: 1px; background: var(--blue-200); }
.bridge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.bridge-text i { color: var(--blue-600); font-size: 1.25rem; animation: bounceDown 2s ease infinite; }
.bridge-text p { font-size: 1rem; color: var(--gray-900); }
.bridge-text strong { color: var(--blue-600); }

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-featured {
    border-color: var(--blue-400);
    background: linear-gradient(160deg, #EFF6FF 0%, #fff 100%);
    box-shadow: 0 0 0 2px var(--blue-200), var(--shadow-md);
}
.service-featured:hover { box-shadow: 0 0 0 2px var(--blue-400), var(--shadow-lg); }
.service-badge-ribbon {
    position: absolute;
    top: 1rem; right: -0.25rem;
    background: var(--gradient-main);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 4px 0 0 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.service-card-top { margin-bottom: 1.5rem; }
.scard-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.scard-icon.orange { background: #FFF7ED; color: var(--orange-500); }
.scard-icon.blue   { background: var(--blue-50); color: var(--blue-600); }
.scard-icon.green  { background: #F0FDF4; color: var(--green-500); }
.service-card-top h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.3rem;
}
.service-card-top p { font-size: 0.82rem; color: var(--gray-600); }

.check-list { display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--gray-700, var(--gray-600));
    line-height: 1.5;
}
.check-list li i { color: var(--blue-600); font-size: 0.85rem; margin-top: 0.15rem; flex-shrink: 0; }

/* ============================================
   WHO IT'S FOR
   ============================================ */
.who-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
.who-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.who-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-300, var(--blue-400)); }
.who-icon {
    width: 60px; height: 60px;
    background: var(--blue-50);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--blue-600);
    margin: 0 auto 1rem;
    transition: background var(--transition), color var(--transition);
}
.who-card:hover .who-icon { background: var(--blue-600); color: #fff; }
.who-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.who-card p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.55; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.process-step {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), background var(--transition);
    backdrop-filter: blur(10px);
}
.process-step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.18); }
.step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.step-body { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.step-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}
.process-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.process-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.5); }
.process-cta-wrap { text-align: center; }

/* ============================================
   CREDIBILITY / ABOUT
   ============================================ */
.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.cred-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.cred-img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    object-position: top;
    box-shadow: var(--shadow-xl);
    max-height: 560px;
}
.cred-float-badge {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    background: #fff;
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    z-index: 2;
}
.cred-float-badge i { color: var(--blue-600); font-size: 1.5rem; }
.cred-float-badge strong { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--gray-900); display: block; }
.cred-float-badge span { font-size: 0.72rem; color: var(--gray-600); }

.cred-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.cred-highlights { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: border-color var(--transition), background var(--transition);
}
.cred-item:hover { border-color: var(--blue-200); background: var(--blue-50); }
.cred-icon {
    width: 44px; height: 44px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-600);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cred-item strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    margin-bottom: 0.2rem;
}
.cred-item p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }

.press-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.press-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }
.press-pill {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition);
}
.press-pill:hover { background: var(--blue-50); border-color: var(--blue-200); color: var(--blue-700); }
a.press-pill:hover { text-decoration: underline; }

/* ---- Press Logo Links ---- */
.press-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.press-logo-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.press-logo-img {
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

/* ---- Newspaper Articles Section ---- */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
.article-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    background: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-img-wrap {
    position: relative;
    overflow: hidden;
}
.article-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
    transition: transform 0.3s ease;
}
.article-card:hover .article-img-wrap img { transform: scale(1.03); }
.article-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37,99,235,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.25s;
}
.article-card:hover .article-overlay { opacity: 1; }
.article-info {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.article-pub-logo { height: 22px; width: auto; max-width: 100px; object-fit: contain; }
.article-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: zoom-out;
}
.lightbox-overlay.active { display: flex !important; }
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 100001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-content { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; max-height: 90vh; }
.lightbox-img {
    max-height: 85vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 10px;
    cursor: default;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.lightbox-caption { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.t-card { cursor: zoom-in; touch-action: manipulation; }
#transformGrid.dragging { cursor: grabbing; user-select: none; }
#transformGrid.dragging .t-card { cursor: grabbing; pointer-events: none; }

/* ============================================
   TRANSFORMATIONS
   ============================================ */
.transform-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-200) transparent;
    margin-bottom: 2rem;
}
.transform-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.transform-scroll-wrapper::-webkit-scrollbar-track { background: transparent; }
.transform-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--blue-200); border-radius: 2px; }

.transform-grid {
    display: grid;
    grid-template-columns: repeat(7, 200px);
    gap: 1rem;
    min-width: max-content;
}
#transformGrid2 { grid-template-columns: repeat(6, 200px); }
.t-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.t-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.t-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.t-card:hover img { transform: scale(1.05); }
.t-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(30,58,138,0.85), transparent);
    padding: 1.5rem 0.85rem 0.85rem;
    transform: translateY(5px);
    transition: transform var(--transition);
}
.t-card:hover .t-overlay { transform: translateY(0); }
.t-overlay span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 3rem;
}
.philo-col {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.philo-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
}
.philo-header i { font-size: 1.5rem; }
.philo-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}
.philo-header-bad { background: #FEF2F2; }
.philo-header-bad i { color: var(--red-500); }
.philo-header-bad h3 { color: var(--red-500); }
.philo-header-good { background: var(--blue-50); }
.philo-header-good i { color: var(--blue-600); }
.philo-header-good h3 { color: var(--blue-700); }
.philo-col ul {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.philo-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.philo-bad li i { color: var(--red-500); margin-top: 0.1rem; flex-shrink: 0; }
.philo-good li i { color: var(--green-500); margin-top: 0.1rem; flex-shrink: 0; }
.philo-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}
.philo-vs span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-400);
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.philosophy-quote {
    background: var(--gradient-main);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    text-align: center;
    position: relative;
}
.quote-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 1.5rem; left: 2rem;
}
.philosophy-quote p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: #fff;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.philosophy-quote span { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ============================================
   OFFER SECTION
   ============================================ */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.offer-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.offer-icon {
    width: 52px; height: 52px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--blue-600);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}
.offer-card:hover .offer-icon { background: var(--blue-600); color: #fff; }
.offer-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}
.offer-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.offer-big-cta {
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
}
.offer-big-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--gray-900);
    max-width: 600px;
    margin: 0 auto 1.75rem;
    line-height: 1.4;
}
.offer-note {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--gray-500, var(--gray-600));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.offer-note i { color: var(--blue-400); }

/* ============================================
   LEAD FORM SECTION
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    grid-template-rows: auto auto;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}
.form-left {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-right {
    grid-column: 2;
    grid-row: 1 / 3;
}
.form-testimonials {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
}
.form-h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--gray-900);
}
.form-sub { font-size: 1rem; color: var(--gray-600); line-height: 1.7; }
.form-benefits { display: flex; flex-direction: column; gap: 0.6rem; }
.form-benefits li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--gray-700, var(--gray-600));
    font-weight: 500;
}
.form-benefits li i { color: var(--blue-600); }
.ftesti {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--blue-600);
}
.ftesti-stars { color: #F59E0B; font-size: 0.75rem; margin-bottom: 0.4rem; }
.ftesti p { font-size: 0.875rem; color: var(--gray-700, var(--gray-600)); font-style: italic; line-height: 1.55; margin-bottom: 0.3rem; }
.ftesti span { font-size: 0.78rem; font-weight: 600; color: var(--blue-600); }

/* FORM CARD */
.form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(37,99,235,0.15);
    border: 1px solid var(--blue-100);
}
.form-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.form-card-head img { height: 44px; width: auto; border-radius: var(--radius-sm); }
.form-card-head h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.15rem;
}
.form-card-head p { font-size: 0.78rem; color: var(--gray-600); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700, var(--gray-600));
    margin-bottom: 0.45rem;
}
.req { color: var(--red-500); }
.inp-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.inp-wrap i {
    position: absolute;
    left: 1rem;
    color: var(--gray-400);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}
.inp-wrap input,
.inp-wrap select {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-900);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.inp-wrap input:focus,
.inp-wrap select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.inp-select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    color: var(--gray-400);
    pointer-events: none;
}
.form-msg {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}
.form-msg.success { background: #F0FDF4; color: #166534; border: 1px solid #86EFAC; }
.form-msg.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.8);
    padding-top: clamp(3rem, 6vw, 5rem);
    margin-bottom: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 6px;
    opacity: 0.95;
}
.fb-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.fb-tag { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-400); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* Lead form section - no top padding gap after offer */
.bg-gradient-soft { padding-top: clamp(3rem, 6vw, 5rem); }

/* ============================================
   STICKY CONTACT BUTTONS
   ============================================ */
.sticky-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 9999;
}
.sticky-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: #fff;
}
.sticky-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.32); }
.sticky-wa  { background: #25D366; }
.sticky-email { background: var(--blue-600); }

/* ============================================
   SCROLL TO TOP (hidden/removed)
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    background: var(--gradient-main);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   FOOTER BOTTOM DEVELOPER LINKS
   ============================================ */
.footer-bottom a {
    color: var(--blue-400);
    transition: color var(--transition);
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom a strong { font-weight: 700; }
.ty-page { background: var(--gradient-soft); min-height: 100vh; }
.ty-main {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}
.ty-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--blue-100);
    animation: fadeInUp 0.6s ease both;
}
.ty-icon-wrap { margin-bottom: 1.5rem; }
.ty-icon {
    width: 80px; height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(37,99,235,0.35);
    animation: popIn 0.5s ease 0.3s both;
}
@keyframes popIn {
    0%   { transform: scale(0); }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.ty-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}
.ty-msg {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.ty-details {
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
}
.ty-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-700, var(--gray-600));
}
.ty-detail-item i { color: var(--blue-600); font-size: 1rem; }
.ty-social-section { margin-bottom: 2rem; }
.ty-social-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.ty-social-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ty-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: var(--gradient-main);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 160px;
}
.ty-social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ty-social-btn i { font-size: 1.5rem; }
.ty-social-btn span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; }
.ty-social-btn small { font-size: 0.72rem; opacity: 0.8; }
.ty-back-btn { margin-top: 1rem; }
.ty-footer {
    background: var(--gray-900);
    padding: 1.25rem;
    text-align: center;
}
.ty-footer p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .who-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .process-arrow { display: none; }
    .cred-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
    .cred-img-wrap { max-width: 400px; margin: 0 auto; }
    .transform-grid { grid-template-columns: repeat(4, 200px); }
    .philosophy-wrap { grid-template-columns: 1fr; }
    .philo-vs { display: none; }
    .offer-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .form-left  { grid-column: 1; grid-row: 1; }
    .form-right { grid-column: 1; grid-row: 2; }
    .form-testimonials { grid-column: 1; grid-row: 3; margin-top: 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-badge { margin: 0 auto; }
    .hero-stats { margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .hero-img-col { order: -1; }
    .hero-img-wrap { max-width: 320px; margin: 0 auto; }
    .fc-1 { top: 5%; right: -4%; }
    .fc-2 { bottom: 8%; left: -4%; }
    .hero-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

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

    .grid-4 { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .transform-grid { grid-template-columns: repeat(3, 165px); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 0.75rem; }
    .stat-sep { width: 80px; height: 1px; }
    .process-step { padding: 1.5rem 1.25rem; }
    .form-card { padding: 1.75rem 1.25rem; }
    .cred-float-badge { right: 0.5rem; bottom: 0.5rem; }
    .offer-big-cta { padding: 2rem 1.5rem; }
    .philosophy-quote { padding: 2rem 1.5rem; }
    .quote-icon { display: none; }
    .ty-social-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .who-grid { grid-template-columns: 1fr; }
    .transform-grid { grid-template-columns: repeat(2, 160px); }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .sticky-contact { bottom: 1.25rem; right: 1.25rem; }
    .sticky-btn { width: 48px; height: 48px; font-size: 1.3rem; }
}


/* ============================================================
   VSL ELEMENTS — URGENCY, VIDEO, TIMER, STICKY CTA, POPUPS
   ============================================================ */

/* ---------- URGENCY BANNER (top of page) ---------- */
.urgency-banner {
    background: linear-gradient(90deg, #DC2626 0%, #F97316 50%, #DC2626 100%);
    background-size: 200% 100%;
    color: #fff;
    text-align: center;
    padding: 0.55rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    animation: urgencyGradient 6s linear infinite;
    position: relative;
    z-index: 1001;
}
.urgency-banner i { color: #FEF3C7; animation: flicker 1.6s ease-in-out infinite; }
.urgency-banner .urgency-icon-left,
.urgency-banner .urgency-icon-right { color: #FEF3C7; animation: flicker 1.6s ease-in-out infinite; }
.urgency-banner strong { color: #FEF3C7; font-weight: 800; }
@keyframes urgencyGradient {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.75; transform: scale(1.15); }
}

/* ---------- LIVE VIEWER BAR ---------- */
.viewer-bar {
    background: #0F172A;
    color: #E2E8F0;
    text-align: center;
    padding: 0.45rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.viewer-bar #viewerCount { color: #34D399; font-weight: 700; }
.viewer-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
    animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.65); }
    70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ---------- PULSING CTA BUTTON ---------- */
.btn-cta-pulse {
    background: linear-gradient(135deg, #F97316 0%, #DC2626 50%, #1D4ED8 100%);
    background-size: 200% 100%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 28px rgba(220,38,38,0.35), 0 4px 14px rgba(37,99,235,0.25);
    animation: ctaPulse 1.8s ease-in-out infinite, ctaShift 6s linear infinite;
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.btn-cta-pulse:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 38px rgba(220,38,38,0.45), 0 6px 20px rgba(37,99,235,0.35);
    animation-play-state: paused;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(220,38,38,0.35), 0 0 0 0 rgba(249,115,22,0.55); }
    50%      { box-shadow: 0 12px 36px rgba(220,38,38,0.45), 0 0 0 14px rgba(249,115,22,0); }
}
@keyframes ctaShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ---------- HERO VIDEO COLUMN ---------- */
.hero-video-col {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}
.video-frame {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 0.85rem;
    box-shadow: 0 25px 70px rgba(37,99,235,0.25), 0 10px 30px rgba(0,0,0,0.10);
    border: 1px solid var(--blue-100);
    position: relative;
}
.video-badge-top {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(37,99,235,0.35);
    white-space: nowrap;
}
.video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio for iframe */
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent;
    -webkit-transform: translateZ(0); /* iOS Safari: fixes overflow:hidden clipping bug on iframes */
    transform: translateZ(0);
}
.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    object-fit: unset;
}
.video-cta-below {
    padding: 1rem 0.5rem 0.25rem;
    text-align: center;
}
.price-row-sm {
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 0.7rem;
}
.price-row-sm s { color: var(--gray-400); margin-right: 0.25rem; }
.price-row-sm strong { color: #DC2626; font-weight: 800; font-size: 1.05rem; }
.slots-sm {
    margin-top: 0.6rem;
    color: #DC2626;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.slots-sm i { margin-right: 0.3rem; animation: flicker 1.4s ease-in-out infinite; }

/* ---------- HERO PRICE BLOCK ---------- */
.hero-price-block {
    background: #fff;
    border: 2px solid var(--blue-100);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
    max-width: 100%;
    animation: fadeInUp 0.7s ease 0.4s both;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.price-orig {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 600;
}
.price-orig s { text-decoration: line-through; }
.price-now {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #DC2626;
    line-height: 1;
}
.price-only {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    margin-left: 0.3rem;
}
.slots-urgency {
    color: #DC2626;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}
.slots-urgency i { margin-right: 0.35rem; animation: flicker 1.5s ease-in-out infinite; }
.slots-urgency strong { font-weight: 800; }

/* ---------- MID-PAGE CTA STRIP ---------- */
.cta-strip {
    background: linear-gradient(90deg, var(--blue-50) 0%, #fff 50%, var(--blue-50) 100%);
    border-top: 1px solid var(--blue-100);
    border-bottom: 1px solid var(--blue-100);
    padding: 1.25rem 0;
}
.cta-strip-dark {
    background: var(--gradient-main);
    border-color: rgba(255,255,255,0.15);
}
.cta-strip-dark .cta-strip-text { color: #fff; }
.cta-strip-dark .cta-strip-text i { color: #FEF3C7; }
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cta-strip-text {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    flex: 1 1 auto;
}
.cta-strip-text i { color: #DC2626; font-size: 1.1rem; animation: flicker 1.6s ease-in-out infinite; }

/* ---------- COUNTDOWN TIMER SECTION ---------- */
.timer-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.timer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(249,115,22,0.18), transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.25), transparent 60%);
    pointer-events: none;
}
.timer-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249,115,22,0.18);
    border: 1px solid rgba(249,115,22,0.4);
    color: #FED7AA;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.timer-badge i { color: #FB923C; }
.timer-h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.timer-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}
.timer-block {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    min-width: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.timer-block span {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.timer-block small {
    margin-top: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #93C5FD;
}
.timer-colon {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: rgba(255,255,255,0.45);
}
.timer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.85rem;
    margin: 0.4rem 0 0.5rem;
}
.timer-price s { font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: rgba(255,255,255,0.45); font-weight: 600; }
.timer-price-now {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 900;
    color: #FB923C;
}
.timer-price-now small { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-left: 0.25rem; }
.timer-slots {
    color: #FED7AA;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.timer-slots i { margin-right: 0.35rem; animation: flicker 1.5s ease-in-out infinite; }
.timer-slots strong { color: #fff; font-weight: 800; }

/* ---------- FORM PRICE DISPLAY ---------- */
.form-price-display {
    background: linear-gradient(135deg, var(--blue-50), #fff);
    border: 1px dashed var(--blue-300, var(--blue-400));
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    margin: 0.5rem 0 1.1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.form-price-display s { font-family: 'Poppins', sans-serif; color: var(--gray-400); font-weight: 600; font-size: 0.95rem; }
.form-price-display > span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #DC2626;
    margin-right: auto;
}
.form-price-display small { font-size: 0.72rem; color: var(--gray-600); font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }
.form-price-display small i { color: var(--green-500); }

/* ---------- STICKY BOTTOM BOOK BAR ---------- */
.sticky-book-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 2px solid var(--blue-600);
    padding: 0.75rem 1rem;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-book-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.sticky-bar-price {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.1;
}
.sticky-bar-price s { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; }
.sticky-bar-price strong { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 900; color: #FB923C; }
.sticky-bar-price strong span { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-left: 0.2rem; }
.sticky-bar-slots {
    color: #FECACA;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.sticky-bar-slots i { color: #FB923C; margin-right: 0.3rem; animation: flicker 1.5s ease-in-out infinite; }

/* ---------- SOCIAL PROOF NOTIFICATION POPUP ---------- */
.sp-notification {
    position: fixed;
    bottom: 6.5rem;
    left: 1.25rem;
    background: #fff;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(37,99,235,0.12);
    border: 1px solid var(--blue-100);
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    z-index: 997;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.sp-notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sp-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue-600);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37,99,235,0.3);
}
.sp-body { display: flex; flex-direction: column; gap: 0.2rem; }
.sp-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.65);
    animation: livePulse 1.6s ease-out infinite;
    flex-shrink: 0;
    display: inline-block;
    margin-right: 4px;
}
.sp-meta {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.sp-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 500;
}
.sp-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    color: var(--gray-900);
    font-weight: 500;
    line-height: 1.3;
}
.sp-text strong { color: var(--blue-700); font-weight: 700; }

/* ---------- HERO LAYOUT TWEAK FOR VIDEO ---------- */
.hero { padding-bottom: clamp(2rem, 4vw, 4rem); }

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 1024px) {
    .timer-block { min-width: 78px; padding: 0.85rem 1rem; }
}
@media (max-width: 768px) {
    /* ---- Compact urgency banner ---- */
    .urgency-banner {
        font-size: 0.7rem;
        padding: 0.45rem 0;
        gap: 0;
        overflow: hidden;
        position: relative;
        justify-content: flex-start;
    }
    .urgency-icon-left,
    .urgency-icon-right { display: none; }
    .urgency-banner .urgency-scroll {
        display: inline-block;
        white-space: nowrap;
        padding: 0 1rem;
        animation: urgencyTicker 16s linear infinite;
    }
    @keyframes urgencyTicker {
        0%   { transform: translateX(100vw); }
        100% { transform: translateX(-100%); }
    }

    .video-frame { padding: 0.6rem; max-width: 100%; }
    .video-badge-top { font-size: 0.65rem; padding: 0.32rem 0.8rem; }
    .hero-video-col { order: -1; }

    /* ---- Mid-page CTA strip ---- */
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .cta-strip-text { justify-content: center; }

    /* ---- Timer ---- */
    .timer-display { gap: 0.4rem; }
    .timer-block { min-width: 64px; padding: 0.7rem 0.55rem; }
    .timer-block span { font-size: 1.75rem; }
    .timer-block small { font-size: 0.6rem; letter-spacing: 0.08em; }
    .timer-colon { font-size: 1.5rem; }

    /* ---- Sticky bar ---- */
    .sticky-bar-inner { gap: 0.6rem; justify-content: center; }
    .sticky-bar-slots { display: none; }
    .sticky-book-bar { padding: 0.6rem 0.8rem; }
    .sticky-contact { bottom: 5.5rem; }
    .sp-notification { bottom: 5.5rem; left: 0.85rem; max-width: calc(100vw - 5rem); }

    /* ---- Reserve space at bottom so sticky bar doesn't overlap footer ---- */
    body { padding-bottom: 80px; }

    /* ---- Smaller pulsing CTAs on mobile ---- */
    .btn-cta-pulse {
        font-size: 0.78rem;
        padding: 0.7rem 1.1rem;
        letter-spacing: 0.02em;
    }
    .btn-cta-pulse.btn-xl { font-size: 0.88rem; padding: 0.85rem 1.4rem; }
    .btn-cta-pulse.btn-full { padding: 0.85rem 1rem; }

    /* ---- Hero stats: 3 cards in a row on mobile ---- */
    .hero-stats {
        flex-direction: row;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        padding: 0.85rem 0.65rem;
        width: 100%;
        max-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .hero-stats .stat {
        background: #fff;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        padding: 0.85rem 0.4rem;
        box-shadow: var(--shadow-sm);
        gap: 0.15rem;
    }
    .stat-num { font-size: 1.4rem; }
    .stat-suffix { font-size: 1.1rem; }
    .stat-lbl { font-size: 0.6rem; letter-spacing: 0.04em; line-height: 1.2; }
    .stat-sep { display: none; }

    /* ---- Real Results: center align section + horizontal-scroll grid ---- */
    #results .section-label,
    #results .section-h2,
    #results .section-sub {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    #results { text-align: center; }
    .transform-scroll-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1rem 1rem;
        margin: 0 -1rem;
    }
    .transform-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 220px;
        grid-template-columns: none;
        gap: 0.85rem;
        min-width: max-content;
        justify-content: flex-start;
        padding: 0 0.25rem;
    }
    .t-card { scroll-snap-align: center; aspect-ratio: 3/4; }
    .t-overlay { transform: translateY(0); }
}
@media (max-width: 480px) {
    .urgency-banner { font-size: 0.65rem; padding: 0.35rem 0; }
    .sticky-bar-price strong { font-size: 1.15rem; }
    .sticky-bar-inner .btn { font-size: 0.72rem; padding: 0.55rem 0.9rem; }
    .stat-num { font-size: 1.2rem; }
    .stat-suffix { font-size: 1rem; }
    .stat-lbl { font-size: 0.55rem; }
    .transform-grid { grid-auto-columns: 200px; }
}
