/* ============================================================
   GradeGain Tutors — Design System
   Brand: Navy #0d1b2a · Green #4baf21 · Lime #a3e635 · White
   Fonts: Bebas Neue (display) · DM Sans (body) · DM Mono (labels)
   ============================================================ */

   :root {
    --navy:       #0d1b2a;
    --navy-mid:   #162333;
    --navy-light: #1e3048;
    --green:      #4baf21;
    --green-dark: #389618;
    --green-glow: rgba(75, 175, 33, 0.25);
    --lime:       #a3e635;
    --white:      #ffffff;
    --off-white:  #f4f7f0;
    --muted:      #6b8a6b;
    --border:     rgba(75, 175, 33, 0.15);
    --card-bg:    #ffffff;
    --card-shadow: 0 20px 60px rgba(13, 27, 42, 0.08);
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  *, *::before, *::after { box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    margin: 0;
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
  }
  
  img { display: block; max-width: 100%; }
  
  .container {
    width: min(1140px, 100% - 2.5rem);
    margin: 0 auto;
  }
  
  /* =========================================================
     TYPOGRAPHY
     ========================================================= */
  h1, h2, h3 { line-height: 1.15; margin: 0; }
  
  h1 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
  h2 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
  h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; }
  
  em { font-style: normal; color: var(--green); }
  
  p { margin: 0; line-height: 1.7; color: #3a5a3a; }
  
  a { transition: color var(--transition); }
  
  .section-kicker {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(75, 175, 33, 0.08);
    border: 1px solid rgba(75, 175, 33, 0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 99px;
    margin-bottom: 0.85rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--navy);
    margin: 0.3rem 0 0.6rem;
  }
  
  .section-header p {
    font-size: 1rem;
    max-width: 36rem;
    margin-inline: auto;
  }
  
  .section { padding: 5rem 0; }
  
  /* =========================================================
     BUTTONS
     ========================================================= */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 99px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
  }
  
  .btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 6px 30px var(--green-glow);
  }
  .btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(75, 175, 33, 0.35);
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
  }
  .btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(75, 175, 33, 0.05);
  }
  
  .btn-badge {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.25);
    padding: 0.15rem 0.5rem;
    border-radius: 99px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  
  .btn-block {
    width: 100%;
    justify-content: center;
  }
  
  .btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
  }
  
  /* Scroll animations */
  [data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  [data-animate].visible {
    opacity: 1;
    transform: none;
  }
  
  /* =========================================================
     TOP BANNER
     ========================================================= */
  .top-banner {
    background: var(--navy);
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(75, 175, 33, 0.3);
  }
  
  .banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 0.6rem 0;
    position: relative;
  }
  
  .banner-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }
  
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
    50% { box-shadow: 0 0 0 6px transparent; }
  }
  
  .banner-inner strong { color: var(--lime); }
  .banner-inner em { color: rgba(255,255,255,0.6); font-style: normal; }
  
  .banner-cta {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .banner-cta:hover { color: var(--lime); }
  
  /* =========================================================
     HEADER / NAV
     ========================================================= */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
  }
  .site-header.scrolled {
    box-shadow: 0 4px 30px rgba(13,27,42,0.08);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1rem;
  }
  
  /* Logo */
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }
  
  .logo-gg {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.05em;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  
  .gg-g1 {
    color: rgba(255,255,255,0.6);
    position: absolute;
    left: 5px;
    font-size: 1rem;
  }
  
  .gg-g2 {
    color: var(--lime);
    position: absolute;
    right: 5px;
    font-size: 1rem;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }
  
  .logo-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--navy);
  }
  .logo-name em {
    font-style: normal;
    color: var(--green);
    font-weight: 700;
  }
  
  .logo-tagline {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .main-nav a {
    text-decoration: none;
    color: var(--navy);
    opacity: 0.75;
  }
  .main-nav a:hover { opacity: 1; color: var(--green); }
  
  .nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 0.45rem 1rem !important;
    border-radius: 99px;
    opacity: 1 !important;
    font-weight: 600;
  }
  .nav-cta:hover { background: var(--navy-light) !important; }
  
  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.25s;
  }
  .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 */
  .mobile-nav {
    display: none;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    border-top: 1px solid var(--border);
  }
  .mobile-nav.open {
    display: flex;
    max-height: 500px;
    padding: 0.8rem 0 1.2rem;
  }
  .mobile-nav a {
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
  }
  .mobile-nav a:hover { color: var(--green); }
  .mobile-nav-cta {
    margin: 0.5rem 1.25rem 0;
    background: var(--green) !important;
    color: var(--white) !important;
    border-radius: 99px;
    padding: 0.65rem 1.2rem !important;
    text-align: center;
    font-weight: 700 !important;
  }
  
  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    background: var(--navy);
    padding: 5rem 0 6rem;
    overflow: hidden;
  }
  
  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(75,175,33,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(75,175,33,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
  }
  .hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(75,175,33,0.18), transparent 70%);
    top: -120px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(163,230,53,0.1), transparent 70%);
    bottom: -80px; left: 10%;
    animation: orbFloat 11s ease-in-out infinite reverse;
  }
  
  @keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }
  
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1rem;
  }
  
  .label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
  }
  
  .hero-h1 {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 1.2rem;
  }
  
  .h1-accent {
    -webkit-text-stroke: 2px var(--green);
    color: transparent;
    display: inline-block;
  }
  
  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 36rem;
    margin-bottom: 2rem;
    line-height: 1.65;
  }
  
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
  }
  
  .hero-ctas .btn-ghost {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.2);
  }
  .hero-ctas .btn-ghost:hover {
    border-color: var(--green);
    color: var(--lime);
    background: rgba(75,175,33,0.08);
  }
  
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .hero-trust span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.3rem 0.65rem;
    border-radius: 99px;
  }
  
  /* Hero Card */
  .hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    position: relative;
  }
  
  .hero-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 99px;
    white-space: nowrap;
  }
  
  .hero-card h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }
  .hero-card > p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
  }
  
  .hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
  }
  .hero-card-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--navy);
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f4f0;
  }
  .hero-card-list li:last-child { border-bottom: none; }
  
  .list-check {
    color: var(--white);
    background: var(--green);
    width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  
  .hero-card-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 0.8rem;
  }
  
  /* Floating Badges */
  .floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }
  
  .fb {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: rgba(163, 230, 53, 0.35);
    border: 1px solid rgba(163, 230, 53, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 99px;
    animation: fbFloat 6s ease-in-out infinite;
  }
  
  .fb-1 { left: 3%; top: 20%; animation-delay: 0s; }
  .fb-2 { left: 5%; bottom: 25%; animation-delay: 1.5s; }
  .fb-3 { right: 48%; top: 5%; animation-delay: 0.8s; }
  .fb-4 { right: 46%; bottom: 8%; animation-delay: 2.2s; }
  
  @keyframes fbFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 1; }
  }
  
  /* =========================================================
     EXAMS STRIP
     ========================================================= */
  .exams-strip {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  
  .exams-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
  }
  
  .strip-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  .exam-pill {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--navy);
  }
  
  .strip-div {
    width: 1px;
    height: 18px;
    background: rgba(13,27,42,0.15);
  }
  
  /* =========================================================
     WHY CHOOSE
     ========================================================= */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .why-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.7rem 1.5rem;
    transition: all var(--transition);
  }
  .why-card:hover {
    border-color: var(--green);
    box-shadow: 0 12px 40px var(--green-glow);
    transform: translateY(-4px);
  }
  
  .why-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .why-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  
  .why-card p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  
  /* =========================================================
   ABOUT
   ========================================================= */
  .about-section {
    background: var(--off-white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    border: 3px solid var(--border);
  }

  .about-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--navy);
    margin: 0.4rem 0 1rem;
  }

  .about-content p { margin-bottom: 1rem; }

  .about-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.8rem;
  }

  .about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.92rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--navy);
  }
  .about-list li:last-child { border-bottom: none; }
  .about-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
  }

  .personalised-section {
    background: var(--white);
  }
  
  /* =========================================================
     HOW IT WORKS
     ========================================================= */
  .steps-section {
    background: var(--white);
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }
  
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.6% + 1rem);
    right: calc(16.6% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--lime));
    z-index: 0;
  }
  
  .step-card {
    padding: 0 2rem 0 0;
    position: relative;
    z-index: 1;
  }
  
  .step-card:last-child { padding-right: 0; }
  
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--green);
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px var(--green-glow);
  }
  
  .step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--navy);
  }
  
  .step-card p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .steps-cta {
    text-align: center;
    margin-top: 3rem;
  }
  
  /* =========================================================
   SUBJECTS & EXAMS
   ========================================================= */
  .subjects-section {
    background: var(--navy);
  }

  .subjects-section .section-header h2 { color: var(--white); }
  .subjects-section .section-header p { color: rgba(255,255,255,0.6); }

  .exam-blocks-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .exam-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(75,175,33,0.15);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    transition: all var(--transition);
  }
  .exam-block:hover {
    border-color: var(--green);
    background: rgba(75,175,33,0.1);
    transform: translateY(-3px);
  }

  .exam-block-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--lime);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
  }

  .exam-block-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
  }

  /* Road Map Tabs */
  .roadmap-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .roadmap-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 99px;
    border: 1px solid rgba(75,175,33,0.25);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
  }
  .roadmap-tab:hover {
    border-color: var(--green);
    color: var(--white);
    background: rgba(75,175,33,0.1);
  }
  .roadmap-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: 0 6px 20px var(--green-glow);
  }

  /* Road Map Panels */
  .roadmap-panel {
    display: none;
    animation: fadeIn 0.4s ease-out;
  }
  .roadmap-panel.active {
    display: block;
  }

  .roadmap-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(75,175,33,0.2);
  }

  .roadmap-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
  }

  /* Other Subjects Note */
  .other-subjects-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(75,175,33,0.08);
    border: 1px solid rgba(75,175,33,0.25);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    margin-top: 2.5rem;
    font-size: 1rem;
  }
  .other-subjects-note span { font-size: 1.5rem; }
  .other-subjects-note p { color: rgba(255,255,255,0.8); margin: 0; }
  .other-subjects-note strong { color: var(--white); }
  .other-subjects-note a { color: var(--lime); font-weight: 600; text-decoration: none; }
  .other-subjects-note a:hover { color: var(--green); }

  @media (max-width: 768px) {
    .exam-blocks-full { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .exam-blocks-full { grid-template-columns: 1fr; }
  }
  
  /* =========================================================
     TESTIMONIALS
     ========================================================= */
  .testimonials-section {
    background: var(--off-white);
  }
  
  .testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1rem;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  
  .t-card {
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: box-shadow var(--transition), border-color var(--transition);
  }
  
  .t-card:hover {
    border-color: var(--green);
    box-shadow: var(--card-shadow);
  }
  
  .t-stars {
    color: var(--green);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
  
  .t-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #3a4a3a;
    flex: 1;
  }
  
  .t-meta {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  .t-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(13,27,42,0.2);
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
  }
  .t-dot.active {
    background: var(--green);
    width: 20px;
    border-radius: 4px;
  }
  
  /* =========================================================
     PRICING
     ========================================================= */
  .pricing-section { background: var(--white); }
  
  .pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 0.4rem;
    width: fit-content;
    margin: 0 auto 2.5rem;
  }
  
  .p-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 99px;
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--transition);
  }
  .p-tab.active {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13,27,42,0.15);
  }
  
  .pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
  }
  
  .pricing-col {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
  }
  
  .pricing-col-featured {
    background: var(--navy);
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(13,27,42,0.15);
  }
  
  .pricing-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 99px;
    white-space: nowrap;
  }
  
  .pricing-col-header {
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(75,175,33,0.15);
  }
  
  .pricing-col-header h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }
  
  .pricing-col-featured .pricing-col-header h3 { color: var(--white); }
  
  .pricing-col-header p {
    font-size: 0.8rem;
    color: var(--muted);
  }
  .pricing-col-featured .pricing-col-header p { color: rgba(255,255,255,0.5); }
  
  .price-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px dashed rgba(75,175,33,0.15);
    font-size: 0.9rem;
    color: var(--navy);
  }
  .pricing-col-featured .price-list li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.08); }
  .price-list li:last-child { border-bottom: none; }
  
  .price-list li strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: var(--navy);
    line-height: 1;
  }
  .pricing-col-featured .price-list li strong { color: var(--lime); }
  
  .price-list li strong small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.6;
    margin-left: 0.15rem;
  }
  
  .pricing-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.5rem;
    margin: 2rem auto 0;
    font-size: 0.88rem;
    color: var(--muted);
  }
  
  .pricing-offer {
    color: var(--green) !important;
    font-weight: 700;
  }
  
  .section-cta {
    text-align: center;
    margin-top: 2rem;
  }

  /* Make all pricing options same color */
  .price-list li {
      color: var(--navy); /* All normal text navy */
  }

  .pricing-col-featured .price-list li {
      color: var(--white); /* Featured column text white remains */
  }

  /* Glowing tab for 1-to-1 */
  #tab-1to1 {
      position: relative;
      animation: glow 1.5s infinite alternate;
  }

  @keyframes glow {
      0% { box-shadow: 0 0 5px var(--green); }
      100% { box-shadow: 0 0 15px var(--green); }
  }
  .pricing-perks .pricing-offer:first-child,
  .pricing-perks .pricing-offer:nth-child(2) {
      font-size: 1rem;
      font-weight: 700;
  }
  
  /* =========================================================
     FINAL CTA
     ========================================================= */
  .final-cta-section {
    background: var(--navy);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .final-cta-orb {
    position: absolute;
    width: 600px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(75,175,33,0.15), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  
  .final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .final-cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 0.4rem;
  }
  
  .final-cta-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
  }
  
  /* =========================================================
     CONTACT
     ========================================================= */
  .contact-section {
    background: var(--white);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin: 0.4rem 0 0.8rem;
  }
  
  .contact-info > p {
    margin-bottom: 2rem;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-item-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  
  .contact-item strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
  }
  
  .contact-item a, .contact-item span {
    color: var(--navy);
    font-size: 0.92rem;
    text-decoration: none;
    line-height: 1.5;
  }
  .contact-item a:hover { color: var(--green); }
  
  .social-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.7rem;
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    border: 1px solid var(--border);
    background: var(--off-white);
    text-decoration: none;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all var(--transition);
  }
  .social-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(75,175,33,0.05);
  }
  
  .contact-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  /* Form */
  .contact-form-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    border: 1px solid rgba(75,175,33,0.2);
    box-shadow: 0 30px 80px rgba(13,27,42,0.12);
  }
  
  .contact-form-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  
  .form-sub {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.35rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color var(--transition), background var(--transition);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(75,175,33,0.08);
  }
  .form-group select option { background: var(--navy); color: var(--white); }
  
  .form-success {
    display: none;
    text-align: center;
    color: var(--lime);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(75,175,33,0.15);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(75,175,33,0.3);
  }
  
  /* =========================================================
     FOOTER
     ========================================================= */
  .site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(75,175,33,0.15);
    padding: 2.5rem 0 2rem;
  }
  
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .footer-logo {
    width: 70px; height: 70px;
    background: rgba(75,175,33,0.15);
    border: 1px solid rgba(75,175,33,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--lime);
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
  
  .footer-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
  }
  
  .footer-tagline {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
    margin-top: 0.1rem;
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
  }
  .footer-nav a:hover { color: var(--lime); }
  
  .footer-copy {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
  }
  .footer-copy p { color: rgba(255,255,255,0.3); }

  .field-error {
    display: block;
    color: #ff6b6b;
    font-size: 0.78rem;
    margin-top: 0.3rem;
  }

  .form-error-msg {
    display: none;
    text-align: center;
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 107, 107, 0.3);
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 380px; gap: 2rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
  
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { max-width: 420px; }
    .floating-badges { display: none; }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .steps-grid::before { display: none; }
    
    .subjects-grid { grid-template-columns: 1fr; }
    
    .pricing-layout { grid-template-columns: 1fr; max-width: 460px; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .final-cta-inner { flex-direction: column; text-align: center; }
  }
  
  @media (max-width: 640px) {
    .section { padding: 3.5rem 0; }
    .why-grid { grid-template-columns: 1fr; }
    .exam-blocks { grid-template-columns: 1fr; }
    .t-card { flex: 0 0 85%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-copy { text-align: left; }
    .pricing-toggle-wrap { flex-direction: column; width: auto; border-radius: var(--radius-md); }
    .banner-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
    .exams-strip-inner { gap: 0.6rem 1rem; }
    .hero-h1 { font-size: 3rem; }
  }

 /* Additional Animation Styles */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }
  
  @keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }
  
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0) scale(1); }
  }
  
  @keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
  }
  
  @keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
  }
  
  /* Apply animations to elements */
  .hero-h1, .hero-sub, .hero-ctas, .hero-trust {
    animation: slideInUp 1s ease-out forwards;
  }
  
  .hero-card {
    animation: scaleIn 1s ease-out 0.3s both;
  }
  
  .hero-label {
    animation: fadeIn 1s ease-out forwards;
  }
  
  .floating-badges .fb {
    animation: float 6s ease-in-out infinite;
  }
  
  .why-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(75, 175, 33, 0.15);
  }
  
  .about-stat-card {
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
  }
  
  .about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 27, 42, 0.1);
  }
  
  .step-card {
    transition: all 0.3s ease;
  }
  
  .step-card:hover .step-num {
    animation: bounceIn 0.6s ease-out;
  }
  
  .exam-block {
    transition: all 0.3s ease;
  }
  
  .exam-block:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(75, 175, 33, 0.2);
  }
  
  .t-card {
    transition: all 0.4s ease;
    animation: fadeIn 1s ease-out;
  }
  
  .t-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.1);
  }
  
  .pricing-col {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: scaleIn 0.8s ease-out;
  }
  
  .pricing-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(75, 175, 33, 0.15);
  }
  
  .pricing-col-featured {
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .price-list li {
    animation: slideInRight 0.5s ease-out forwards;
    opacity: 0;
  }
  
  .price-list li:nth-child(1) { animation-delay: 0.1s; }
  .price-list li:nth-child(2) { animation-delay: 0.2s; }
  .price-list li:nth-child(3) { animation-delay: 0.3s; }
  .price-list li:nth-child(4) { animation-delay: 0.4s; }
  
  .faq-item {
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out forwards;
    opacity: 0;
  }
  
  .faq-item:nth-child(1) { animation-delay: 0.1s; }
  .faq-item:nth-child(2) { animation-delay: 0.2s; }
  .faq-item:nth-child(3) { animation-delay: 0.3s; }
  .faq-item:nth-child(4) { animation-delay: 0.4s; }
  .faq-item:nth-child(5) { animation-delay: 0.5s; }
  .faq-item:nth-child(6) { animation-delay: 0.6s; }
  .faq-item:nth-child(7) { animation-delay: 0.7s; }
  
  .faq-item:hover {
    transform: translateX(5px);
    border-color: var(--green);
  }
  
  .contact-form-card {
    animation: slideInRight 1s ease-out;
  }
  
  .contact-info {
    animation: slideInLeft 1s ease-out;
  }
  
  .social-btn {
    transition: all 0.3s ease;
  }
  
  .social-btn:hover {
    transform: translateY(-3px) rotate(3deg);
    box-shadow: 0 5px 15px rgba(75, 175, 33, 0.2);
  }
  
  .btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  
  .btn:active::after {
    width: 300px;
    height: 300px;
  }
  
  .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(75, 175, 33, 0.3);
  }
  
  .btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    background-size: 200% 200%;
    animation: shimmer 3s infinite linear;
  }
  
  .hero-orb-1, .hero-orb-2 {
    animation: float-slow 8s ease-in-out infinite;
  }
  
  .banner-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
  }
  
  .p-tab {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .p-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(75, 175, 33, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  
  .p-tab:active::before {
    width: 200px;
    height: 200px;
  }
  
  .exam-pill {
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
  }
  
  .exam-pill:hover {
    transform: scale(1.1);
    color: var(--green);
  }
  
  .hero-trust span {
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out forwards;
    opacity: 0;
  }
  
  .hero-trust span:nth-child(1) { animation-delay: 0.6s; }
  .hero-trust span:nth-child(2) { animation-delay: 0.7s; }
  .hero-trust span:nth-child(3) { animation-delay: 0.8s; }
  .hero-trust span:nth-child(4) { animation-delay: 0.9s; }
  
  .hero-trust span:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
  }
  
  .section-header h2 {
    animation: slideInUp 0.8s ease-out;
  }
  
  .section-header p {
    animation: fadeIn 1s ease-out 0.2s both;
  }
  
  .section-kicker {
    animation: bounceIn 1s ease-out;
  }
  
  .footer-nav a {
    transition: all 0.3s ease;
    position: relative;
  }
  
  .footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
  }
  
  .footer-nav a:hover::after {
    width: 100%;
  }
  
  .footer-nav a:hover {
    transform: translateY(-2px);
  }
  
  /* Loading animation for images */
  img {
    transition: opacity 0.5s ease;
    opacity: 0;
  }
  
  img.loaded {
    opacity: 1;
  }
  
  /* Hover effect for cards */
  .why-card, .step-card, .exam-block, .t-card, .pricing-col {
    position: relative;
    overflow: hidden;
  }
  
  .why-card::before, .step-card::before, .exam-block::before, .t-card::before, .pricing-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(75, 175, 33, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .why-card:hover::before, .step-card:hover::before, .exam-block:hover::before, .t-card:hover::before, .pricing-col:hover::before {
    left: 100%;
  }
  
  /* Parallax effect for hero */
  .hero {
    background-attachment: fixed;
  }
  
  /* Smooth scroll behavior */
  html {
    scroll-behavior: smooth;
  }
  
  /* Loading spinner for forms */
  .btn.loading {
    position: relative;
    color: transparent;
  }
  
  .btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
  }
  
  @keyframes spinner {
    to { transform: rotate(360deg); }
  }
  
  /* Animated background for featured elements */
  .pricing-col-featured {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
  }
  
  @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  /* Counter animation for stats */
  .stat-num {
    animation: countUp 1s ease-out;
  }

  .contact-cta-btns .btn-ghost:hover ,   .hero-ctas .btn-ghost:hover {
  border-color: #436090;
  color: var(--lime);
  background: #436090;
  box-shadow: 0 10px 30px #436090;

}

.hero-trust span{
color: white;
}
@media (max-width: 900px) {
.logo-img{
  width: 85px !important;
}
.footer-name .logo-name{
  font-size: 0.95rem !important;
}
.footer-tagline, .logo-tagline{
  letter-spacing:unset !important;
  font-size:0.6rem !important;
}
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(0, 168, 107, 0.08);
}

#subjects-container {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#subjects-container label {
  display: block;
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}
