/* ======================================================
   VAMRIIT PHARMACEUTICALS — REDESIGNED CSS v3
   Clean professional pharma design system
   ====================================================== */

/* ============ CSS VARIABLES ============ */
:root {
    --navy:       #0b1f3a;
    --navy-2:     #122847;
    --navy-3:     #1a3560;
    --gold:       #c9920a;
    --gold-2:     #e0a91c;
    --gold-3:     #f5c842;
    --gold-pale:  #fdf8ec;
    --teal:       #00a86b;
    --teal-2:     #00c47e;
    --blue:       #1a73e8;
    --red:        #d93025;
    --white:      #ffffff;
    --grey-1:     #f4f6f9;
    --grey-2:     #e8ecf2;
    --grey-3:     #c4cdd9;
    --text-1:     #0d1f35;
    --text-2:     #3d5068;
    --text-3:     #7a8ea5;
    --border:     #dde3ec;

    --shadow-1: 0 2px 8px rgba(11,31,58,0.06);
    --shadow-2: 0 6px 24px rgba(11,31,58,0.1);
    --shadow-3: 0 16px 50px rgba(11,31,58,0.15);
    --shadow-4: 0 32px 80px rgba(11,31,58,0.2);
    --shadow-gold: 0 6px 20px rgba(201,146,10,0.3);
    --shadow-teal: 0 6px 20px rgba(0,168,107,0.28);

    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-full: 999px;

    --ff-head: 'Plus Jakarta Sans', sans-serif;
    --ff-body: 'Plus Jakarta Sans', sans-serif;

    --header-h: 90px;
    --topbar-h: 40px;
    --wrap: 1220px;

    --t1: 0.18s ease;
    --t2: 0.3s ease;
    --t3: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ BASE RESET ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    background: var(--white);
    color: var(--text-1);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--t2); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }
input, select, textarea { font-family: var(--ff-body); }

/* ============ LAYOUT ============ */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.bg-white { background: var(--white); }
.bg-grey { background: var(--grey-1); }
.bg-navy { background: var(--navy); }
.bg-contact {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
    position: relative;
    overflow: hidden;
}
.bg-contact::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,146,10,0.08) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}

.text-white { color: var(--white) !important; }

/* Section Headers */
.sec-head { margin-bottom: 56px; }
.center-head { text-align: center; }
.center-head p { max-width: 620px; margin: 0 auto; }

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.sec-tag::before {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.center-head .sec-tag::before { display: none; }
.sec-tag-light { color: var(--gold-2); }
.sec-tag-light::before { background: var(--gold-2); }

.sec-head h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.sec-head p {
    font-size: 16.5px;
    color: var(--text-2);
    line-height: 1.75;
}

/* ============ BUTTONS ============ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--ff-head);
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    color: var(--navy);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-gold);
    transition: var(--t2);
    border: none;
    cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,146,10,0.4); }
.btn-gold i { transition: transform 0.25s; }
.btn-gold:hover i { transform: translateX(4px); }

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-2);
    transition: var(--t2);
}
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: var(--shadow-3); }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    background: #25D366;
    color: var(--white);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-teal);
    transition: var(--t2);
}
.btn-whatsapp:hover { background: #1fb959; transform: translateY(-2px); }
.btn-whatsapp i { font-size: 19px; }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--r-full);
    transition: var(--t2);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* ============ TOP ANNOUNCEMENT BAR ============ */
.top-bar {
    background: var(--navy);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--t2);
}
.top-bar.hidden { transform: translateY(-100%); }

.top-bar-inner {
    max-width: var(--wrap);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.top-bar-inner > span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-bar-inner > span i { color: var(--gold-3); margin-right: 6px; }
.top-bar-contacts { display: flex; gap: 20px; flex-shrink: 0; }
.top-bar-contacts a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-2);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--t1);
}
.top-bar-contacts a:hover { color: var(--gold-3); }

/* ============ MAIN HEADER ============ */
.main-header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    transition: var(--t2);
    box-shadow: var(--shadow-1);
}
.main-header.scrolled {
    box-shadow: var(--shadow-2);
}
.main-header.top-hidden {
    top: 0;
}

.header-container {
    max-width: var(--wrap);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.main-logo {
    height: 74px;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-item {
    padding: 8px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-2);
    border-radius: var(--r-sm);
    transition: var(--t1);
    white-space: nowrap;
}
.nav-item:hover { background: var(--grey-1); color: var(--navy); }
.nav-item.active { color: var(--gold); }

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    white-space: nowrap;
    transition: var(--t1);
}
.nav-phone i { color: var(--teal); }
.nav-phone:hover { border-color: var(--teal); color: var(--navy); }

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    color: var(--navy);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
    transition: var(--t1);
}
.nav-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,146,10,0.35); }

.hamburger {
    display: none;
    width: 38px; height: 38px;
    border-radius: var(--r-sm);
    background: var(--grey-1);
    border: 1.5px solid var(--border);
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-1);
    transition: var(--t1);
}
.hamburger:hover { background: var(--grey-2); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-3);
    padding: 12px 16px 20px;
    gap: 2px;
}
.mobile-menu.mm-open { display: flex; }

.mm-link {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-2);
    border-radius: var(--r-sm);
    transition: var(--t1);
}
.mm-link:hover { background: var(--grey-1); color: var(--navy); }
.mm-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mm-phone { color: var(--navy); font-weight: 700; }
.mm-phone i { color: var(--teal); margin-right: 6px; }
.mm-wa { color: #25D366; font-weight: 700; }
.mm-wa i { margin-right: 6px; }
.mm-cta {
    margin: 8px 0 0;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--r-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

/* ============ HERO SLIDER ============ */
.hero-section {
    position: relative;
    margin-top: calc(var(--topbar-h) + var(--header-h));
    /* Exact viewport height — no scroll needed */
    height: calc(100vh - var(--topbar-h) - var(--header-h));
    min-height: 560px;
    overflow: hidden;
    background: var(--navy);
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    inset: 0;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    overflow: hidden;
}
.slide.slide-active {
    opacity: 1;
    pointer-events: all;
    position: absolute;
}

/* Slide Backgrounds */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.slide-bg-1 {
    background: linear-gradient(135deg, #071325 0%, #0d2248 40%, #122d5c 100%);
}
.slide-bg-2 {
    background: linear-gradient(135deg, #081820 0%, #0a2535 40%, #0d3348 100%);
}
.slide-bg-3 {
    background: linear-gradient(135deg, #060f1e 0%, #0e1f10 40%, #0f2f14 100%);
}
/* Decorative glows */
.slide-bg-1::after, .slide-bg-2::after, .slide-bg-3::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    top: -100px; right: -50px;
    pointer-events: none;
    animation: glow-pulse 7s ease-in-out infinite;
}
.slide-bg-1::after { background: radial-gradient(circle, rgba(201,146,10,0.1) 0%, transparent 70%); }
.slide-bg-2::after { background: radial-gradient(circle, rgba(0,168,107,0.1) 0%, transparent 70%); }
.slide-bg-3::after { background: radial-gradient(circle, rgba(0,180,100,0.08) 0%, transparent 70%); }

@keyframes glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

/* Slide Inner Layout */
.slide-inner {
    position: relative;
    z-index: 2;
    max-width: var(--wrap);
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px 72px; /* bottom pad = room for dots */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

/* Slide Text */
.slide-text {
    animation: fade-up 0.8s ease both;
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(201,146,10,0.14);
    border: 1px solid rgba(201,146,10,0.3);
    border-radius: var(--r-full);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold-2);
    margin-bottom: 16px;
}

.slide-text h1 {
    font-size: clamp(26px, 3.5vw, 50px);
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.slide-text h1 .highlight {
    display: inline;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-text > p {
    font-size: clamp(13px, 1.2vw, 15.5px);
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 520px;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.slide-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.slide-features li i {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(0,168,107,0.2);
    color: var(--teal-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.slide-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Slide Visual / Product Showcase */
.slide-visual {
    animation: fade-left 0.9s ease 0.15s both;
    overflow: hidden; /* clip only within column, not globally */
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes fade-left {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

.product-showcase {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ALL hero slide images: never crop, always show full */
.showcase-img {
    width: 100%;
    max-width: 100%;
    max-height: min(400px, 52vh);
    height: auto;            /* auto height = no cropping */
    object-fit: contain;     /* contain = full image visible */
    border-radius: var(--r-lg);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transition: transform 0.6s ease;
    display: block;
}
.slide-active .showcase-img:hover { transform: translateY(-5px) scale(1.02); }

/* Program promotional banner — must NOT crop */
.prog-img {
    object-fit: contain;     /* was cover — caused cropping */
    height: auto;
    max-height: min(380px, 50vh);
    border-radius: var(--r-md);
}

.showcase-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    border-radius: var(--r-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    animation: float-up 5s ease-in-out infinite;
}
.badge-green { background: linear-gradient(135deg, var(--teal), var(--teal-2)); box-shadow: var(--shadow-teal); }
.badge-blue { background: linear-gradient(135deg, #1a73e8, #4a9df5); box-shadow: 0 6px 20px rgba(26,115,232,0.3); }

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

.sb-top {
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.badge-green .sb-top, .badge-blue .sb-top { color: var(--white); }
.sb-bot {
    font-size: 11px;
    font-weight: 700;
    color: rgba(11,31,58,0.8);
    margin-top: 3px;
    white-space: nowrap;
}
.badge-green .sb-bot, .badge-blue .sb-bot { color: rgba(255,255,255,0.85); }

/* Slider Controls */
.slider-controls-area {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.ctrl-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t2);
}
.ctrl-arrow:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); transform: scale(1.08); }

.ctrl-dots { display: flex; gap: 8px; align-items: center; }
.ctrl-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: var(--t2);
}
.ctrl-dot.dot-active { width: 28px; border-radius: var(--r-full); background: var(--gold-2); }

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 40px;
    right: max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 2px;
    z-index: 10;
}

/* ============ STATS BAR ============ */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-1);
}
.stats-bar-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
}
.stat-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 20px;
    transition: var(--t1);
}
.stat-box:hover { background: var(--grey-1); }
.stat-icon {
    width: 48px; height: 48px;
    border-radius: var(--r-sm);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon i { font-size: 22px; color: var(--gold); }
.stat-data { display: flex; flex-direction: column; }
.stat-data strong {
    font-family: var(--ff-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.5px;
}
.stat-data span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.stat-sep { width: 1px; background: var(--border); margin: 20px 0; }

/* ============ GRID-3 (Feature Cards) ============ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    transition: var(--t2);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--t2);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: transparent; }

.fc-icon {
    width: 54px; height: 54px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}
.fc-gold { background: var(--gold-pale); color: var(--gold); }
.fc-gold::after { background: var(--gold-2); }
.feature-card:has(.fc-gold)::after { background: var(--gold-2); }
.fc-navy { background: #eef1f8; color: var(--navy-3); }
.feature-card:has(.fc-navy)::after { background: var(--navy-3); }
.fc-green { background: #e8faf3; color: var(--teal); }
.feature-card:has(.fc-green)::after { background: var(--teal); }
.fc-blue { background: #e8f0fc; color: var(--blue); }
.feature-card:has(.fc-blue)::after { background: var(--blue); }
.fc-purple { background: #f0eafa; color: #7c3aed; }
.feature-card:has(.fc-purple)::after { background: #7c3aed; }
.fc-orange { background: #fff4ec; color: #e06c00; }
.feature-card:has(.fc-orange)::after { background: #e06c00; }

.feature-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ============ DISTRIBUTION PROTECTION PROGRAM ============ */
.program-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.prog-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-4);
    position: relative;
    background: #0a1e38; /* dark bg so contain image has a background */
}
.prog-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* show full image, no crop */
    transition: transform 0.7s ease;
}
.prog-img-wrap:hover .prog-photo { transform: scale(1.02); }
.prog-float-badge {
    position: absolute;
    bottom: 24px; right: -12px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-gold);
    animation: float-up 5s ease-in-out infinite;
}
.prog-float-badge > i { font-size: 22px; color: var(--navy); }
.prog-float-badge strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
.prog-float-badge span { font-size: 11px; color: rgba(11,31,58,0.65); }
.program-img-col { position: relative; }

.program-text-col .sec-tag { margin-bottom: 10px; }
.program-text-col h2 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 16px; }
.prog-intro { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }
.prog-intro strong { color: var(--white); }

.prog-percent-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-md);
    padding: 20px;
    margin-bottom: 32px;
}
.ppc-left {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    border-radius: var(--r-sm);
    padding: 14px 16px;
    text-align: center;
    min-width: 90px;
}
.ppc-num { display: block; font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.ppc-label { display: block; font-size: 10px; font-weight: 700; color: rgba(11,31,58,0.7); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.ppc-right h4 { font-size: 16px; color: var(--white); margin-bottom: 6px; }
.ppc-right p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.65; }

.steps-label { font-size: 17px; color: var(--white); margin-bottom: 18px; font-weight: 700; }
.prog-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ps-step { display: flex; gap: 14px; align-items: flex-start; }
.ps-num {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}
.ps-text strong { display: block; font-size: 14.5px; color: var(--white); margin-bottom: 2px; }
.ps-text span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ============ PRODUCTS ============ */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.ftab {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    transition: var(--t1);
    font-family: var(--ff-body);
}
.ftab:hover { border-color: var(--gold-2); color: var(--gold); background: var(--gold-pale); }
.ftab.ftab-active { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: var(--shadow-1); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prod-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: var(--t2);
    display: flex;
    flex-direction: column;
    position: relative;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); border-color: rgba(201,146,10,0.25); }

.prod-img-box {
    height: 220px;
    background: var(--grey-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: visible;     /* was hidden — caused cropping on hover/zoom */
}
.prod-image {
    max-height: 160px;     /* limit by height, not crop */
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;   /* always show full product */
    transition: transform 0.5s ease;
    display: block;
}
.prod-card:hover .prod-image { transform: scale(1.06); }
.prod-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gold-2);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prod-body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.prod-body h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.2px; }
.prod-mol { font-size: 12.5px; color: var(--text-3); margin-bottom: 10px; font-style: italic; }
.prod-info { font-size: 13.5px; color: var(--text-2); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.prod-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    background: var(--gold-pale);
    border: 1.5px solid rgba(201,146,10,0.25);
    border-radius: var(--r-full);
    transition: var(--t1);
}
.prod-btn:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); }

.catalog-cta {
    margin-top: 56px;
    text-align: center;
}
.catalog-cta p { font-size: 14px; color: var(--text-3); margin-bottom: 16px; }

/* ============ WHY US ============ */
.why-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-left .sec-head h2 { margin-bottom: 12px; }
.why-left .sec-head p { margin-bottom: 0; }
.why-intro { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 28px; }

.why-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.wc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-1);
    font-weight: 500;
}
.wc-item i { font-size: 18px; color: var(--teal); flex-shrink: 0; }

.why-right { display: flex; flex-direction: column; gap: 20px; }

.testi-card {
    background: var(--grey-1);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: var(--t2);
}
.testi-card:hover { box-shadow: var(--shadow-2); transform: translateY(-4px); border-color: rgba(201,146,10,0.25); }
.testi-stars { color: var(--gold-2); font-size: 17px; margin-bottom: 12px; }
.testi-card > p { font-size: 14.5px; color: var(--text-2); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 13.5px;
    flex-shrink: 0;
}
.av-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color: var(--navy); }
.av-green { background: linear-gradient(135deg, var(--teal), var(--teal-2)); color: var(--white); }
.testi-author strong { display: block; font-size: 14px; color: var(--navy); }
.testi-author span { font-size: 12px; color: var(--text-3); }

.cert-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cert-item {
    flex: 1; min-width: 80px;
    background: var(--navy);
    border-radius: var(--r-md);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.cert-item i { font-size: 20px; color: var(--gold-2); }
.cert-item span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.4; }

/* ============ CONTACT ============ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-left h2 { margin-bottom: 14px; }
.contact-subtext { font-size: 15.5px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 30px; }
.contact-subtext strong { color: var(--gold-2); }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.cd-row { display: flex; gap: 14px; }
.cd-icon {
    width: 40px; height: 40px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cd-icon i { font-size: 15px; color: var(--gold-2); }
.cd-row strong { display: block; font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.cd-row p { font-size: 14px; color: rgba(255,255,255,0.8); }

.wa-big-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #25D366;
    border-radius: var(--r-md);
    transition: var(--t1);
    margin-bottom: 24px;
}
.wa-big-btn:hover { background: #1fb959; transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.wa-big-btn > i:first-child { font-size: 26px; color: var(--white); flex-shrink: 0; }
.wa-big-btn strong { display: block; font-size: 14.5px; color: var(--white); font-weight: 700; }
.wa-big-btn span { font-size: 12px; color: rgba(255,255,255,0.8); }
.wa-arrow { margin-left: auto; font-size: 14px; color: rgba(255,255,255,0.6); }

.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--t1);
}
.social-row a:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); }

/* Contact Form */
.form-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-4);
}
.form-card h3 { font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--text-2); margin-bottom: 26px; }

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fld { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fld label { font-size: 13px; font-weight: 600; color: var(--navy); }
.fld input, .fld select, .fld textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14.5px;
    color: var(--text-1);
    background: var(--grey-1);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    outline: none;
    transition: var(--t1);
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
    border-color: var(--gold-2);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,146,10,0.1);
}
.fld textarea { resize: vertical; min-height: 100px; }
.fld select option[value=""][disabled] { color: var(--text-3); }

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    font-size: 15.5px;
    font-weight: 700;
    font-family: var(--ff-head);
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    color: var(--navy);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-gold);
    transition: var(--t1);
    border: none;
    cursor: pointer;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,146,10,0.4); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--t1);
}
.faq-item.faq-open { border-color: rgba(201,146,10,0.4); box-shadow: var(--shadow-1); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    gap: 16px;
    font-family: var(--ff-body);
    transition: var(--t1);
}
.faq-question:hover { color: var(--gold); }
.faq-item.faq-open .faq-question { color: var(--gold); }

.faq-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--grey-1);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: var(--t2);
    color: var(--text-2);
}
.faq-item.faq-open .faq-icon { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.faq-open .faq-answer { max-height: 500px; }
.faq-answer p {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.75;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    border-top: 3px solid var(--gold-2);
}

.footer-body { padding: 72px 0 52px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

/* Logo — white pill so the white-background PNG looks intentional */
.footer-logo-wrap {
    display: inline-flex;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 10px 18px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.footer-logo {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(255,255,255,0.52);
    margin-bottom: 22px;
    max-width: 300px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--t1);
}
.footer-socials a:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Footer column headings */
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    transition: var(--t1);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold-2);
    flex-shrink: 0;
    opacity: 0;
    transition: var(--t1);
}
.footer-col ul a:hover { color: var(--gold-2); padding-left: 4px; }
.footer-col ul a:hover::before { opacity: 1; }

/* Footer contact */
.footer-contact-col h4 { border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.fcl-item { display: flex; gap: 12px; align-items: flex-start; }
.fcl-item i {
    font-size: 14px;
    color: var(--gold-2);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.fcl-item span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* Footer bottom bar */
.footer-base {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    background: rgba(0,0,0,0.15);
}
.footer-base-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-base-inner p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-base-links { display: flex; gap: 20px; }
.footer-base-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    transition: var(--t1);
}
.footer-base-links a:hover { color: var(--gold-2); }

/* ============ FLOATING RIGHT-SIDE BUTTONS ============ */
.float-right-btns {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    pointer-events: none; /* container transparent — buttons are pointer-events:all */
}

.frb-btn {
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50% 0 0 50%; /* pill shape, flat on right edge */
    overflow: visible;
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.frb-btn:hover { transform: translateX(-6px) scale(1.06); }

/* Button Icon Circle */
.frb-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: box-shadow 0.25s ease;
}
.frb-btn:hover .frb-icon { box-shadow: 0 8px 28px rgba(0,0,0,0.35); }

/* Call button — site navy + gold accent */
.frb-call .frb-icon {
    background: linear-gradient(135deg, var(--navy-3), var(--navy));
    border: 2px solid var(--gold-2);
}
.frb-call:hover .frb-icon {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
    border-color: var(--gold-3);
}
.frb-call:hover .frb-icon i { color: var(--navy); }

/* WhatsApp button — WA green */
.frb-wa .frb-icon {
    background: linear-gradient(135deg, #1abe5a, #25D366);
    border: 2px solid rgba(255,255,255,0.2);
}
.frb-wa:hover .frb-icon {
    background: linear-gradient(135deg, #17a84f, #1abe5a);
}

/* Pulse ring animation on Call button */
.frb-call .frb-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--gold-2);
    opacity: 0;
    animation: frb-pulse 2.5s ease-out infinite;
}
.frb-wa .frb-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: frb-pulse 2.5s ease-out infinite 1.25s;
}
@keyframes frb-pulse {
    0%   { transform: scale(0.95); opacity: 0.6; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* Tooltip that slides in from the right on hover */
.frb-tooltip {
    position: absolute;
    right: 62px; /* just to the left of the icon */
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--navy);
    border: 1px solid var(--gold-2);
    border-radius: var(--r-md);
    padding: 10px 16px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-3);
}
.frb-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right: none;
    border-left-color: var(--gold-2);
}
.frb-btn:hover .frb-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.frb-tip-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}
.frb-tip-num {
    font-size: 11.5px;
    color: rgba(255,255,255,0.6);
}
.frb-wa .frb-tooltip { border-color: #25D366; }
.frb-wa .frb-tooltip::after { border-left-color: #25D366; }

/* Ripple effect on click */
.frb-ripple {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: none;
    pointer-events: none;
    z-index: 3;
}
.frb-btn:active .frb-ripple {
    animation: frb-ripple 0.5s ease-out;
}
@keyframes frb-ripple {
    from { transform: scale(0); opacity: 1; }
    to   { transform: scale(2.5); opacity: 0; }
}

/* Hide on mobile (mobile float bar handles that) */
@media (max-width: 768px) {
    .float-right-btns { display: none; }
}

/* ============ FLOATING MOBILE BAR ============ */
.mob-float-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1.5px solid var(--border);
    z-index: 997;
    box-shadow: 0 -4px 20px rgba(11,31,58,0.1);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.mfb-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-2);
    border-right: 1px solid var(--border);
    transition: var(--t1);
}
.mfb-btn:last-child { border-right: none; }
.mfb-btn i { font-size: 20px; }
.mfb-btn:hover { background: var(--grey-1); color: var(--navy); }
.mfb-wa { background: #f0fff8; color: #25D366; }
.mfb-wa:hover { background: #e0faed; color: #1fb959; }
.mfb-cta { background: var(--gold-pale); color: var(--gold); }
.mfb-cta:hover { background: var(--gold-2); color: var(--navy); }

/* ============ LEAD FORM POPUP MODAL ============ */
.lead-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 58, 0.82);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t3);
}

.lead-modal-bg.active {
    opacity: 1;
    pointer-events: all;
}

.lead-modal-card {
    background: var(--white);
    border-radius: var(--r-xl);
    max-width: 680px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-4);
    transform: scale(0.92) translateY(24px);
    transition: transform var(--t3);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-modal-bg.active .lead-modal-card {
    transform: scale(1) translateY(0);
}

.lm-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: var(--r-full);
    background: rgba(11, 31, 58, 0.05);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--t1);
    z-index: 10;
}
.lm-close:hover {
    background: var(--red);
    color: var(--white);
    transform: rotate(90deg);
}

.lm-form-state {
    padding: 24px 32px;
    overflow-y: auto;
}

.lm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    border-bottom: 1.5px dashed var(--border);
    padding-bottom: 12px;
}

.lm-header-left {
    flex: 1;
}

.lm-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 8px;
    border-radius: var(--r-xs);
    margin-bottom: 6px;
}

.lm-header-left h2 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.25;
}

.lm-header-left h2 span {
    color: var(--gold);
}

.lm-header-left p {
    font-size: 12.5px;
    color: var(--text-2);
}

.lm-header-left p strong {
    color: var(--teal);
}

.lm-header-right {
    display: flex;
    gap: 8px;
}

.lm-quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--grey-1);
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: var(--r-sm);
    min-width: 68px;
    text-align: center;
}

.lm-quick-stat strong {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.1;
}

.lm-quick-stat span {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    margin-top: 1px;
}

.lm-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lm-fld {
    margin-bottom: 10px;
}

.lm-fld label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 4px;
}

.lm-fld label i {
    color: var(--text-3);
    font-size: 11px;
}

.lm-fld input, 
.lm-fld select, 
.lm-fld textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--grey-1);
    color: var(--text-1);
    font-size: 13.5px;
    transition: var(--t1);
}

.lm-fld textarea {
    resize: vertical;
    min-height: 52px;
    height: 52px;
}

.lm-fld input:focus, 
.lm-fld select:focus, 
.lm-fld textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 146, 10, 0.1);
}

.lm-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    margin-bottom: 8px;
}

.lm-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--navy);
    font-weight: 800;
    font-size: 13.5px;
    padding: 11px 20px;
    border-radius: var(--r-full);
    transition: var(--t1);
    box-shadow: var(--shadow-gold);
}

.lm-submit:hover {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-3) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201,146,10,0.35);
}

.lm-submit:disabled {
    background: var(--grey-3);
    color: var(--text-3);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.lm-or {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
}

.lm-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 20px;
    border-radius: var(--r-full);
    transition: var(--t1);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.15);
}

.lm-wa-btn:hover {
    background: #1fb959;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

.lm-privacy {
    font-size: 11px;
    color: var(--text-3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.lm-privacy i {
    color: var(--teal);
}


.lm-success-state {
    padding: 30px 24px;
    text-align: center;
    overflow-y: auto;
}

.lms-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4fbe8, #a8f2cc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-teal);
    animation: lms-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lms-pop {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.lms-icon i {
    font-size: 28px;
    color: var(--teal);
}

.lm-success-state h2 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.lm-success-state p {
    font-size: 13.5px;
    color: var(--text-2);
    max-width: 480px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.lm-success-state p strong {
    color: var(--navy);
}

.lm-wa-big {
    display: inline-flex;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--r-md);
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    width: auto;
}

.lm-wa-big i {
    font-size: 24px;
}

.lm-wa-big strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.lm-wa-big span {
    display: block;
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

.lm-close-success {
    display: block;
    margin: 0 auto;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-3);
    padding: 8px 20px;
    border-radius: var(--r-full);
    transition: var(--t1);
}

.lm-close-success:hover {
    background: var(--grey-1);
    color: var(--text-1);
}

@media (max-width: 640px) {
    .lead-modal-card {
        max-height: 95vh;
    }
    .lm-form-state {
        padding: 30px 20px;
    }
    .lm-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }
    .lm-header-badge {
        margin: 0 auto 10px;
    }
    .lm-header-right {
        justify-content: center;
    }
    .lm-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .lm-actions {
        flex-direction: column;
        width: 100%;
    }
    .lm-submit, .lm-wa-btn {
        width: 100%;
    }
    .lm-or {
        margin: 4px 0;
    }
}


/* ============ SCROLL REVEAL ============ */
.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
    .slide-inner { grid-template-columns: 1fr; gap: 0; padding: 24px 24px 72px; }
    .slide-visual { display: none; }
    .hero-section { height: auto; min-height: calc(100vh - var(--topbar-h) - var(--header-h)); }
    .slider-wrapper { height: auto; min-height: calc(100vh - var(--topbar-h) - var(--header-h)); }
    .slide { height: auto; min-height: calc(100vh - var(--topbar-h) - var(--header-h)); }
    .slide-inner { height: auto; }

    .program-layout { grid-template-columns: 1fr; gap: 50px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
        --topbar-h: 36px;
    }
    .section-pad { padding: 72px 0; }

    .top-bar-inner > span { display: none; }
    .top-bar-contacts { margin: 0 auto; }

    .desktop-nav, .nav-phone { display: none; }
    .hamburger { display: flex; }
    .nav-cta-btn { display: none; }

    .slide-text h1 { font-size: 32px; }
    .slide-btns { flex-direction: column; }
    .slide-btns .btn-gold, .slide-btns .btn-whatsapp, .slide-btns .btn-outline-white { width: 100%; justify-content: center; }

    .stats-bar-inner { flex-wrap: wrap; }
    .stat-box { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
    .stat-box:nth-child(1), .stat-box:nth-child(3) { border-right: 1px solid var(--border); }
    .stat-sep { display: none; }

    .grid-3 { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .form-2col { grid-template-columns: 1fr; }

    .mob-float-bar { display: flex; }
    body { padding-bottom: 60px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-base-inner { flex-direction: column; text-align: center; }

    .prog-float-badge { right: 10px; bottom: 10px; }
}

@media (max-width: 520px) {
    .why-layout { gap: 36px; }
    .form-card { padding: 28px 20px; }
    .cert-strip { gap: 8px; }
    .stat-box { flex: 0 0 100%; border-right: none; }
    .footer-socials { flex-wrap: wrap; }
}
