/* =============================================================
   COYA — Company of the Year Awards | KIM
   External stylesheet — coya.css
   ============================================================= */

/* ── CSS Custom Properties ── */
:root {
    --gold: #E8A000;
    --gold-h: #C78B00;
    --gold-a10: rgba(232, 160, 0, .10);
    --gold-a12: rgba(232, 160, 0, .12);
    --gold-a18: rgba(232, 160, 0, .18);
    --gold-a25: rgba(232, 160, 0, .25);
    --gold-a40: rgba(232, 160, 0, .40);
    --gold-a45: rgba(232, 160, 0, .45);
    --gold-a55: rgba(232, 160, 0, .55);
    --l-bg: #FFFFFF;
    --l-bg-alt: #F9F7F2;
    --l-card: #FFFFFF;
    --l-border: #E8DFC8;
    --l-text: #1A1400;
    --l-muted: #6B5E3E;
    --ff: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 12px rgba(26, 20, 0, .06);
    --shadow-md: 0 4px 20px rgba(26, 20, 0, .07);
    --shadow-lg: 0 22px 48px rgba(26, 20, 0, .18);
    --radius-sm: 7px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: .25s ease;
}

/* ── Typography helpers ── */
.t-gold  { color: var(--gold); }
.t-text  { color: var(--l-text); }
.t-muted { color: var(--l-muted); }
.t-white { color: #fff; }

/* ── Badge / pill ── */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    border: 1px solid var(--gold-a40);
    border-radius: 999px;
    padding: 5px 14px 5px 10px;
    margin-bottom: 1.1rem;
    background: var(--gold-a10);
    font-family: var(--ff);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.badge-pill::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    display: inline-block;
}

/* ── Section headings ── */
.section-h2 {
    font-family: var(--ff);
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--l-text);
    margin-bottom: .9rem;
}
.section-sub {
    font-family: var(--ff);
    font-size: .93rem;
    line-height: 1.8;
    color: var(--l-muted);
}

/* ── Card base ── */
.card-base {
    background: var(--l-card);
    border: 1px solid var(--l-border);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

/* =============================================================
   HERO
   ============================================================= */
.hero-section {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0a00;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: contrast(1.05) saturate(1.08) brightness(0.95);
}
.hero-overlay-directional {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg,
        rgba(0,0,0,.42) 0%,
        rgba(0,0,0,.42) 40%,
        rgba(0,0,0,.42) 65%,
        rgba(0,0,0,.42) 100%);
}
.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.45) 100%);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,160,0,.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 3;
}
.hero-inner {
    position: relative;
    z-index: 10;
    padding: 100px 15px 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(232,160,0,.12);
    border: 1px solid var(--gold-a45);
    border-radius: 999px;
    padding: 5px 14px 5px 10px;
    margin-bottom: 1.8rem;
}
.hero-badge-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-badge-text {
    font-family: var(--ff);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-h1 {
    font-family: var(--ff);
    font-weight: 800;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 1.4rem;
}
.hero-sub {
    font-family: var(--ff);
    font-size: .93rem;
    line-height: 1.8;
    color: rgba(255,255,255,.62);
    max-width: 500px;
    margin-bottom: 2rem;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: #0a0800;
    font-family: var(--ff);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition);
}
.hero-cta:hover { background: var(--gold-h); }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.hero-card {
    height: 148px;
    border-radius: var(--radius-md);
    padding: 18px 16px;
    background: var(--gold-a10);
    border: 1px solid var(--gold-a25);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.hero-card-num {
    font-family: var(--ff);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-top: auto;
}
.hero-card-label {
    font-family: var(--ff);
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    margin-top: 3px;
}
.hero-card-bar-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-a12);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.hero-card-bar {
    height: 100%;
    width: 0;
    background: var(--gold);
    border-radius: inherit;
    transition: width .05s linear;
}

/* ── Flip Cards ── */
.flip-card {
    height: 148px;
    border-radius: var(--radius-md);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.flip-face {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    transition: opacity .45s ease;
    will-change: opacity;
}
.flip-front {
    background: var(--gold-a10);
    border: 1px solid var(--gold-a25);
    opacity: 1;
}
.flip-back {
    background: #ac8011;
    border: 1.5px solid var(--gold-a55);
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
}
.flip-card.is-flipped .flip-front {
    opacity: 0;
    pointer-events: none;
}
.flip-card.is-flipped .flip-back {
    opacity: 1;
    pointer-events: auto;
}
.flip-progress {
    margin-top: 6px;
    height: 2px;
    background: var(--gold-a18);
    border-radius: 999px;
    overflow: hidden;
}
.flip-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gold);
    border-radius: 999px;
    transition: width .05s linear;
}
.flip-back-title {
    font-family: var(--ff);
    font-size: .54rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.flip-back-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.flip-back-list li {
    font-family: var(--ff);
    font-size: .7rem;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 7px;
}
.flip-back-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    display: inline-block;
}
.flip-back-list li.muted { color: rgba(232,160,0,.65); font-style: italic; }
.flip-back-list li.muted::before { background: rgba(232,160,0,.4); }
.flip-back-grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 5px 8px;
}
.flip-back-link {
    font-family: var(--ff);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px solid rgba(232,160,0,.2);
    padding-top: 8px;
    margin-top: 4px;
}

.scroll-hint { text-align: center; margin-top: 3rem; }
.scroll-hint a {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.scroll-hint span {
    font-family: var(--ff);
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

/* =============================================================
   OPI FRAMEWORK
   ============================================================= */
.opi-section {
    background: var(--l-bg);
    padding: 90px 0;
    border-top: 3px solid var(--gold);
    text-align: center;
}
.opi-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--l-border);
    background: var(--l-card);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform .28s cubic-bezier(.22,.68,0,1.2), box-shadow .28s ease;
}
.opi-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
}
.opi-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.opi-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
    will-change: transform;
}
.opi-card:hover .opi-card-img { transform: scale(1.07); }
.opi-card-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,10,0,.1) 0%, rgba(13,10,0,.5) 55%, rgba(13,10,0,.85) 100%);
    pointer-events: none;
}
.opi-num-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232,160,0,.18);
    border: 1.5px solid var(--gold-a55);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.opi-num-badge span {
    font-family: var(--ff);
    font-size: .64rem;
    font-weight: 800;
    color: var(--gold);
}
.opi-tag-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 4px 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.opi-tag-pill span {
    font-family: var(--ff);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.opi-card-footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
}
.opi-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(232,160,0,.2);
    border: 1.5px solid var(--gold-a55);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.opi-card-title {
    font-family: var(--ff);
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.opi-card-body { padding: 16px 20px 20px; }
.opi-card-desc {
    font-family: var(--ff);
    font-size: .83rem;
    line-height: 1.75;
    color: var(--l-muted);
    margin: 0 0 16px;
}
.opi-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--l-border);
}
.opi-stars { display: flex; align-items: center; gap: 5px; }
.opi-score {
    font-family: var(--ff);
    font-size: .68rem;
    font-weight: 700;
    color: var(--l-muted);
    margin-left: 3px;
}
.opi-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gold);
    color: #0a0800;
    font-family: var(--ff);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 999px;
    transition: background var(--transition);
}
.opi-explore-btn:hover { background: var(--gold-h); }

/* =============================================================
   HOW IT WORKS — STEPPER
   ============================================================= */
.steps-section {
    background: var(--l-bg-alt);
    padding: 90px 0;
    border-top: 1px solid var(--l-border);
    text-align: center;
}
.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 2.5rem;
}
.steps-timeline-line {
    position: absolute;
    top: 22px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--l-border);
    z-index: 0;
}
.coya-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
    flex: 1;
}
.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--l-border);
    background: var(--l-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    box-shadow: 0 2px 8px rgba(26,20,0,.08);
}
.step-label {
    font-family: var(--ff);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--l-muted);
    transition: color var(--transition);
    text-align: center;
    max-width: 90px;
}
.coya-step.is-active .step-circle { background: var(--gold); border-color: var(--gold); }
.coya-step.is-active .step-label  { color: var(--gold); }

.step-pills-wrap {
    overflow-x: auto;
    gap: .5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 4px;
    scrollbar-width: none;
    display: flex;
    justify-content: center;
}
.step-pills-wrap::-webkit-scrollbar { display: none; }
.coya-pill {
    flex-shrink: 0;
    background: var(--l-bg);
    border: 1px solid var(--l-border);
    border-radius: 999px;
    padding: 6px 14px;
    font-family: var(--ff);
    font-size: .73rem;
    font-weight: 700;
    color: var(--l-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
}
.coya-pill.is-active { color: var(--gold); border-color: var(--gold); }

.step-panel {
    display: flex;
    border: 1px solid var(--l-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: left;
}
.step-sidebar {
    width: 230px;
    flex-shrink: 0;
    background: var(--l-bg-alt);
    border-right: 1px solid var(--l-border);
}
.coya-sidebar-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: 15px 18px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}
.coya-sidebar-item .sidebar-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--l-border);
    background: var(--gold-a10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sidebar-step-num {
    font-family: var(--ff);
    font-size: .6rem;
    color: var(--l-muted);
    font-weight: 600;
}
.sidebar-label {
    font-family: var(--ff);
    font-size: .85rem;
    font-weight: 600;
    color: var(--l-muted);
    transition: color var(--transition);
}
.coya-sidebar-item.is-active { border-left-color: var(--gold); background: var(--gold-a10); }
.coya-sidebar-item.is-active .sidebar-label { color: var(--l-text); }

.step-content-pane {
    flex: 1;
    padding: 28px;
    background: var(--l-card);
    min-width: 0;
    text-align: left;
}
.coya-content      { display: none; }
.coya-content.is-active { display: block; }
.step-content-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.step-content-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-a10);
    border: 1px solid var(--gold-a40);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-content-num {
    font-family: var(--ff);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
}
.step-content-title {
    font-family: var(--ff);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--l-text);
}
.step-week-pill {
    display: inline-block;
    background: var(--gold-a10);
    border: 1px solid rgba(232,160,0,.35);
    border-radius: 999px;
    padding: 2px 11px;
    font-family: var(--ff);
    font-size: .68rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.step-content-desc {
    font-family: var(--ff);
    font-size: .93rem;
    line-height: 1.8;
    color: var(--l-muted);
    margin-bottom: 1.8rem;
}
.step-nav { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.step-nav-btn {
    background: none;
    border: none;
    font-family: var(--ff);
    font-size: .83rem;
    font-weight: 600;
    color: var(--l-muted);
    cursor: pointer;
    padding: 0;
}
.step-nav-btn:disabled { color: #C8BCA0; cursor: default; }
.step-nav-btn.next      { color: var(--l-text); }
.step-nav-btn.next:disabled { color: #C8BCA0; }
.step-dots { display: flex; gap: 5px; align-items: center; }
.coya-dot {
    height: 6px;
    border-radius: 999px;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
    background: var(--l-border);
    width: 6px;
}
.coya-dot.is-active { width: 20px; background: var(--gold); }

/* =============================================================
   WINNERS / HALL OF FAME
   ============================================================= */
.winners-section {
    background: var(--l-bg);
    padding: 90px 0;
    border-top: 1px solid var(--l-border);
    text-align: center;
}
.winner-card {
    background: var(--l-card);
    border: 1px solid var(--l-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}
.winner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(26,20,0,.16);
}

/* Clickable winner card link wrapper */
.winner-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.winner-card-link:hover .winner-card {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(26,20,0,.16);
}
/* Prevent double-transform when wrapper AND card both define hover */
.winner-card-link .winner-card:hover {
    transform: none;
    box-shadow: none;
}

.winner-img-wrap {
    height: 170px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.winner-img { width: 100%; height: 100%; object-fit: cover; }
.winner-fallback {
    display: none;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(232,160,0,.14);
    border: 2px solid var(--gold-a40);
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    position: absolute;
}
.winner-year-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    border-radius: 999px;
    padding: 3px 12px;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
}
.winner-cat-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--gold-a40);
    border-radius: 999px;
    padding: 3px 12px;
    font-size: .65rem;
    font-weight: 600;
    color: var(--gold);
}
.winner-body { padding: 18px 20px; }
.winner-name { font-size: .95rem; font-weight: 700; color: var(--l-text); }
.winner-sub  { font-size: .75rem; color: var(--l-muted); margin-bottom: 14px; }
.winner-foot {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding-top: 12px;
    border-top: 1px solid var(--l-border);
}
.winner-foot span { font-size: .7rem; color: var(--l-muted); }

/* ── Also Recognised box ── */
.also-box {
    margin-top: 1.5rem;
    border: 1px solid var(--l-border);
    border-radius: 12px;
    padding: 24px 26px;
    background: var(--l-bg-alt);
    text-align: left;
}
.also-box-title {
    font-family: var(--ff);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--l-muted);
    margin-bottom: 1.2rem;
}
.also-category-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}
.also-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.4rem;
}
.also-tags:last-child { margin-bottom: 0; }
.also-tag {
    border: 1px solid var(--l-border);
    border-radius: 999px;
    padding: 4px 15px;
    font-family: var(--ff);
    font-size: .78rem;
    color: var(--l-muted);
    background: var(--l-bg);
    transition: border-color var(--transition), color var(--transition);
}
.also-tag:hover { border-color: var(--gold-a40); color: var(--l-text); }
.also-divider { border: none; border-top: 1px solid var(--l-border); margin: 1.2rem 0; }

/* ── Preview modal ── */
.preview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.preview-overlay.is-open { display: flex; }
.preview-box {
    position: relative;
    width: min(92vw, 980px);
    max-height: 100vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.preview-img { width: 100%; max-height: 80vh; object-fit: cover; }
.preview-meta { padding: 22px; }
.preview-meta-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.preview-year-tag {
    background: var(--gold);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--ff);
    font-size: .8rem;
    font-weight: 700;
}
.preview-cat-tag {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--ff);
    font-size: .8rem;
    font-weight: 700;
}
.preview-title {
    margin-top: 16px;
    font-family: var(--ff);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--l-text);
    margin-bottom: 0;
}
.preview-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

/* =============================================================
   TESTIMONIALS / VOICES
   ============================================================= */
.voices-section {
    background: var(--l-bg-alt);
    padding: 90px 0;
    border-top: 1px solid var(--l-border);
    text-align: center;
}
.testimonial-card {
    background: var(--l-card);
    border: 1px solid var(--l-border);
    border-radius: var(--radius-md);
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.testimonial-quote-mark {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: rgba(232,160,0,.5);
    line-height: 1;
    margin-bottom: .65rem;
}
.testimonial-text {
    font-family: var(--ff);
    font-size: .93rem;
    line-height: 1.8;
    color: var(--l-muted);
    font-style: italic;
    margin-bottom: 1.1rem;
}
.testimonial-author { display: flex; align-items: center; gap: .7rem; }
.testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold-a12);
    border: 1px solid rgba(232,160,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--ff);
    font-size: .62rem;
    font-weight: 800;
    color: var(--gold);
}
.testimonial-name { font-family: var(--ff); font-size: .86rem; font-weight: 700; color: var(--l-text); }
.testimonial-role { font-family: var(--ff); font-size: .73rem; color: var(--l-muted); }

.winner-highlight-card {
    background: rgba(232,160,0,.04);
    border: 1px solid rgba(232,160,0,.35);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.winner-highlight-label {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .65rem;
    font-family: var(--ff);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.winner-highlight-name {
    font-family: var(--ff);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--l-text);
    margin-bottom: .35rem;
}
.winner-highlight-desc {
    font-family: var(--ff);
    font-size: .93rem;
    line-height: 1.8;
    color: var(--l-muted);
    margin: 0;
}

/* =============================================================
   CTA BANNER
   ============================================================= */
.cta-section {
    background: var(--gold);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #C78B00;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(26,20,0,.3);
    border-radius: 999px;
    padding: 5px 14px 5px 10px;
    margin-bottom: 1.1rem;
    background: rgba(26,20,0,.08);
    font-family: var(--ff);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--l-text);
}
.cta-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--l-text);
    flex-shrink: 0;
    display: inline-block;
}
.cta-h2 {
    font-family: var(--ff);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.1;
    color: var(--l-text);
    margin-bottom: .9rem;
}
.cta-sub {
    font-family: var(--ff);
    font-size: .93rem;
    line-height: 1.8;
    color: rgba(26,20,0,.72);
    margin-bottom: 2rem;
}
.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.6rem;
}
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--l-text);
    color: #fff;
    font-family: var(--ff);
    font-weight: 700;
    font-size: .83rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition);
}
.cta-btn-primary:hover { background: #2d2500; }
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--l-text);
    font-family: var(--ff);
    font-weight: 700;
    font-size: .83rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1.5px solid rgba(26,20,0,.4);
    transition: border-color var(--transition);
}
.cta-btn-outline:hover { border-color: rgba(26,20,0,.85); }
.cta-help {
    font-family: var(--ff);
    font-size: .78rem;
    color: rgba(26,20,0,.55);
    margin: 0;
}
.cta-help a { color: var(--l-text); font-weight: 700; text-decoration: none; }

/* =============================================================
   SECTION CENTERING UTILITIES
   ============================================================= */
.opi-section    .badge-pill,
.opi-section    .section-h2,
.opi-section    .section-sub,
.steps-section  .badge-pill,
.steps-section  .section-h2,
.steps-section  .section-sub,
.winners-section .badge-pill,
.winners-section .section-h2,
.winners-section .section-sub,
.voices-section  .badge-pill,
.voices-section  .section-h2 { display: block; text-align: center; }

.opi-section    .section-sub,
.steps-section  .section-sub { margin-left: auto; margin-right: auto; }

.winners-section .section-sub { margin-left: auto; margin-right: auto; max-width: 400px; }

.winners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.winners-header > div           { text-align: center; }
.winners-header > div .section-sub { margin: 0 auto; }

/* =============================================================
   RESPONSIVE — MOBILE  ≤ 767px
   ============================================================= */
@media (max-width: 767px) {
    .opi-section, .steps-section, .winners-section, .voices-section { padding: 56px 0; }
    .cta-section { padding: 56px 0; }

    .opi-section .section-h2,
    .steps-section .section-h2,
    .winners-section .section-h2,
    .voices-section .section-h2,
    .cta-h2 { font-size: clamp(1.55rem, 6.5vw, 2.2rem); }

    .hero-inner { padding: 88px 15px 56px; }
    .hero-h1    { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-sub   { font-size: .88rem; }
    .hero-grid  { gap: 8px; }
    .hero-card, .flip-card { height: 128px; }
    .hero-card-num   { font-size: 1.75rem; }
    .hero-card-label { font-size: .65rem; }

    .opi-card-img-wrap { height: 175px; }

    .steps-timeline    { display: none !important; }
    .step-panel        { flex-direction: column; }
    .step-sidebar      { display: none !important; }
    .step-content-pane { padding: 20px 16px; }
    .step-content-title{ font-size: 1rem; }

    .winners-header { flex-direction: column; align-items: center; text-align: center; }
    .winner-card .winner-img-wrap { height: 155px; }

    .testimonial-card { padding: 18px; }

    .cta-btns { flex-direction: column; align-items: stretch; }
    .cta-btn-primary, .cta-btn-outline { width: 100%; justify-content: center; }

    .also-box { padding: 18px 16px; }
}

/* =============================================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ============================================================= */
@media (max-width: 480px) {
    .hero-card, .flip-card { height: 112px; padding: 12px 11px; }
    .hero-card-num  { font-size: 1.45rem; }
    .flip-back-title { font-size: .48rem; }
    .flip-back-list li { font-size: .62rem; gap: 5px; }
    .opi-card-img-wrap { height: 158px; }
    .step-content-pane { padding: 16px 12px; }
    .winner-card .winner-img-wrap { height: 145px; }
    .preview-title { font-size: 1.15rem; }
    .cta-h2 { font-size: clamp(1.35rem, 7vw, 1.85rem); }
}

/* =============================================================
   RESPONSIVE — TABLET  768px – 991px
   ============================================================= */
@media (min-width: 768px) and (max-width: 991px) {
    .opi-section, .steps-section, .winners-section, .voices-section { padding: 72px 0; }
    .step-sidebar   { width: 185px; }
    .sidebar-label  { font-size: .78rem; }
    .hero-card, .flip-card { height: 136px; }
    .winners-section .col-md-4 { flex: 0 0 50%; max-width: 50%; }
}
