/* nav section */
 :root {
    --red: #a30d17;
    --red-dark: #7d0a11;
    --text-dark: #222;
    --text-gray: #4a4a4a;
    --border-black: #1a1a1a;
    --nav-height: 78px;
    --panel: #1c1c1c;
     --bg-dark: #141414;
    --border-col: #2a2a2a;
   
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
  }
  
  html {
  scroll-behavior: smooth;
}

#home,
#about,
#locations,
#contact {
  scroll-margin-top: 90px;
}
 
  /* ---------- NAVBAR ---------- */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #ffffff;
    border-bottom: 4px solid var(--border-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
 
  /* ---------- LOGO ---------- */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
 
  .logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
  }
 
  .logo-fallback {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
 
  .logo-fallback .logo-text {
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.5px;
  }
 
  .logo-fallback .logo-text span.gk { color: #1a1a1a; }
  .logo-fallback .logo-text span.fit { color: var(--red); }
  .logo-fallback .logo-text span.flex { color: #1a1a1a; }
 
  .logo-fallback .tagline {
    font-size: 9px;
    letter-spacing: 2px;
    color: #555;
    margin-top: 2px;
    font-weight: 600;
  }
 
  /* ---------- NAV LINKS ---------- */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
  }
 
  .nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.25s ease;
  }
 
  .nav-links a:hover { color: var(--red); }
 
  .nav-links a.active {
    color: var(--red);
  }
 
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
  }
 
  /* ---------- JOIN NOW BUTTON ---------- */
  .join-btn {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(163,13,23,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
  }
 
  .join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(163,13,23,0.45);
  }
 
  /* ---------- HAMBURGER (mobile) ---------- */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }
 
  .hamburger span {
    width: 26px;
    height: 3px;
    background: var(--border-black);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
 
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
 
  /* ---------- PAGE CONTENT (demo/filler) ---------- */
  .content {
    margin-top: var(--nav-height);
    padding: 60px 40px;
    max-width: 900px;
  }
 
  .content h1 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
 
  .content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 14px;
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .navbar { padding: 0 24px; }
    .nav-links { gap: 28px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE
  ========================================================= */
  @media (max-width: 768px) {
    .navbar { padding: 0 20px; }
 
    .hamburger { display: flex; }
 
    .nav-links {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      width: 100%;
      height: calc(100vh - var(--nav-height));
      background: #ffffff;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 0;
      padding-top: 30px;
      transform: translateX(-100%);
      transition: transform 0.35s ease;
      overflow-y: auto;
    }
 
    .nav-links.show {
      transform: translateX(0);
    }
 
    .nav-links li {
      width: 100%;
      text-align: center;
    }
 
    .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 16px;
      width: 100%;
      border-bottom: 1px solid #eee;
    }
 
    .nav-links a.active::after { display: none; }
 
    .join-btn-wrap {
      width: 100%;
      padding: 24px 40px;
    }
 
    .join-btn {
      width: 100%;
      padding: 14px 0;
    }
 
    .logo img { height: 38px; }
    .logo-fallback .logo-text { font-size: 20px; }
  }
 
  @media (max-width: 400px) {
    .logo-fallback .tagline { display: none; }
  }

  
  /* ================= HERO SECTION ================= */
  .hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
  }
 
  /* Background image — replace url() below with your image path */
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/bannerfir.webp');
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
  }
 
  /* Dark gradient overlay so text stays readable */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.75) 35%,
      rgba(0,0,0,0.35) 60%,
      rgba(0,0,0,0.15) 100%
    );
    z-index: 2;
  }
 
  /* Big faint "LEVEL UP" background text */
  .hero-watermark {
    position: absolute;
    top: 8%;
    right: 6%;
    font-size: 90px;
    font-weight: 900;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
    letter-spacing: 4px;
    z-index: 3;
    pointer-events: none;
    user-select: none;
  }
 
  .hero-content {
    position: relative;
    z-index: 4;
    padding: 0 5%;
    max-width: 620px;
  }
 
  .hero-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 75px;
    color: #d9d9d9;
    font-style: italic;
    line-height: 1;
    margin-bottom: 6px;
  }
 
  .hero-title {
    font-size: 75px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 6px;
  }
 
  .hero-title .white { color: #f0f0f0; }
  .hero-title .red-line { color: var(--red); display: block; }
 
  .hero-desc {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
    margin: 22px 0 30px;
  }
 
  .hero-btn {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    padding: 15px 42px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(200,20,20,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
 
  .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(200,20,20,0.5);
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 1024px) {
    .hero-watermark { font-size: 70px; right: 4%; }
    .hero-title { font-size: 40px; }
    .hero-script { font-size: 36px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE
     (keeps the same banner image visible, just scales & re-centers)
  ========================================================= */
  @media (max-width: 768px) {
    .hero {
      min-height: 560px;
      align-items: flex-end;
    }
 
    .hero-bg {
      background-position: right center;
    }
 
    .hero-overlay {
      /* background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.75) 45%,
        rgba(0,0,0,0.95) 80%
      ); */
    }
 
    .hero-watermark {
      font-size: 42px;
      top: 6%;
      right: 8%;
      -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    }
 
    .hero-content {
      max-width: 100%;
      padding: 0 24px;
      padding-bottom: 40px;
      text-align: left;
    }
 
    .hero-script { font-size: 28px; }
 
    .hero-title { font-size: 30px; }
 
    .hero-desc {
      font-size: 13.5px;
      max-width: 100%;
      margin: 16px 0 24px;
    }
 
    .hero-btn {
      padding: 13px 34px;
      font-size: 14px;
      width: 100%;
      max-width: 220px;
    }
  }
 
  @media (max-width: 400px) {
    .hero-title { font-size: 26px; }
    .hero-script { font-size: 24px; }
    .hero-watermark { display: none; }
  }


  /* about section */
  
  /* ================= SECTION ================= */
  .about {
    padding: 80px 8%;
  }
 
  .about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
  }
 
  /* -------- LEFT: text -------- */
  .about-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
  }
 
  .about-text h2 .accent { color: var(--red); }
 
  .about-text h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.4px;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
 
  .about-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 34px;
  }
 
  .about-text p .highlight {
    color: var(--red);
    font-weight: 700;
  }
 
  .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 26px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(200,20,20,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
  }
 
  .about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(200,20,20,0.45);
    gap: 12px;
  }
 
  /* -------- RIGHT: framed image -------- */
  .about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
 
  /* offset red frame behind the image — decorative accent */
  .about-image-wrap::before {
    content: "";
    position: absolute;
    top: -22px;
    right: -22px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--red);
    border-radius: 4px;
    z-index: 0;
  }
 
  .about-image {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    line-height: 0;
  }
 
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .about { padding: 60px 6%; }
    .about-inner { gap: 44px; }
    .about-image { height: 380px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE (image stacks below text)
  ========================================================= */
  @media (max-width: 768px) {
    .about { padding: 50px 6%; }
 
    .about-inner {
      grid-template-columns: 1fr;
      gap: 44px;
    }
 
    .about-image-wrap {
      order: -1;
      max-width: 320px;
    }
 
    .about-image { height: 340px; }
 
    .about-image-wrap::before {
      top: -16px;
      right: -16px;
    }
 
    .about-text h2 { font-size: 24px; }
    .about-text p { max-width: 100%; }
    .about-btn { width: 100%; justify-content: center; }
  }
 
  @media (max-width: 400px) {
    .about-text h2 { font-size: 21px; }
    .about-image-wrap { max-width: 100%; }
    .about-image { height: 300px; }
  }

  
  /* ================= SECTION ================= */
  .features {
    padding: 40px 40px;
    background: #ffffff;
  }
 
  .features-heading {
    text-align: center;
    margin-bottom: 50px;
  }
 
  .features-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
  }
 
  .features-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--red);
  }
 
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
 
  .feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #ececec;
  }
 
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  }
 
  .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdeaea;
    border-radius: 10px;
    color: var(--red);
    margin-bottom: 18px;
  }
 
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
 
  .feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
 
  .feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
  }
 
  .feature-underline {
    width: 32px;
    height: 3px;
    background: var(--red);
    margin-top: 20px;
    border-radius: 2px;
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .features { padding: 40px 6%; }
    .features-grid { gap: 20px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE (stacked cards)
  ========================================================= */
  @media (max-width: 768px) {
    .features { padding: 40px 6%; }
 
    .features-heading h2 { font-size: 24px; }
 
    .features-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
 
    .feature-card { padding: 26px 22px; }
  }
 
  @media (max-width: 400px) {
    .features-heading h2 { font-size: 21px; }
  }


  /* Program section */
   
  /* ================= SECTION ================= */
  .programs {
    padding: 40px 8%;
    background: var(--bg-light);
  }
 
  .programs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 42px;
    flex-wrap: wrap;
    gap: 16px;
  }
 
  .programs-header-left h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
 
  .programs-header-left p {
    font-size: 14px;
    color: var(--text-gray);
  }
 
  .view-all {
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
  }
 
  .view-all:hover { gap: 10px; }
 
  /* ================= GRID ================= */
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
 
  /* Card wrapper — clips the image, holds everything together */
  .program-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
    background: #111;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
 
  .program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  }
 
  /* Full-bleed image — fills the ENTIRE card, edge to edge */
  .program-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
    z-index: 1; 
    transform: scale(1.15);
  }
 
  /* Trending zoom-in effect on hover */
  .program-card:hover img {
    transform: scale(1.08);
  }
 
  /* Dark gradient so text always stays readable over any photo */
  .program-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.92) 100%);
    z-index: 2;
    transition: background 0.35s ease;
  }
 
  .program-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.95) 100%);
  }
 
  .program-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(224,82,31,0.4);
    transition: transform 0.3s ease;
  }
 
  .program-card:hover .program-badge {
    transform: translateY(-3px);
  }
 
  .program-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 24px 22px;
  }
 
  .program-body h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
  }
 
  .program-body p {
    color: #dcdcdc;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
    max-height: 40px;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
 
  .program-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 0;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
 
  .program-btn:hover {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 6px 18px rgba(200,20,20,0.5);
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .programs { padding: 60px 6%; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .program-card { height: 400px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE (stacked cards)
  ========================================================= */
  @media (max-width: 768px) {
    .programs { padding: 50px 6%; }
 
    .programs-header {
      flex-direction: column;
      align-items: flex-start;
    }
 
    .programs-header-left h2 { font-size: 26px; }
 
    .programs-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
 
    .program-card { height: 360px; }
 
    /* Disable heavy zoom-on-hover on touch devices to avoid jitter */
    .program-card:hover img { transform: scale(1.03); }
  }
 
  @media (max-width: 400px) {
    .programs-header-left h2 { font-size: 22px; }
    .program-card { height: 320px; }
  }

  /* performence section */

   /* ================= SECTION ================= */
  .performance {
    background: var(--bg-light);
    padding: 40px 8%;
  }
 
  .performance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
 
  /* -------- LEFT: text + steps -------- */
  .performance-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
  }
 
  .performance-text > p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 40px;
  }
 
  .steps {
    position: relative;
  }
 
  .step {
    position: relative;
    display: flex;
    gap: 18px;
    padding-bottom: 34px;
  }
 
  .step:last-child { padding-bottom: 0; }
 
  /* connecting vertical line between numbers */
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% - 30px);
    background: repeating-linear-gradient(
      to bottom,
      #d0aeae 0,
      #d0aeae 4px,
      transparent 4px,
      transparent 8px
    );
  }
 
  .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
 
  .step-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
 
  .step-content p {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.6;
  }
 
  /* -------- RIGHT: image -------- */
  .performance-image-wrap {
    position: relative;
    width: 100%;
  }
 
  /* decorative accent block behind the image for depth */
  .performance-image-wrap::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 70%;
    height: 70%;
    background: var(--red);
    opacity: 0.08;
    border-radius: 16px;
    z-index: 0;
  }
 
  .performance-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
    z-index: 1;
    /* no padding here — image sits flush against every edge */
    padding: 0;
    line-height: 0;
  }
 
  .performance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* slight scale hides any built-in white/black borders baked into the source photo */
    transform: scale(1.06);
  }
 
  /* floating stat badge overlapping the image — the extra "element" */
  .performance-stat {
    position: absolute;
    left: 24px;
    bottom: -24px;
    z-index: 2;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
  }
 
  .performance-stat .stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .performance-stat .stat-icon svg { width: 20px; height: 20px; }
 
  .performance-stat .stat-text .stat-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
  }
 
  .performance-stat .stat-text .stat-label {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 0.3px;
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .performance { padding: 60px 6%; }
    .performance-inner { gap: 40px; }
    .performance-image { height: 340px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE (image stacks below text)
  ========================================================= */
  @media (max-width: 768px) {
    .performance { padding: 50px 6%; }
 
    .performance-inner {
      grid-template-columns: 1fr;
      gap: 50px;
    }
 
    /* image on top, text below — feels natural on mobile scroll */
    .performance-image-wrap { order: -1; margin-bottom: 10px; }
    .performance-image { height: 260px; }
 
    .performance-stat {
      left: 16px;
      bottom: -20px;
      padding: 12px 16px;
      gap: 10px;
    }
    .performance-stat .stat-icon { width: 36px; height: 36px; }
    .performance-stat .stat-text .stat-number { font-size: 15px; }
    .performance-stat .stat-text .stat-label { font-size: 10px; }
 
    .performance-text h2 { font-size: 24px; }
    .performance-text > p { max-width: 100%; margin-bottom: 30px; }
  }
 
  @media (max-width: 400px) {
    .performance-text h2 { font-size: 21px; }
    .performance-image { height: 220px; }
    .performance-stat { position: static; margin-top: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
  }

  /* traning section */
   
  /* ================= SECTION WRAPPER ================= */
  .standards {
    padding: 40px 8%;
  }
 
  .standards-panel {
    position: relative;
    background: var(--panel);
    border-radius: 18px;
    overflow: hidden;
    padding: 56px 60px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  }
 
  /* faint giant watermark word in the background */
  .standards-watermark {
    position: absolute;
    top: 8%;
    right: -2%;
    font-size: 150px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    letter-spacing: 2px;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
 
  .standards-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
  }
 
  .standards-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }
 
  .standards-content h2 .accent { color: var(--red); }
 
  .standards-content > p {
    color: #9a9a9a;
    font-size: 14.5px;
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 40px;
  }
 
  /* ================= FEATURE COLUMNS ================= */
  .standards-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 44px;
  }
 
  .standards-feature {
    border-left: 3px solid var(--red);
    padding-left: 16px;
  }
 
  .standards-feature h3 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
 
  .standards-feature p {
    color: #9a9a9a;
    font-size: 12.5px;
    line-height: 1.6;
  }
 
  /* ================= CTA ================= */
  .standards-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(200,20,20,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
  }
 
  .standards-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(200,20,20,0.45);
    gap: 14px;
  }
 
  /* small trust row — extra element added below the CTA */
  .standards-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
 
  .standards-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9a9a9a;
    font-size: 12.5px;
  }
 
  .standards-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .standards { padding: 50px 6%; }
    .standards-panel { padding: 46px 40px; }
    .standards-watermark { font-size: 110px; }
    .standards-features { gap: 22px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE
  ========================================================= */
  @media (max-width: 768px) {
    .standards { padding: 40px 5%; }
 
    .standards-panel {
      padding: 40px 26px;
      border-radius: 14px;
    }
 
    .standards-watermark {
      font-size: 64px;
      top: 4%;
      right: -3%;
      opacity: 0.6;
    }
 
    .standards-content h2 { font-size: 24px; }
    .standards-content > p { font-size: 13.5px; margin-bottom: 30px; }
 
    .standards-features {
      grid-template-columns: 1fr;
      gap: 22px;
      margin-bottom: 34px;
    }
 
    .standards-cta {
      width: 100%;
      justify-content: center;
    }
 
    .standards-trust {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
  }
 
  @media (max-width: 400px) {
    .standards-content h2 { font-size: 21px; }
    .standards-panel { padding: 32px 20px; }
  }

  /* reform section card */
  
  /* ================= SECTION ================= */
  .experience {
    padding: 40px 8%;
  }
 
  .experience-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
  }
 
  .experience-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
  }
 
  .experience-heading h2 .accent { color: var(--red); }
 
  .experience-heading p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
  }
 
  /* Grid — built to hold more cards later, currently 1 */
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
 
  /* ================= CARD ================= */
  .experience-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
 
  .experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  }
 
  .experience-card-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    line-height: 0;
  }
 
  .experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
  }
 
  .experience-card:hover .experience-card-image img {
    transform: scale(1.06);
  }
 
  .experience-card-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
 
  .experience-tag {
    color: var(--red);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
 
  .experience-card-body h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
 
  .experience-card-body p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
  }
 
  .experience-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 24px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(200,20,20,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
  }
 
  .experience-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,20,20,0.4);
    gap: 12px;
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .experience { padding: 60px 6%; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE
  ========================================================= */
  @media (max-width: 768px) {
    .experience { padding: 50px 6%; }
 
    .experience-heading h2 { font-size: 24px; }
    .experience-heading p { font-size: 13px; }
 
    .experience-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }
 
    .experience-card-image { height: 180px; }
  }
 
  @media (max-width: 400px) {
    .experience-heading h2 { font-size: 21px; }
  }


  /* CTA section */

  /* ================= SECTION ================= */
  .cta-banner-wrap {
    padding: 60px 8%;
  }
 
  .cta-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
  }
 
  /* replace src below with your image path */
  .cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
  }
 
  .cta-banner-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.65) 100%); */
    z-index: 1;
  }
 
  .cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 40px 24px;
  }
 
  .cta-banner-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
 
  .cta-banner-content p {
    font-size: 15px;
     color: #fff;
    line-height: 1.7;
    margin-bottom: 34px;
  }
 
  .cta-banner-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
 
  .cta-btn {
    padding: 15px 34px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
  }
 
  .cta-btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 22px rgba(227,13,13,0.45);
  }
 
  .cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(227,13,13,0.55);
  }
 
  .cta-btn-secondary {
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 8px 22px rgba(0,0,0,0.2);
  }
 
  .cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.28);
  }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .cta-banner-wrap { padding: 50px 6%; }
    .cta-banner { min-height: 380px; }
    .cta-banner-content h2 { font-size: 32px; }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE
  ========================================================= */
  @media (max-width: 768px) {
    .cta-banner-wrap { padding: 40px 5%; }
 
    .cta-banner {
      min-height: 420px;
      border-radius: 16px;
    }
 
    .cta-banner-bg { object-position: 65% center; }
 
    .cta-banner-content h2 { font-size: 26px; }
    .cta-banner-content p { font-size: 13.5px; margin-bottom: 28px; }
 
    .cta-banner-buttons {
      flex-direction: column;
      width: 100%;
      gap: 14px;
    }
 
    .cta-btn {
      width: 100%;
      padding: 14px 0;
    }
  }
 
  @media (max-width: 400px) {
    .cta-banner-content h2 { font-size: 22px; }
    .cta-banner { min-height: 400px; }
  }  


  /* footer section */
  
  /* ================= FOOTER ================= */
  .footer {
    background: var(--bg-dark);
    padding: 56px 8% 0;
  }
 
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 44px;
  }
 
  /* -------- brand column -------- */
  .footer-brand .logo-text {
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
  }
 
  .footer-brand .logo-text span.fit { color: var(--red); }
 
  .footer-brand p {
    color: #fff;
    font-size: 13px;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 18px;
  }
 
  .footer-social {
    display: flex;
    gap: 12px;
  }
 
  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }
 
  .footer-social a:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-3px);
  }
 
  .footer-social svg { width: 16px; height: 16px; }
 
  /* -------- link columns -------- */
  .footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
 
  .footer-col ul { list-style: none; }
 
  .footer-col ul li { margin-bottom: 12px; }
 
  .footer-col ul li a {
     color: #fff;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
 
  .footer-col ul li a:hover {
    color: var(--red);
    padding-left: 4px;
  }
 
  /* -------- contact column -------- */
  .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 14px;
  }
 
  .footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
  }
 
  /* -------- bottom bar -------- */
  .footer-bottom {
    border-top: 1px solid var(--border-col);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
 
  .footer-bottom p {
    color: #7a7a7a;
    font-size: 12.5px;
  }
 
  .footer-bottom-links {
    display: flex;
    gap: 22px;
  }
 
  .footer-bottom-links a {
    color: #7a7a7a;
    font-size: 12.5px;
    text-decoration: none;
    transition: color 0.2s ease;
  }
 
  .footer-bottom-links a:hover { color: var(--red); }
 
  /* =========================================================
     RESPONSIVE — TABLET
  ========================================================= */
  @media (max-width: 992px) {
    .footer-top {
      grid-template-columns: repeat(2, 1fr);
      gap: 36px 28px;
    }
  }
 
  /* =========================================================
     RESPONSIVE — MOBILE
  ========================================================= */
  @media (max-width: 768px) {
    .footer { padding: 44px 6% 0; }
 
    .footer-top {
      grid-template-columns: 1fr;
      gap: 30px;
      padding-bottom: 34px;
    }
 
    .footer-brand p { max-width: 100%; }
 
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      padding: 20px 0 26px;
    }
 
    .footer-bottom-links { gap: 16px; }
  }

  
  /* ============================================================
     DEMO BUTTONS — just to show the trigger class working.
     In your real site, add class="open-popup-btn" to ANY button/link.
  ============================================================ */
  .demo-wrap {
    padding: 80px 8%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: #f2f2f2;
    min-height: 100vh;
  }
 
  .demo-btn {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 26px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }
 
  /* ============================================================
     POPUP OVERLAY
  ============================================================ */
  .popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
  }
 
  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }
 
  /* ============================================================
     POPUP CARD
  ============================================================ */
  .popup-card {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 440px;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s ease;
    overflow: hidden;
    /* fixed sizing so nothing forces an inner scrollbar on normal screens */
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
  }
 
  .popup-overlay.active .popup-card {
    transform: translateY(0) scale(1);
  }
 
  /* ---------------- HEADER BANNER ---------------- */
  .popup-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b0000 100%);
    padding: 30px 32px 46px;
    flex-shrink: 0;
    overflow: hidden;
  }
 
  .popup-banner::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: var(--red);
    opacity: 0.25;
    border-radius: 50%;
  }
 
  .popup-banner::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--red);
    opacity: 0.15;
    border-radius: 50%;
  }
 
  .popup-banner .popup-tag {
    position: relative;
    z-index: 1;
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
 
  .popup-banner h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 6px;
  }
 
  .popup-banner p {
    position: relative;
    z-index: 1;
    color: #cfcfcf;
    font-size: 12.5px;
    line-height: 1.5;
    max-width: 300px;
  }
 
  .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
  }
 
  .popup-close:hover {
    background: var(--red);
    transform: rotate(90deg);
  }
 
  .popup-close svg { width: 16px; height: 16px; }
 
  /* ---------------- BODY (scrolls only if truly needed) ---------------- */
  .popup-body {
    padding: 28px 32px 30px;
    margin-top: -22px;
    overflow-y: auto;
  }
 
  /* thin, unobtrusive scrollbar for the rare case content overflows */
  .popup-body::-webkit-scrollbar { width: 5px; }
  .popup-body::-webkit-scrollbar-thumb { background: #e2e2e2; border-radius: 10px; }
  .popup-body::-webkit-scrollbar-track { background: transparent; }
 
  /* ---------------- FORM ---------------- */
  .popup-form .form-group {
    margin-bottom: 15px;
    position: relative;
  }
 
  .popup-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
  }
 
  .input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
 
  .input-icon-wrap svg {
    position: absolute;
    left: 14px;
    width: 17px;
    height: 17px;
    color: #b8b8b8;
    pointer-events: none;
    transition: color 0.2s ease;
  }
 
  .popup-form input {
    width: 100%;
    padding: 13px 14px 13px 42px;
    border: 1.5px solid #e6e6e6;
    border-radius: 12px;
    font-size: 13.5px;
    color: var(--text-dark);
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
  }
 
  .popup-form input:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200,20,20,0.08);
  }
 
  .popup-form input:focus + svg,
  .input-icon-wrap:focus-within svg {
    color: var(--red);
  }
 
  .popup-form input::placeholder { color: #a8a8a8; }
 
  .popup-submit {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    padding: 15px 0;
    border-radius: 26px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(200,20,20,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
 
  .popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(200,20,20,0.45);
  }
 
  .popup-submit svg { width: 16px; height: 16px; }
 
  .popup-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 16px;
  }
 
  .popup-note svg { width: 13px; height: 13px; color: #bbb; }
 
  /* success state */
  .popup-success {
    display: none;
    text-align: center;
    padding: 10px 0 6px;
  }
 
  .popup-success.active { display: block; }
 
  .popup-success .success-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #e9f9ee;
    color: #1fa34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    animation: pop-in 0.4s ease;
  }
 
  @keyframes pop-in {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
 
  .popup-success .success-icon svg { width: 30px; height: 30px; }
 
  .popup-success h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
 
  .popup-success p {
    font-size: 13px;
    color: var(--text-gray);
  }
 
  /* ============================================================
     RESPONSIVE — MOBILE
  ============================================================ */
  @media (max-width: 480px) {
    .popup-overlay { padding: 0; align-items: flex-end; }
 
    .popup-card {
      max-width: 100%;
      max-height: 92vh;
      border-radius: 22px 22px 0 0;
      transform: translateY(100%);
      width: 90%;
      margin-bottom:50px;
    }
 
    .popup-overlay.active .popup-card {
      transform: translateY(0);
    }
 
    .popup-banner { padding: 26px 24px 42px; }
    .popup-banner h2 { font-size: 20px; }
 
    .popup-body { padding: 24px 24px 26px; }
 
    .popup-form input { padding: 12px 12px 12px 40px; font-size: 13px; }
  }