    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: #F5F7F2; color: #1A2B1A; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── COLOR PALETTE from PGEPS logo ─────────────────────────
       Logo: deep navy ring, forest green text/foliage,
             gold stars, sky-blue globe, white dove
    ─────────────────────────────────────────────────────────── */
    :root {
      --green-dark:   #1E4D1E;
      --green:        #2B6B2B;
      --green-mid:    #3D8B3D;
      --green-light:  #5AA850;
      --green-pale:   #EBF4E8;
      --green-muted:  #D0E8CC;
      --navy-dark:    #0F2338;
      --navy:         #1A3A5C;
      --navy-mid:     #2D5A8A;
      --navy-light:   #4A8FC0;
      --navy-pale:    #E6EFF7;
      --gold:         #C9A020;
      --gold-light:   #F0CC60;
      --gold-pale:    #FBF3DC;
      --cream:        #F5F7F2;
      --cream-dark:   #E4EAE0;
      --cream-deeper: #D4DDD0;
      --text-dark:    #1A2B1A;
      --text-mid:     #3D5C3D;
      --text-muted:   #6B8A6B;
      --text-light:   #8FAA8F;
      --boys-bg:      #E6EFF7;
      --boys-text:    #1A3A5C;
      --girls-bg:     #F7EFF6;
      --girls-text:   #5C1A4E;
      --success-bg:   #EBF4E8;
      --success-txt:  #1E4D1E;
      --success-bdr:  #A8D4A0;
      --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-xl: 24px;
      --shadow-sm: 0 1px 4px rgba(26,58,26,.08);
      --shadow-md: 0 4px 16px rgba(26,58,26,.10);
      --shadow-lg: 0 8px 32px rgba(26,58,26,.14);
    }

    /* ── TYPOGRAPHY ─────────────────────────────────────────── */
    .section-eyebrow {
      display: inline-block; font-size: 11px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
    }
    .section-title {
      font-family: 'DM Serif Display', serif; font-size: 30px;
      line-height: 1.25; color: var(--green-dark); margin-bottom: 10px;
    }
    .section-subtitle { font-size: 15px; color: var(--text-mid); line-height: 1.7; max-width: 560px; }

    /* ── SKIP LINK ───────────────────────────────────────────── */
    .skip-link {
      position: absolute; top: -100px; left: 16px;
      background: var(--green-dark); color: #fff;
      padding: 8px 14px; border-radius: var(--radius-sm);
      font-size: 13px; transition: top .2s; z-index: 9999;
    }
    .skip-link:focus { top: 12px; }

    /* ── ANNOUNCEMENT BAR ───────────────────────────────────── */
    .announcement-bar {
      background: var(--green-dark); color: rgba(255,255,255,.72);
      font-size: 12px; text-align: center; padding: 8px 16px; letter-spacing: .3px;
    }
    .announcement-bar strong { color: var(--gold-light); font-weight: 500; }

    /* ── HEADER ─────────────────────────────────────────────── */
    .site-header {
      position: sticky; top: 0; z-index: 200;
      background: rgba(245,247,242,.96); backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--cream-dark);
      padding: 0 40px; display: flex; align-items: center;
      justify-content: space-between; height: 68px; transition: box-shadow .3s;
    }
    .site-header.scrolled { box-shadow: var(--shadow-md); }

    .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .logo-img {
      width: 48px; height: 48px; object-fit: contain;
      border-radius: 50%; border: 1.5px solid var(--cream-dark);
      background: #fff; padding: 2px;
    }
    .logo-name { font-size: 15px; font-weight: 600; color: var(--green-dark); line-height: 1.2; }
    .logo-tagline { font-size: 10.5px; color: var(--text-muted); letter-spacing: .3px; }

    nav { display: flex; align-items: center; gap: 2px; }
    nav a {
      font-size: 13.5px; color: var(--text-mid); padding: 7px 13px;
      border-radius: var(--radius-sm); transition: background .15s, color .15s; white-space: nowrap;
    }
    nav a:hover { background: var(--green-pale); color: var(--green-dark); }
    nav a.active { color: var(--green-dark); font-weight: 600; }

    .header-cta {
      background: var(--green-dark); color: #fff; border: none;
      border-radius: var(--radius-md); padding: 9px 18px;
      font-size: 13px; font-weight: 500; cursor: pointer; white-space: nowrap;
      display: flex; align-items: center; gap: 6px; transition: background .2s, transform .15s;
    }
    .header-cta:hover { background: var(--green); transform: translateY(-1px); }
    .header-cta svg { width: 13px; height: 13px; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; border: none; background: none;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--green-dark); border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none; flex-direction: column;
      position: fixed; top: 68px; left: 0; right: 0;
      background: var(--cream); border-bottom: 1px solid var(--cream-dark);
      padding: 16px 24px 24px; z-index: 199; box-shadow: var(--shadow-lg);
      pointer-events: none; opacity: 0; transform: translateY(-8px);
      transition: transform .25s, opacity .25s;
    }
    .mobile-nav.open { display: flex; pointer-events: all; transform: translateY(0); opacity: 1; }
    .mobile-nav a { font-size: 15px; color: var(--text-mid); padding: 12px 0; border-bottom: 1px solid var(--cream-dark); }
    .mobile-nav a:last-child { border: none; }

    /* ── HERO ───────────────────────────────────────────────── */
    .hero {
      background: var(--green-dark); position: relative;
      overflow: hidden; padding: 80px 40px 0; text-align: center;
    }
    .hero::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    }
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 52px 52px;
    }
    .hero-glow {
      position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
      width: 750px; height: 520px;
      background: radial-gradient(ellipse at center, rgba(61,139,61,.28) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-corner { position: absolute; pointer-events: none; opacity: .06; }
    .hero-corner.tl { top: 20px; left: 30px; }
    .hero-corner.tr { top: 20px; right: 30px; transform: scaleX(-1); }

    .hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
      border-radius: 40px; padding: 5px 14px 5px 5px; margin-bottom: 28px;
    }
    .hero-badge-dot {
      width: 22px; height: 22px; border-radius: 50%; background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; color: var(--green-dark); font-weight: 700;
    }
    .hero-badge span { font-size: 11.5px; color: rgba(255,255,255,.7); letter-spacing: .3px; }

    .hero-headline {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 5vw, 54px); line-height: 1.15;
      color: #fff; margin-bottom: 20px;
    }
    .hero-headline em { font-style: italic; color: var(--gold-light); }

    .hero-desc {
      font-size: 16px; color: rgba(255,255,255,.6);
      line-height: 1.75; max-width: 480px; margin: 0 auto 36px;
    }
    .hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

    .btn-hero-primary {
      background: var(--gold); color: var(--green-dark); border: none;
      border-radius: var(--radius-md); padding: 13px 28px;
      font-size: 14.5px; font-weight: 600; cursor: pointer;
      display: flex; align-items: center; gap: 8px; transition: background .2s, transform .15s;
    }
    .btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-hero-secondary {
      background: transparent; color: rgba(255,255,255,.8);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: var(--radius-md); padding: 13px 28px;
      font-size: 14.5px; cursor: pointer;
      display: flex; align-items: center; gap: 8px; transition: border-color .2s, color .2s, transform .15s;
    }
    .btn-hero-secondary:hover { border-color: rgba(255,255,255,.55); color: #fff; transform: translateY(-2px); }

    .hero-divider { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.08); }
    .hero-stats { display: flex; justify-content: center; padding: 28px 0; }
    .hero-stat {
      flex: 1; max-width: 180px; display: flex; flex-direction: column;
      align-items: center; padding: 0 20px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .hero-stat:last-child { border-right: none; }
    .stat-val { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--gold-light); line-height: 1; }
    .stat-lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }

    /* ── NOTICE ─────────────────────────────────────────────── */
    .notice-section { background: var(--cream-dark); padding: 24px 40px; }
    .notice-card {
      background: var(--success-bg); border: 1px solid var(--success-bdr);
      border-radius: var(--radius-lg); padding: 18px 22px;
      display: flex; align-items: flex-start; gap: 14px;
      max-width: 1100px; margin: 0 auto;
    }
    .notice-icon {
      width: 34px; height: 34px; flex-shrink: 0; background: var(--green-dark);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
    }
    .notice-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .notice-body { flex: 1; }
    .notice-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--green-dark); margin-bottom: 4px; }
    .notice-text { font-size: 14px; color: var(--success-txt); line-height: 1.65; }
    .notice-text strong { font-weight: 600; }
    .notice-close { background: none; border: none; cursor: pointer; color: var(--green); font-size: 18px; line-height: 1; flex-shrink: 0; opacity: .55; transition: opacity .15s; }
    .notice-close:hover { opacity: 1; }

    /* ── SECTION WRAPPERS ───────────────────────────────────── */
    .section-wrap { max-width: 1100px; margin: 0 auto; padding: 70px 40px; }
    .section-wrap.narrow { max-width: 780px; }
    .section-header { margin-bottom: 40px; }
    .section-alt { background: var(--cream-dark); }

    /* ── CATEGORY CARDS ─────────────────────────────────────── */
    .cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .cat-card {
      background: #fff; border: 1px solid var(--cream-dark);
      border-radius: var(--radius-xl); padding: 22px 20px 20px;
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      text-decoration: none; color: inherit;
      transition: border-color .2s, box-shadow .2s, transform .2s;
    }
    .cat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
    .cat-card.boys::before  { background: linear-gradient(90deg, var(--navy), var(--navy-light)); }
    .cat-card.girls::before { background: linear-gradient(90deg, #7B2D6E, #C87DB8); }
    .cat-card:hover { border-color: var(--cream-deeper); box-shadow: var(--shadow-md); transform: translateY(-3px); }

    .cat-thumb {
      width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
      overflow: hidden; position: relative; margin-bottom: 16px;
    }
    .cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .cat-card:hover .cat-thumb img { transform: scale(1.04); }
    .cat-thumb-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    }
    .cat-thumb-placeholder .icon-big { font-size: 40px; }
    .cat-thumb-placeholder span { font-size: 11px; color: var(--text-light); letter-spacing: .5px; }
    .cat-thumb.boys-thumb  { background: var(--boys-bg); }
    .cat-thumb.girls-thumb { background: var(--girls-bg); }
    .view-pill {
      position: absolute; bottom: 10px; right: 10px;
      background: rgba(26,58,26,.78); color: #fff;
      font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px;
      backdrop-filter: blur(6px);
    }
    .cat-meta-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .cat-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
    .cat-badge.boys  { background: var(--boys-bg);  color: var(--boys-text); }
    .cat-badge.girls { background: var(--girls-bg); color: var(--girls-text); }
    .cat-count { font-size: 12px; color: var(--text-light); }
    .cat-title { font-size: 16px; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
    .cat-desc  { font-size: 13px; color: var(--text-light); line-height: 1.5; }
    .cat-arrow {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--green-mid); font-weight: 500;
      margin-top: 14px; transition: gap .2s;
    }
    .cat-card:hover .cat-arrow { gap: 10px; }

    /* ── HOW IT WORKS ───────────────────────────────────────── */
    .steps-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 0; position: relative;
    }
    .steps-grid::before {
      content: ''; position: absolute;
      top: 24px; left: 12.5%; right: 12.5%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--cream-dark), var(--cream-dark), transparent);
    }
    .step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%; background: var(--green-dark); color: #fff;
      font-family: 'DM Serif Display', serif; font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--cream);
    }
    .section-alt .step-num { box-shadow: 0 0 0 6px var(--cream-dark); }
    .step-title { font-size: 15px; font-weight: 600; color: var(--green-dark); margin-bottom: 8px; }
    .step-desc  { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

    /* ── SIZE GUIDE ─────────────────────────────────────────── */
    .size-cards {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 28px;
    }
    .size-card {
      background: #fff; border: 1px solid var(--cream-dark); border-radius: var(--radius-lg);
      padding: 20px 16px; text-align: center; transition: box-shadow .2s, transform .2s;
    }
    .size-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
    .size-card-tag { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--green-dark); }
    .size-card-range { font-size: 13px; color: var(--text-mid); margin: 4px 0 8px; }
    .size-card-grade {
      font-size: 11px; font-weight: 600; letter-spacing: .5px;
      color: var(--green); background: var(--green-pale); padding: 3px 10px; border-radius: 20px;
    }
    .size-intro {
      background: var(--green-dark); border-radius: var(--radius-xl);
      padding: 36px 36px 0; margin-bottom: 24px; overflow: hidden; position: relative;
    }
    .size-intro::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    }
    .size-intro-glow {
      position: absolute; top: -40px; right: -40px; width: 220px; height: 220px;
      background: radial-gradient(circle, rgba(90,168,80,.2) 0%, transparent 60%); pointer-events: none;
    }
    .size-intro h3 { font-family: 'DM Serif Display', serif; font-size: 24px; color: #fff; margin-bottom: 8px; }
    .size-intro p  { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 24px; }
    .size-table-wrap { overflow-x: auto; }
    .size-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .size-table th {
      background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
      font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
      padding: 10px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .size-table td { color: rgba(255,255,255,.75); padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.06); }
    .size-table td:first-child { font-weight: 600; color: #fff; }
    .size-table tr:last-child td { border: none; }
    .size-badge {
      display: inline-block; background: var(--gold); color: var(--green-dark);
      font-weight: 700; font-size: 12px; padding: 2px 10px; border-radius: 20px;
    }

    /* ── FEATURE HIGHLIGHT ──────────────────────────────────── */
    .feature-strip { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
    .feature-left  { flex: 1; min-width: 280px; }
    .feature-right { flex: 1; min-width: 280px; display: flex; gap: 14px; }
    .feature-col   { display: flex; flex-direction: column; gap: 14px; }
    .feature-col:nth-child(2) { margin-top: 28px; }
    .feature-img {
      background: var(--cream-dark); border-radius: var(--radius-xl);
      aspect-ratio: 3/4; overflow: hidden; position: relative;
    }
    .feature-img img { width: 100%; height: 100%; object-fit: cover; }
    .feature-img-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    }
    .feature-img-placeholder .ico { font-size: 30px; }
    .feature-img-placeholder span { font-size: 11px; color: var(--text-light); }
    .feature-img.boys-thumb  { background: var(--boys-bg); }
    .feature-img.girls-thumb { background: var(--girls-bg); }
    .feature-tag {
      position: absolute; bottom: 10px; left: 10px; background: var(--green-dark); color: #fff;
      font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px;
    }
    .feature-stat-row { display: flex; gap: 14px; margin-top: 28px; }
    .feature-stat { flex: 1; background: var(--green-pale); border-radius: var(--radius-lg); padding: 16px; }
    .feature-stat-num { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--green-dark); }
    .feature-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ── FAQ ────────────────────────────────────────────────── */
    .faq-item { border-bottom: 1px solid var(--cream-dark); }
    .faq-item:first-child { border-top: 1px solid var(--cream-dark); }
    .faq-trigger {
      width: 100%; background: none; border: none; text-align: left;
      cursor: pointer; padding: 20px 0;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
    }
    .faq-q { font-size: 15px; font-weight: 500; color: var(--green-dark); line-height: 1.4; }
    .faq-chevron {
      width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
      background: var(--green-pale);
      display: flex; align-items: center; justify-content: center; transition: background .2s;
    }
    .faq-chevron svg {
      width: 14px; height: 14px; stroke: var(--green-dark); fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s;
    }
    .faq-item.open .faq-chevron { background: var(--green-dark); }
    .faq-item.open .faq-chevron svg { stroke: #fff; transform: rotate(180deg); }
    .faq-answer { display: none; font-size: 14px; color: var(--text-mid); line-height: 1.75; padding-bottom: 20px; padding-right: 40px; }
    .faq-item.open .faq-answer { display: block; }

    /* ── CONTACT / VENDOR ───────────────────────────────────── */
    .vendor-strip { background: var(--green-dark); }
    .vendor-inner {
      max-width: 1100px; margin: 0 auto; padding: 60px 40px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
    }
    .vendor-left { flex: 1; min-width: 260px; }
    .vendor-left h2 { font-family: 'DM Serif Display', serif; font-size: 26px; color: #fff; margin-bottom: 10px; }
    .vendor-left p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
    .vendor-cards { display: flex; gap: 14px; flex-wrap: wrap; }
    .vendor-card {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg); padding: 20px 22px; min-width: 160px;
    }
    .vendor-card-icon { font-size: 20px; margin-bottom: 10px; }
    .vendor-card-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
    .vendor-card-detail { font-size: 13px; color: rgba(255,255,255,.45); }
    .btn-contact {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--green-dark); border: none;
      border-radius: var(--radius-md); padding: 11px 22px; font-size: 14px; font-weight: 600;
      cursor: pointer; margin-top: 20px; transition: background .2s;
    }
    .btn-contact:hover { background: var(--gold-light); }

    /* ── FOOTER ─────────────────────────────────────────────── */
    .site-footer { background: #0F2010; color: rgba(255,255,255,.45); }
    .site-footer::before {
      content: ''; display: block; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .footer-inner { max-width: 1100px; margin: 0 auto; padding: 50px 40px 30px; }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .footer-logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.08); padding: 2px; }
    .footer-logo-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); }
    .footer-brand-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.38); max-width: 220px; }
    .footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
    .footer-col ul li a:hover { color: rgba(255,255,255,.9); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 12.5px; color: rgba(255,255,255,.28); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 12.5px; color: rgba(255,255,255,.32); transition: color .15s; }
    .footer-links a:hover { color: rgba(255,255,255,.7); }

    /* ── ANIMATIONS ─────────────────────────────────────────── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
    .fade-up { opacity: 0; animation: fadeUp .6s ease forwards; }
    .fade-up.d1 { animation-delay: .1s; } .fade-up.d2 { animation-delay: .2s; }
    .fade-up.d3 { animation-delay: .3s; } .fade-up.d4 { animation-delay: .4s; }
    .fade-up.d5 { animation-delay: .5s; }
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .site-header { padding: 0 20px; }
      nav { display: none; }
      .hamburger { display: flex; }
      .header-cta { display: none; }
      .hero { padding: 60px 20px 0; }
      .notice-section { padding: 16px 20px; }
      .section-wrap { padding: 50px 20px; }
      .cat-grid { grid-template-columns: repeat(2,1fr); }
      .steps-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
      .steps-grid::before { display: none; }
      .size-cards { grid-template-columns: repeat(3,1fr); }
      .feature-strip { flex-direction: column; gap: 32px; }
      .vendor-inner { flex-direction: column; gap: 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    }
    @media (max-width: 560px) {
      .hero-headline { font-size: 30px; }
      .hero-stats { flex-wrap: wrap; }
      .hero-stat { flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
      .cat-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .size-cards { grid-template-columns: repeat(2,1fr); }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }