@import url('https://fonts.googleapis.com/css2?family=Gamja+Flower&display=swap');

  :root {
    --blue: #1B4FE4;
    --blue-dark: #1239C0;
    --yellow: #FFD600;
    --yellow-dark: #E8C200;
    --orange: #FF6B00;
    --red: #E82525;
    --dark: #0D1B3E;
    --white: #FFFFFF;
    --off-white: #FFFDF5;
    --gray: #F4F3EE;
    --text: #0D1B3E;
    --text-muted: #5A6282;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family:  'Noto Sans Kr', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
  }

  h1, h2, h3, .brand {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 68px;
    border-bottom: 3px solid var(--yellow);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family:   'Fredoka One', cursive;
    font-size: 18px;
    color: var(--dark);
  }

  .nav-logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
  }

  .nav-logo-text span {
    color: var(--yellow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--yellow); }

  .nav-cta {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: var(--blue);
    display: flex;
    align-items: center;
    padding: 100px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.12;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 20%;
    width: 300px;
    height: 300px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.15;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,214,0,0.15);
    border: 1.5px solid var(--yellow);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }

  .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }

  .hero h1 .highlight {
    color: var(--yellow);
    position: relative;
    display: inline-block;
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
    font-weight: 600;
  }

  .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,214,0,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  /* HERO ILLUSTRATION */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .hero-img-wrapper {
    width: 400px;
    height: 400px;
    background: var(--yellow);
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: morphBlob 8s ease-in-out infinite alternate;
  }

  @keyframes morphBlob {
    0%   { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
    33%  { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
    66%  { border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%; }
    100% { border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%; }
  }

  .hero-img-wrapper img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
  }

  .hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    white-space: nowrap;
  }

  .hero-float-1 {
    top: 20px;
    right: -30px;
    animation: float1 4s ease-in-out infinite;
  }

  .hero-float-2 {
    bottom: 40px;
    left: -40px;
    animation: float2 5s ease-in-out infinite;
  }

  .hero-float-3 {
    top: 50%;
    right: -50px;
    animation: float1 6s ease-in-out infinite reverse;
  }

  @keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  .hero-float-badge .badge-icon {
    font-size: 18px;
    margin-right: 6px;
  }

  /* WAVE */
  .wave-divider {
    background: var(--blue);
    line-height: 0;
  }

  .wave-divider svg {
    display: block;
  }

  /* ===== SECTION COMMON ===== */
  .section {
    padding: 100px 60px;
    max-width: 100%;
    overflow: hidden;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 44px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
        font-family: 'Gamja Flower' , 'Fredoka One', cursive;

  }

  .section-sub {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.7;
    max-width: 560px;
  }

  /* ===== REVEAL ANIMATIONS ===== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ===== WHY SECTION ===== */
  .why-section {
    background: var(--off-white);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
  }

  .why-bad {
    background: #FFF0F0;
    border: 2px solid #FFCECE;
    border-radius: 24px;
    padding: 40px;
  }

  .why-bad-title {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 26px;
    color: var(--red);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .why-good {
    background: #F0F4FF;
    border: 2px solid #C4D4FF;
    border-radius: 24px;
    padding: 40px;
  }

  .why-good-title {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 26px;
    color: var(--blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }

  .why-item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    margin-top: 2px;
  }

  .icon-bad { background: var(--red); color: white; }
  .icon-good { background: var(--blue); color: white; }

  /* ===== SOLUTION SECTION ===== */
  .solution-section {
    background: var(--dark);
  }

  .solution-section .section-title { color: var(--white); }
  .solution-section .section-sub { color: rgba(255,255,255,0.6); }
  .solution-section .section-label { background: var(--orange); }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  .solution-card {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 28px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    cursor: default;
  }

  .solution-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    background: rgba(255,214,0,0.04);
  }

  .solution-num {
    font-family: 'Fredoka One', cursive;
    font-size: 48px;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 16px;
  }

  .solution-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sol-1 { background: rgba(255,107,0,0.2); }
  .sol-2 { background: rgba(255,214,0,0.2); }
  .sol-3 { background: rgba(27,79,228,0.3); }
  .sol-4 { background: rgba(232,37,37,0.2); }

  .solution-title {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
  }

  .solution-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 600;
  }

  /* ===== PROGRAM SECTION ===== */
  .program-section { background: var(--off-white); }

  .program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .program-card {
    border-radius: 28px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .program-card:hover { transform: translateY(-6px); }

  .prog-1 { background: var(--yellow); }
  .prog-2 { background: var(--blue); color: white; }
  .prog-3 { background: var(--orange); color: white; }

  .program-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .prog-1 .program-tag { background: rgba(13,27,62,0.12); color: var(--dark); }
  .prog-2 .program-tag { background: rgba(255,255,255,0.15); color: white; }
  .prog-3 .program-tag { background: rgba(13,27,62,0.12); color: var(--dark); }

  .program-level {
    font-family: 'Fredoka One', cursive;
    font-size: 40px;
    margin-bottom: 4px;
  }

  .prog-1 .program-level { color: var(--dark); }
  .prog-2 .program-level { color: white; }
  .prog-3 .program-level { color: var(--dark); }

  .program-age {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0.75;
  }

  .program-divider {
    height: 2px;
    background: rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border-radius: 2px;
  }

  .prog-2 .program-divider { background: rgba(255,255,255,0.15); }

  .program-desc {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    opacity: 0.8;
  }

  .program-cta {
    margin-top: 28px;
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }

  .prog-1 .program-cta { background: var(--dark); color: var(--yellow); }
  .prog-2 .program-cta { background: var(--yellow); color: var(--dark); }
  .prog-3 .program-cta { background: var(--dark); color: white; }

  .program-deco {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.1;
  }

  .prog-1 .program-deco { background: var(--dark); }
  .prog-2 .program-deco { background: white; }
  .prog-3 .program-deco { background: var(--dark); }

  /* ===== TRUST SECTION ===== */
  .trust-section { background: var(--blue); }
  .trust-section .section-title { color: white; }
  .trust-section .section-sub { color: rgba(255,255,255,0.7); }
  .trust-section .section-label { background: var(--yellow); }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  .trust-card {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 36px 28px;
    transition: background 0.3s, transform 0.3s;
  }

  .trust-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
  }

  .trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
  }

  .ti-1 { background: var(--yellow); }
  .ti-2 { background: var(--orange); }
  .ti-3 { background: var(--red); }
  .ti-4 { background: #3DCA8A; }

  .trust-title {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
  }

  .trust-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    line-height: 1.6;
  }

  /* ===== EXPERIENCE SECTION ===== */
  .exp-section { background: var(--off-white); }

  .exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .exp-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 28px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
  }

  .exp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .exp-card:hover::before { opacity: 1; }
  .exp-card:hover { transform: translateY(-6px); }

  .exp-num {
    font-family: 'Fredoka One', cursive;
    font-size: 80px;
    line-height: 1;
    margin-bottom: 8px;
    -webkit-text-stroke: 2px var(--blue);
    color: transparent;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 24px;
  }

  .exp-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
  }

  .ei-1 { background: #FFF3C0; }
  .ei-2 { background: #FFE4CF; }
  .ei-3 { background: #D9E6FF; }

  .exp-title {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .exp-desc {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.7;
  }

  /* ===== REVIEWS SECTION ===== */
  .reviews-section {
    background: var(--gray);
    padding: 100px 60px;
  }

  .reviews-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .reviews-header .section-label {
    margin: 0 auto 16px;
    display: block;
    width: fit-content;
  }

  .stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 12px 0;
  }

  .star {
    width: 22px;
    height: 22px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .review-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    transition: transform 0.3s;
  }

  .review-card:hover { transform: translateY(-4px); }

  .review-quote-icon {
    font-family: 'Fredoka One', cursive;
    font-size: 60px;
    line-height: 1;
    color: var(--blue);
    opacity: 0.15;
    position: absolute;
    top: 16px;
    left: 24px;
  }

  .review-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
  }

  .review-star {
    width: 14px;
    height: 14px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }

  .review-author {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
  }

  .review-author span {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    line-height: 32px;
    margin-right: 10px;
    vertical-align: middle;
  }

  /* ===== CTA SECTION ===== */
  .cta-section {
    background: var(--dark);
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0.25;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.2;
  }

  .cta-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .cta-section .section-label {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
    background: var(--orange);
  }

  .cta-title {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 56px;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .cta-title span { color: var(--yellow); }

  .cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    margin-bottom: 44px;
    line-height: 1.7;
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .btn-primary-lg {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 20px 48px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 19px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }

  .btn-primary-lg:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,214,0,0.3);
  }

  .btn-outline-lg {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 18px 44px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 19px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }

  .btn-outline-lg:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark);
    border-top: 2px solid rgba(255,255,255,0.06);
    padding: 60px 60px 40px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-col-title {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 16px;
    color: var(--yellow);
    margin-bottom: 16px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
  }

  /* ===== SCROLL INDICATOR ===== */
  .scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
  }

  .scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
  }

  .scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
  }

  @keyframes scrollDot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
  }

  /* ===== STAT STRIP ===== */
  .stat-strip {
    background: var(--yellow);
    padding: 28px 60px;
  }

  .stat-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .stat-item {
    text-align: center;
  }

  .stat-num {
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 44px;
    color: var(--dark);
    line-height: 1;
    font-weight: 900;
  }

  .stat-label {
    font-size: 14px;
    font-weight: 800;
    color: rgba(13,27,62,0.65);
    margin-top: 4px;
  }

  .stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(13,27,62,0.15);
  }

  /* ===== TICKER ===== */
  .ticker-wrap {
    background: var(--orange);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
  }

  .ticker-inner {
    display: inline-block;
    animation: ticker 20s linear infinite;
  }

  .ticker-text {
    display: inline-block;
    font-family: 'Gamja Flower' , 'Fredoka One', cursive;
    font-size: 18px;
    color: white;
    padding: 0 40px;
    font-weight: 700;
  }

  .ticker-sep {
    color: rgba(255,255,255,0.4);
    margin: 0 10px;
  }

  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }