:root {
      --green-900: #0B2218;
      --green-800: #163828;
      --green-700: #1B4D34;
      --green-600: #246642;
      --green-500: #2D7A50;
      --green-400: #3D9B68;
      --green-200: #AEDCC5;
      --green-100: #D4EDE1;
      --green-50: #EBF5EF;

      --orange-600: #ff5500;
      --orange-500: #ff7b00;
      --orange-400: #E07A44;
      --orange-200: #F5C4A1;
      --orange-100: #FCE9DC;

      --neutral-900: #0F1A15;
      --neutral-800: #1C2B22;
      --neutral-700: #2C3D34;
      --neutral-600: #3D5047;
      --neutral-500: #4A5E54;
      --neutral-400: #6B7F76;
      --neutral-300: #9AAAA3;
      --neutral-200: #C5D1CC;
      --neutral-100: #E5EDEA;
      --neutral-50: #F4F7F5;

      --surface: #FAFAF8;
      --surface-elevated: #FFFFFF;

      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --radius-2xl: 40px;
      --radius-full: 9999px;

      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
      --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);

      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --transition: 0.25s var(--ease);
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--surface);
      color: var(--neutral-900);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    /* =====================================================
       TOP BAR
       ===================================================== */

    .top-bar {
      background: var(--green-900);
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.78rem;
      font-weight: 500;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .top-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.7);
    }

    .top-bar-left i {
      color: #86efac;
      font-size: 0.75rem;
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .top-bar-right a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.65);
      transition: var(--transition);
    }

    .top-bar-right a:hover {
      color: white;
    }

    .top-bar-right i {
      font-size: 0.72rem;
      color: var(--green-400);
    }

    .tb-sep {
      color: rgba(255, 255, 255, 0.25);
    }

    /* =====================================================
       BUTTONS
       ===================================================== */

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green-600);
      color: #fff;
      padding: 14px 28px;
      border-radius: var(--radius-full);
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: var(--green-700);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(36, 102, 66, 0.35);
    }

    .btn-primary.btn-full {
      width: 100%;
      justify-content: center;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--green-700);
      padding: 13px 24px;
      border-radius: var(--radius-full);
      font-size: 0.95rem;
      font-weight: 600;
      border: 1.5px solid var(--green-200);
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-ghost:hover {
      background: var(--green-50);
      border-color: var(--green-400);
    }

    .btn-nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-600);
      color: #fff !important;
      padding: 9px 20px;
      border-radius: var(--radius-full);
      font-size: 0.875rem;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-nav-cta:hover {
      background: var(--green-700) !important;
    }

    /* =====================================================
       LABELS & SECTION HEADERS
       ===================================================== */

    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange-500);
      margin-bottom: 12px;
    }

    .section-label.light {
      color: var(--orange-200);
    }

    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: var(--neutral-900);
      margin-bottom: 16px;
    }

    .section-header p {
      font-size: 1.05rem;
      color: var(--neutral-500);
      line-height: 1.75;
    }

    /* =====================================================
       HEADER / NAVBAR
       ===================================================== */

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 10px 0;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(44, 122, 80, 0.1);
      border-radius: var(--radius-full);
      padding: 8px 10px 8px 12px;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
    }

    header.scrolled .navbar {
      background: rgba(255, 255, 255, 0.97);
      box-shadow: var(--shadow-lg);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      border-radius: 12px;
      flex-shrink: 0;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .logo-name {
      font-size: 1rem;
      font-weight: 800;
      color: var(--green-800);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .logo-tagline {
      font-size: 0.68rem;
      font-weight: 500;
      color: var(--neutral-400);
      letter-spacing: 0.04em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--neutral-700);
      padding: 8px 13px;
      border-radius: var(--radius-full);
      transition: var(--transition);
      position: relative;
    }

    .nav-links a:not(.btn-nav-cta)::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green-500), var(--orange-400));
      border-radius: var(--radius-full);
      transition: width 0.3s var(--ease), left 0.3s var(--ease);
    }

    .nav-links a:not(.btn-nav-cta):hover {
      color: var(--green-600);
    }

    .nav-links a:not(.btn-nav-cta):hover::after {
      width: 60%;
      left: 20%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: 1.5px solid var(--neutral-200);
      border-radius: var(--radius-md);
      padding: 8px 12px;
      color: var(--neutral-700);
      font-size: 1rem;
      transition: var(--transition);
    }

    .mobile-menu-btn:hover {
      background: var(--green-50);
      border-color: var(--green-200);
      color: var(--green-600);
    }

    /* =====================================================
       HERO
       ===================================================== */

    .hero {
      padding: 48px 0 72px;
    }

    .hero-grid {
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .hero-content {
      flex: 1;
      min-width: 280px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange-100);
      color: var(--orange-600);
      padding: 6px 14px 6px 10px;
      border-radius: var(--radius-full);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      margin-bottom: 28px;
      border: 1px solid rgba(212, 98, 42, 0.2);
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--orange-500);
      border-radius: 50%;
      display: inline-block;
      animation: badgePulse 2.4s ease-in-out infinite;
    }

    @keyframes badgePulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.55;
        transform: scale(0.82);
      }
    }

    .hero-content h1 {
      font-size: 4.2rem;
      font-weight: 800;
      line-height: 1.08;
      color: var(--green-900);
      margin-bottom: 24px;
    }

    .hero-accent {
      color: var(--orange-500);
    }

    .hero-subtext {
      font-size: 1.08rem;
      color: var(--neutral-500);
      line-height: 1.75;
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-trust {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--neutral-500);
    }

    .trust-item i {
      color: var(--orange-500);
      font-size: 0.85rem;
    }

    .hero-image {
      flex: 1;
      min-width: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .animated-hero {
      position: relative;
      min-height: 380px;
    }

    .hero-img-wrapper {
      position: relative;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      aspect-ratio: 1 / 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .floating-fruit-img {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 550px;
      height: auto;
      animation: floatImage 5s ease-in-out infinite;
    }

    @keyframes floatImage {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    .orbit-ring {
      position: absolute;
      border: 2px dashed rgba(228, 124, 59, 0.25);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .ring-1 {
      width: clamp(200px, 45vw, 320px);
      height: clamp(200px, 45vw, 320px);
      animation: rotateClockwise 20s linear infinite;
    }

    .ring-2 {
      width: clamp(280px, 65vw, 440px);
      height: clamp(280px, 65vw, 440px);
      animation: rotateCounterClockwise 28s linear infinite;
    }

    .ring-3 {
      width: clamp(360px, 85vw, 560px);
      height: clamp(360px, 85vw, 560px);
      animation: rotateClockwise 36s linear infinite;
    }

    @keyframes rotateClockwise {
      0% {
        transform: translate(-50%, -50%) rotate(0deg);
      }

      100% {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    @keyframes rotateCounterClockwise {
      0% {
        transform: translate(-50%, -50%) rotate(360deg);
      }

      100% {
        transform: translate(-50%, -50%) rotate(0deg);
      }
    }

    .particle {
      position: absolute;
      background: rgba(58, 107, 41, 0.3);
      border-radius: 50%;
      pointer-events: none;
      animation: floatParticle 8s ease-in-out infinite;
    }

    .particle-1 {
      width: 12px;
      height: 12px;
      top: 15%;
      right: 10%;
    }

    .particle-2 {
      width: 8px;
      height: 8px;
      bottom: 20%;
      left: 5%;
      animation-delay: 2s;
    }

    .particle-3 {
      width: 10px;
      height: 10px;
      top: 40%;
      right: -5px;
      animation-delay: 4s;
    }

    .particle-4 {
      width: 6px;
      height: 6px;
      bottom: 10%;
      right: 20%;
      animation-delay: 1s;
    }

    .particle-5 {
      width: 14px;
      height: 14px;
      top: 70%;
      left: 0%;
      animation-delay: 3s;
    }

    @keyframes floatParticle {

      0%,
      100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
      }

      50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
      }
    }

    /* =====================================================
       MARKET TICKER
       ===================================================== */

    .ticker-section {
      max-width: 1200px;
      margin: 0 auto 80px;
      padding: 0 32px;
    }

    .market-ticker {
      background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
      border-radius: var(--radius-full);
      overflow: hidden;
    }

    .ticker-wrapper {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: tickerScroll 45s linear infinite;
      width: fit-content;
      padding: 14px 0;
    }

    .ticker-wrapper:hover {
      animation-play-state: paused;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 28px;
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.88);
    }

    .ticker-item i {
      color: var(--orange-400);
      font-size: 0.82rem;
    }

    .ticker-value {
      color: #86efac;
      font-weight: 700;
    }

    .ticker-dot {
      display: inline-block;
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.28);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes tickerScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* =====================================================
       CATEGORIES (FIXED: cards layout + contained rings)
       ===================================================== */

    .categories {
      padding: 80px 0;
      background: var(--surface-elevated);
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }

    .category-card {
      background: var(--surface);
      border: 1px solid var(--neutral-100);
      border-radius: var(--radius-lg);
      padding: 32px 16px 24px;
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    /* Top accent bar - properly contained at top edge */
    .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green-500), var(--orange-400));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s var(--ease);
      z-index: 2;
    }

    .category-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--green-100);
    }

    .category-card:hover::before {
      transform: scaleX(1);
    }

    .cat-icon-wrap {
      width: 74px;
      height: 74px;
      background: var(--green-50);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: var(--transition);
      position: relative;
    }

    /* Rotating ring - now contained within card via overflow hidden on parent? 
       Actually we want it visible but not overlapping outside card. 
       The ring is inside .cat-icon-wrap, which is within card. 
       Since .category-card has overflow: hidden, the ring won't bleed outside.
       But we want the ring to be visible within the icon area. */
    .cat-icon-wrap::after {
      content: '';
      position: absolute;
      width: 98px;
      height: 98px;
      border: 2px dashed rgba(228, 124, 59, 0.55);
      border-radius: 50%;
      animation: spinOrbit 10s linear infinite;
      pointer-events: none;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    @keyframes spinOrbit {
      from {
        transform: translate(-50%, -50%) rotate(0deg);
      }
      to {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    .cat-icon-wrap.orange {
      background: var(--orange-100);
    }

    .cat-icon-wrap.orange::after {
      border-color: rgba(212, 98, 42, 0.6);
    }

    .cat-icon-wrap i {
      font-size: 1.7rem;
      color: var(--green-500);
      position: relative;
      z-index: 1;
    }

    .cat-icon-wrap.orange i {
      color: var(--orange-500);
    }

    .category-card:hover .cat-icon-wrap {
      transform: scale(1.05);
    }

    .category-card h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--neutral-800);
      margin-bottom: 6px;
    }

    .cat-volume {
      display: block;
      font-size: 0.76rem;
      color: var(--neutral-400);
      font-weight: 500;
    }

    .cat-badge {
      display: inline-block;
      background: var(--orange-100);
      color: var(--orange-600);
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: var(--radius-full);
      margin-top: 10px;
    }

    /* =====================================================
       VIDEO
       ===================================================== */

    .video-section {
      padding: 0 0 80px;
    }

    .video-hero {
      position: relative;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      min-height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--green-900);
    }

    .video-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(11, 34, 24, 0.72) 0%, rgba(27, 77, 52, 0.52) 100%);
      z-index: 2;
    }

    .video-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 80px 40px;
      max-width: 680px;
    }

    .video-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 98, 42, 0.85);
      backdrop-filter: blur(8px);
      color: white;
      padding: 8px 18px;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .video-content h2 {
      font-size: 3.2rem;
      font-weight: 800;
      color: white;
      margin-bottom: 20px;
      line-height: 1.1;
    }

    .video-content p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.75;
      max-width: 540px;
      margin: 0 auto;
    }

    /* =====================================================
       FEATURES
       ===================================================== */

    .features {
      padding: 80px 0;
      background: var(--surface-elevated);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--neutral-100);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--green-100);
    }

    .feature-icon-wrap {
      width: 52px;
      height: 52px;
      background: var(--green-50);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: var(--transition);
    }

    .feature-icon-wrap i {
      font-size: 1.3rem;
      color: var(--green-500);
    }

    .feature-card:hover .feature-icon-wrap {
      background: var(--green-100);
    }

    .feature-card:nth-child(2) .feature-icon-wrap,
    .feature-card:nth-child(4) .feature-icon-wrap {
      background: var(--orange-100);
    }

    .feature-card:nth-child(2) .feature-icon-wrap i,
    .feature-card:nth-child(4) .feature-icon-wrap i {
      color: var(--orange-500);
    }

    .feature-card:nth-child(2):hover .feature-icon-wrap,
    .feature-card:nth-child(4):hover .feature-icon-wrap {
      background: rgba(212, 98, 42, 0.18);
    }

    .feature-card:nth-child(2) .feature-tag,
    .feature-card:nth-child(4) .feature-tag {
      background: var(--orange-100);
      color: var(--orange-600);
      border-color: rgba(212, 98, 42, 0.2);
    }

    .feature-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--neutral-800);
      margin-bottom: 10px;
    }

    .feature-card p {
      font-size: 0.9rem;
      color: var(--neutral-500);
      line-height: 1.72;
      margin-bottom: 20px;
    }

    .feature-tag {
      display: inline-block;
      background: var(--green-50);
      color: var(--green-600);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      border: 1px solid var(--green-100);
    }

    /* =====================================================
       CERTIFICATIONS STRIP
       ===================================================== */

    .certs-strip {
      padding: 0 32px;
      margin: 0 auto 0;
      max-width: 1200px;
    }

    .certs-inner {
      background: var(--green-900);
      border-radius: 15px;
      padding: 32px 40px;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .certs-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-400);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .certs-grid {
      display: flex;
      align-items: center;
      gap: 0;
      flex: 1;
      flex-wrap: wrap;
    }

    .cert-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 28px;
      flex: 1;
      min-width: 140px;
    }

    .cert-icon {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cert-icon i {
      font-size: 1rem;
      color: var(--green-400);
    }

    .cert-item span {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      white-space: nowrap;
    }

    .cert-divider {
      width: 1px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      flex-shrink: 0;
    }

    /* =====================================================
       PROCESS
       ===================================================== */

    .process {
      padding: 96px 0;
      background: var(--surface);
    }

    .process-steps {
      display: flex;
      align-items: flex-start;
      gap: 0;
      position: relative;
    }

    .process-step {
      flex: 1;
      text-align: center;
      padding: 0 20px;
      position: relative;
    }

    .step-num {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: var(--green-400);
      margin-bottom: 16px;
      display: block;
    }

    .step-icon-wrap {
      width: 72px;
      height: 72px;
      background: var(--green-50);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 2px solid var(--green-100);
      transition: var(--transition);
    }

    .step-icon-wrap i {
      font-size: 1.6rem;
      color: var(--green-500);
    }

    .step-icon-wrap.orange {
      background: var(--orange-100);
    }

    .step-icon-wrap.orange i {
      color: var(--orange-500);
    }

    .process-step:hover .step-icon-wrap {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .process-step h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--neutral-800);
      margin-bottom: 10px;
    }

    .process-step p {
      font-size: 0.88rem;
      color: var(--neutral-500);
      line-height: 1.72;
      max-width: 220px;
      margin: 0 auto;
    }

    .process-connector {
      padding-top: 52px;
      color: var(--neutral-300);
      font-size: 1rem;
      flex-shrink: 0;
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    /* =====================================================
       ABOUT
       ===================================================== */

    .about {
      padding: 100px 0;
      background: var(--neutral-50);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }

    .about-image-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
    }

    .about-image-badge {
      position: absolute;
      bottom: 24px;
      right: -16px;
      background: white;
      border-radius: var(--radius-lg);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-100);
    }

    .about-image-badge i {
      font-size: 1.4rem;
      color: var(--orange-500);
    }

    .about-image-badge span {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--neutral-800);
    }

    .about-text h2 {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--green-900);
      margin-bottom: 24px;
      line-height: 1.15;
    }

    .about-text p {
      font-size: 1rem;
      color: var(--neutral-500);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .stats-row {
      display: flex;
      align-items: center;
      margin-top: 40px;
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid var(--neutral-100);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .stat-block {
      flex: 1;
      padding: 24px 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--green-600);
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--neutral-400);
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .stat-divider {
      width: 1px;
      height: 40px;
      background: var(--neutral-100);
      flex-shrink: 0;
    }

    /* =====================================================
       GLOBAL REACH
       ===================================================== */

    .global-reach {
      padding: 100px 0;
      background: var(--surface-elevated);
    }

    .reach-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .reach-text h2 {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--green-900);
      margin-bottom: 20px;
      line-height: 1.15;
    }

    .reach-text>p {
      font-size: 1rem;
      color: var(--neutral-500);
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .reach-regions {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .region-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--surface);
      border: 1px solid var(--neutral-100);
      border-radius: var(--radius-lg);
      padding: 16px 20px;
      transition: var(--transition);
    }

    .region-item:hover {
      border-color: var(--green-100);
      box-shadow: var(--shadow-sm);
    }

    .region-icon {
      width: 42px;
      height: 42px;
      background: var(--green-50);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .region-icon i {
      font-size: 1.1rem;
      color: var(--green-500);
    }

    .region-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .region-text strong {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--neutral-800);
    }

    .region-text span {
      font-size: 0.8rem;
      color: var(--neutral-400);
    }

    .reach-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .reach-stat-card {
      background: var(--surface);
      border: 1px solid var(--neutral-100);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: var(--transition);
    }

    .reach-stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .reach-stat-card.accent {
      background: rgba(212, 98, 42, 0.07);
      border-color: rgba(212, 98, 42, 0.22);
    }

    .reach-stat-num {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--green-600);
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .reach-stat-card.accent .reach-stat-num {
      color: var(--orange-500);
    }

    .reach-stat-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--neutral-400);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .reach-stat-card.accent .reach-stat-label {
      color: var(--orange-600);
      opacity: 0.8;
    }

    /* =====================================================
       CONTACT
       ===================================================== */

    .contact {
      padding: 100px 0;
    }

    .contact-card {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .contact-info {
      padding: 60px 48px;
      background: linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
      position: relative;
    }

    .contact-info::after {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(45, 122, 80, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-info h2 {
      font-size: 2.4rem;
      font-weight: 800;
      color: white;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .contact-info>p {
      font-size: 0.93rem;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }

    .contact-detail-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.9rem;
      font-weight: 500;
      transition: var(--transition);
    }

    a.contact-detail-item:hover {
      color: white;
    }

    .contact-icon {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.9rem;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-links a {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.88rem;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--green-500);
      color: white;
      transform: translateY(-2px);
    }

    .contact-form-wrap {
      padding: 60px 48px;
      background: white;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--neutral-600);
      margin-bottom: 8px;
    }

    input,
    textarea {
      width: 100%;
      padding: 13px 16px;
      border-radius: var(--radius-md);
      border: 1.5px solid var(--neutral-200);
      font-family: 'Inter', sans-serif;
      font-size: 0.93rem;
      color: var(--neutral-800);
      background: var(--surface);
      transition: var(--transition);
      outline: none;
    }

    input:focus,
    textarea:focus {
      border-color: var(--green-500);
      background: white;
      box-shadow: 0 0 0 3px rgba(45, 122, 80, 0.1);
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    /* =====================================================
       FOOTER CTA BAND
       ===================================================== */

    .footer-cta-band {
      background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
      padding: 60px 0;
    }

    .footer-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .footer-cta-text h2 {
      font-size: 1.8rem;
      font-weight: 800;
      color: white;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .footer-cta-text p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.75);
      max-width: 480px;
      line-height: 1.65;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      color: var(--green-700);
      padding: 14px 28px;
      border-radius: var(--radius-full);
      font-size: 0.95rem;
      font-weight: 700;
      transition: var(--transition);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .footer-cta-btn:hover {
      background: var(--green-50);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    /* =====================================================
       FOOTER
       ===================================================== */

    footer {
      background: var(--neutral-900);
      color: var(--neutral-300);
      padding: 72px 0 0;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr 2.4fr;
      gap: 72px;
      margin-bottom: 56px;
    }

    .footer-brand .footer-logo {
      width: 68px;
      height: 68px;
      object-fit: contain;
      border-radius: 14px;
      margin-bottom: 18px;
    }

    .footer-brand>p {
      font-size: 0.875rem;
      line-height: 1.75;
      max-width: 240px;
      margin-bottom: 24px;
      color: var(--neutral-400);
    }

    .footer-social {
      margin-top: 0;
    }

    .footer-social a {
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-social a:hover {
      background: var(--green-600);
      color: white;
    }

    .footer-links-group {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .footer-col h5 {
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer-col a {
      display: block;
      font-size: 0.875rem;
      color: var(--neutral-400);
      margin-bottom: 12px;
      transition: var(--transition);
    }

    .footer-col a:hover {
      color: white;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--neutral-400);
      margin-bottom: 12px;
    }

    .footer-contact-item i {
      color: var(--green-400);
      font-size: 0.8rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .footer-sub-text {
      font-size: 0.84rem;
      line-height: 1.65;
      color: var(--neutral-400);
      margin-bottom: 16px;
    }

    .subscribe-form {
      display: flex;
      border-radius: var(--radius-full);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .subscribe-input {
      flex: 1;
      background: rgba(255, 255, 255, 0.06);
      border: none;
      padding: 11px 18px;
      color: white;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      outline: none;
    }

    .subscribe-input::placeholder {
      color: rgba(255, 255, 255, 0.38);
    }

    .subscribe-btn {
      background: var(--green-600);
      border: none;
      padding: 0 20px;
      color: white;
      font-size: 0.875rem;
      transition: var(--transition);
      flex-shrink: 0;
    }

    .subscribe-btn:hover {
      background: var(--green-500);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .copyright {
      font-size: 0.8rem;
      color: var(--neutral-500);
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-links a {
      font-size: 0.8rem;
      color: var(--neutral-500);
      transition: var(--transition);
    }

    .footer-bottom-links a:hover {
      color: white;
    }

    /* =====================================================
       REVEAL ANIMATION
       ===================================================== */

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =====================================================
       TOAST
       ===================================================== */

    .toast-msg {
      position: fixed;
      bottom: 28px;
      right: 28px;
      background: var(--neutral-900);
      color: white;
      padding: 14px 22px;
      border-radius: var(--radius-full);
      font-size: 0.875rem;
      font-weight: 500;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      z-index: 999;
      pointer-events: none;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow-xl);
      max-width: 360px;
    }

    .toast-msg.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* =====================================================
       SUCCESS MODAL
       ===================================================== */

    .success-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 30, 10, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .success-modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .success-modal {
      background: #fff;
      border-radius: 24px;
      padding: 44px 36px 36px;
      max-width: 420px;
      width: 100%;
      text-align: center;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(58, 107, 41, 0.08);
      transform: translateY(24px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .success-modal::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--green-600), var(--orange-500));
      border-radius: 24px 24px 0 0;
    }

    .success-modal-overlay.active .success-modal {
      transform: translateY(0) scale(1);
    }

    .success-modal-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .success-modal-icon i {
      font-size: 1.75rem;
      color: #fff;
      position: relative;
      z-index: 2;
    }

    .success-modal-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--green-600), var(--green-500));
      border-radius: 50%;
      z-index: 1;
    }

    .success-icon-ring {
      position: absolute;
      inset: -8px;
      border: 2px dashed rgba(58, 107, 41, 0.3);
      border-radius: 50%;
      animation: spinOrbit 10s linear infinite;
    }

    .success-modal h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--neutral-900);
      margin-bottom: 10px;
    }

    .success-modal p {
      font-size: 0.95rem;
      color: var(--neutral-600);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .success-modal p strong {
      color: var(--green-700);
    }

    .success-modal-meta {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .success-modal-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--neutral-500);
      background: var(--neutral-100);
      padding: 6px 12px;
      border-radius: var(--radius-full);
    }

    .success-modal-meta span i {
      color: var(--orange-500);
      font-size: 0.75rem;
    }

    .success-modal-close {
      display: inline-block;
      background: linear-gradient(135deg, var(--green-600), var(--green-500));
      color: #fff;
      border: none;
      padding: 13px 36px;
      border-radius: var(--radius-full);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(58, 107, 41, 0.3);
      width: 100%;
    }

    .success-modal-close:hover {
      background: linear-gradient(135deg, var(--green-700), var(--green-600));
      box-shadow: 0 6px 20px rgba(58, 107, 41, 0.4);
      transform: translateY(-1px);
    }

    /* =====================================================
       RESPONSIVE
       ===================================================== */
    @media (max-width: 1100px) {
      .hero-content h1 { font-size: 3.5rem; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .footer-links-group { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    }

    @media (max-width: 1024px) {
      .hero-content h1 { font-size: 3.2rem; }
      .about-inner, .reach-inner { gap: 56px; }
    }

    @media (max-width: 900px) {
      .mobile-menu-btn { display: block; }
      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--neutral-100);
        z-index: 200;
      }
      .nav-links.active { display: flex; }
      .nav-links a:not(.btn-nav-cta) { padding: 12px 16px; border-radius: var(--radius-md); text-align: center; }
      .nav-links a:not(.btn-nav-cta)::after { display: none; }
      .btn-nav-cta { justify-content: center; margin-top: 4px; }
      .top-bar-right { display: none; }
      .top-bar-left { justify-content: center; width: 100%; gap: 6px; flex-wrap: wrap; font-size: 0.72rem; }
      .hero-grid { flex-direction: column; gap: 40px; }
      .hero-content h1 { font-size: 3rem; }
      .section-header h2 { font-size: 2rem; }
      .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { flex-wrap: wrap; gap: 32px; }
      .process-connector { display: none; }
      .process-step { flex: 0 0 calc(50% - 16px); padding: 0; }
      .about-inner, .reach-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-image-wrap img { height: 380px; }
      .about-text h2, .reach-text h2 { font-size: 2.1rem; }
      .reach-stats-grid { grid-template-columns: repeat(4, 1fr); }
      .contact-card { grid-template-columns: 1fr; }
      .contact-info, .contact-form-wrap { padding: 48px 40px; }
      .video-content h2 { font-size: 2.4rem; }
      .certs-inner { flex-direction: column; gap: 20px; padding: 28px 24px; }
      .certs-grid { width: 100%; justify-content: center; }
      .cert-item { flex: 0 0 calc(33.33% - 2px); justify-content: center; padding: 8px 12px; }
      .cert-divider { display: none; }
      .footer-top { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .footer-cta-inner { flex-direction: column; text-align: center; }
    }

    @media (max-width: 768px) {
      .container, .ticker-section { padding: 0 20px; }
      .hero { padding: 32px 0 56px; }
      .hero-content h1 { font-size: 2.6rem; }
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn-primary, .hero-buttons .btn-ghost { justify-content: center; width: 100%; }
      .animated-hero { min-height: 300px; }
      .section-header h2 { font-size: 1.9rem; }
      .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .process-step { flex: 0 0 100%; }
      .about-text h2, .reach-text h2 { font-size: 1.9rem; }
      .stats-row { flex-direction: column; }
      .stat-divider { width: 80%; height: 1px; align-self: center; }
      .reach-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .video-content h2 { font-size: 2rem; }
      .video-hero { min-height: 420px; }
      .footer-links-group { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-cta-text h2 { font-size: 1.5rem; }
      .certs-inner { padding: 24px 20px; }
      .cert-item { flex: 0 0 calc(50% - 1px); justify-content: flex-start; padding: 8px 16px; }
    }

    @media (max-width: 600px) {
      .hero-content h1 { font-size: 2.2rem; }
      .section-header h2 { font-size: 1.75rem; }
      .about-image-wrap img { height: 300px; }
      .about-image-badge { right: 8px; bottom: 16px; padding: 10px 14px; }
      .ticker-item { padding: 0 18px; font-size: 0.82rem; }
      .contact-info h2 { font-size: 1.8rem; }
    }

    @media (max-width: 480px) {
      .container, .ticker-section, .certs-strip { padding: 0 16px; }
      .top-bar { display: none; }
      .logo-text { display: none; }
      .hero-content h1 { font-size: 1.9rem; }
      .hero-trust { flex-direction: column; gap: 8px; }
      .animated-hero { min-height: 260px; }
      .hero-img-wrapper { max-width: 300px; }
      .ring-1 { width: 180px; height: 180px; }
      .ring-2 { width: 256px; height: 256px; }
      .ring-3 { width: 320px; height: 320px; }
      .section-header h2 { font-size: 1.6rem; }
      .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .category-card { padding: 24px 12px 20px; }
      .cat-icon-wrap { width: 60px; height: 60px; }
      .cat-icon-wrap::after { width: 80px; height: 80px; }
      .cat-icon-wrap i { font-size: 1.4rem; }
      .video-hero { min-height: 360px; border-radius: 24px; }
      .video-content h2 { font-size: 1.65rem; }
      .about-text h2 { font-size: 1.7rem; }
      .about-image-badge { position: static; margin-top: 12px; border-radius: var(--radius-md); }
      .stat-number { font-size: 1.7rem; }
      .reach-text h2 { font-size: 1.7rem; }
      .reach-stats-grid { grid-template-columns: 1fr 1fr; }
      .contact-info, .contact-form-wrap { padding: 32px 24px; }
      .certs-inner { padding: 20px 16px; border-radius: 12px; }
      .certs-label { text-align: center; width: 100%; }
      .cert-item { flex: 0 0 calc(50% - 4px); padding: 10px 12px; }
      .footer-links-group { grid-template-columns: 1fr; }
      .footer-cta-text h2 { font-size: 1.3rem; }
    }

     /* Additional fixes only for modal and menu spacing — preserves all original styles */
    
    /* Fix for mobile menu - 20px spacing on sides */
    @media (max-width: 900px) {
      .nav-links {
        left: 20px !important;
        right: 20px !important;
        width: auto !important;
      }
    }
    
    /* Fix for success modal rotating ring - perfectly centered, no distortion */
    .success-icon-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      border: 2px dashed rgba(58, 107, 41, 0.35);
      border-radius: 50%;
      animation: successRingRotate 10s linear infinite;
      pointer-events: none;
    }
    
    @keyframes successRingRotate {
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    /* Ensure category card rotating rings stay inside cards */
    .category-card {
      overflow: hidden;
    }
    
    .cat-icon-wrap::after {
      transform-origin: center;
    }