:root {
    --navy: #1A3A6B;
    --navy-dark: #0f2347;
    --navy-light: #2a5298;
    --gold: #E89B1C;
    --gold-light: #F5B942;
    --gold-pale: #FEF6E4;
    --white: #ffffff;
    --gray-50: #F8F9FB;
    --gray-100: #EEF1F6;
    --gray-200: #D8DEE9;
    --gray-500: #6B7A99;
    --gray-700: #3A4465;
    --text: #1E2A45;
    --shadow-sm: 0 2px 12px rgba(26,58,107,0.08);
    --shadow-md: 0 8px 32px rgba(26,58,107,0.12);
    --shadow-lg: 0 16px 48px rgba(26,58,107,0.16);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: var(--shadow-md); }

  .logo {
    display: inline-block;
   img{
    width: 70%;
   }
  }
  /* .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  } */
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-text span:first-child {
    font-size: 18px; font-weight: 700; color: var(--navy);
  }
  .logo-text span:first-child em { color: var(--gold); font-style: normal; }
  .logo-text small {
    font-size: 10px; font-weight: 400; color: var(--gray-500); letter-spacing: 0.5px;
  }

  .nav-links {
    display: flex; align-items: center; gap: 8px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none; font-size: 14px; font-weight: 500;
    color: var(--gray-700); padding: 8px 16px; border-radius: 8px;
    transition: all 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-100); }
  .nav-links .btn-nav {
    background: var(--navy); color: var(--white) !important;
    padding: 10px 20px; border-radius: 10px;
  }
  .nav-links .btn-nav:hover { background: var(--navy-light); }

  .nav-top-row { display: contents; }
  .hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    width: 40px; height: 40px; border-radius: 10px;
    border: none; background: var(--gray-100);
    cursor: pointer; gap: 5px; z-index: 1001;
    transition: background 0.2s;
  }
  .hamburger:hover { background: var(--gray-200); }
  .hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── MOBILE NAV COLLAPSE ─── */
  @media (max-width: 900px) {
    .hero-illustration{
      display: none;
    }
    nav {
      flex-wrap: wrap;
      height: auto;
      padding: 0 5%;
    }
    .nav-top-row {
      display: flex; align-items: center;
      justify-content: space-between;
      width: 100%; height: 72px;
    }
    .hamburger { display: flex; }

    .nav-links {
      display: none;
      flex-direction: column; align-items: stretch;
      width: 100%; gap: 4px;
      padding: 12px 0 16px;
      border-top: 1px solid var(--gray-200);
      list-style: none;
    }
    .nav-links.open { display: flex; }

    .nav-links a {
      display: block; font-size: 15px;
      padding: 12px 14px; border-radius: 10px;
    }
    .nav-links .btn-nav {
      margin-top: 6px; text-align: center;
      padding: 13px 20px;
    }
  }

  /* ─── PAGES ─── */
  .page { display: none; padding-top: 72px; }
  .page.active { display: block; }

  /* ─── HOME PAGE ─── */

  /* Hero */
  .hero {
    min-height: calc(100vh - 72px);
    background: linear-gradient(150deg, #F0F5FF 0%, #FEF8EC 60%, #F5F9FF 100%);
    display: flex; align-items: center;
    padding: 60px 5%;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,155,28,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,58,107,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-pale); border: 1px solid rgba(232,155,28,0.3);
    color: #9B6A0A; font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
    letter-spacing: 0.5px; text-transform: uppercase;
  }
  .hero-badge::before { content: '★'; color: var(--gold); font-size: 10px; }

  .hero h1 {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .hero h1 span { color: var(--gold); }

  .hero p {
    font-size: 16px; color: var(--gray-500); line-height: 1.75;
    margin-bottom: 36px; max-width: 480px;
  }

  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--navy); color: var(--white);
    border: none; padding: 14px 28px; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.25s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-outline {
    background: transparent; color: var(--navy);
    border: 2px solid var(--navy); padding: 12px 26px; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.25s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 28px; margin-top: 40px;
    padding-top: 32px; border-top: 1px solid var(--gray-200);
  }
  .stat-item { text-align: left; }
  .stat-num { font-size: 26px; font-weight: 800; color: var(--navy); display: block; }
  .stat-num em { color: var(--gold); font-style: normal; }
  .stat-label { font-size: 12px; color: var(--gray-500); font-weight: 400; }

  /* Hero Visual */
  .hero-visual { position: relative; }
  .hero-card-main {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
  }
  .hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
  .hc-badge {
    background: #EEF8F0; color: #2D7A3A;
    font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  }
  .hc-title { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
  .hc-sub { font-size: 13px; color: var(--gray-500); }
  .hc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
  .hc-tag {
    background: var(--gray-100); color: var(--gray-700);
    font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 6px;
  }
  .hc-divider { height: 1px; background: var(--gray-100); margin: 16px 0; }
  .hc-footer { display: flex; align-items: center; justify-content: space-between; }
  .hc-company { font-size: 13px; font-weight: 600; color: var(--navy); }
  .hc-apply {
    background: var(--navy); color: white;
    font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 8px;
    border: none; cursor: pointer; transition: background 0.2s;
  }
  .hc-apply:hover { background: var(--gold); }

  .floating-card {
    position: absolute;
    background: white; border-radius: 14px; padding: 14px 18px;
    box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
    font-size: 13px;
  }
  .fc-left { bottom: -24px; left: -32px; display: flex; align-items: center; gap: 10px; }
  .fc-right { top: -24px; right: -24px; }
  .fc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
  .fc-icon.green { background: #EEF8F0; }
  .fc-icon.gold { background: var(--gold-pale); }
  .fc-info span { display: block; }
  .fc-info .fc-big { font-size: 15px; font-weight: 700; color: var(--navy-dark); }
  .fc-info .fc-small { font-size: 11px; color: var(--gray-500); }
  .fc-right .fc-num { font-size: 22px; font-weight: 800; color: var(--gold); }
  .fc-right .fc-label { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

  /* ─── SECTION COMMON ─── */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--gold); margin-bottom: 10px;
  }
  .section-title {
    font-size: clamp(26px, 3vw, 38px); font-weight: 800;
    color: var(--navy-dark); line-height: 1.2; margin-bottom: 14px;
  }
  .section-sub { font-size: 15px; color: var(--gray-500); line-height: 1.7; max-width: 560px; }

  /* ─── HOW IT WORKS ─── */
  .how { background: var(--gray-50); }
  .how-head { text-align: center; margin-bottom: 56px; }
  .how-head .section-sub { margin: 0 auto; }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .step-card {
    background: white; border-radius: 18px; padding: 32px 28px;
    border: 1px solid var(--gray-100); position: relative;
    transition: all 0.3s;
  }
  .step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(26,58,107,0.15); }
  .step-num {
    position: absolute; top: 28px; right: 28px;
    font-size: 48px; font-weight: 800; color: var(--gray-100);
    line-height: 1; user-select: none;
  }
  .step-icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: var(--gold-pale); display: flex; align-items: center;
    justify-content: center; font-size: 24px; margin-bottom: 20px;
  }
  .step-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
  .step-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

  /* ─── SERVICES ─── */
  .services-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
  }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-card {
    border-radius: 18px; padding: 30px 26px;
    border: 1px solid var(--gray-100); background: white;
    transition: all 0.3s; cursor: default;
  }
  .service-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-md); }
  .service-card.featured { background: var(--navy); border-color: var(--navy); }
  .service-icon {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
    background: var(--gray-100);
  }
  .service-card.featured .service-icon { background: rgba(255,255,255,0.15); }
  .service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
  .service-card.featured h3 { color: white; }
  .service-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
  .service-card.featured p { color: rgba(255,255,255,0.7); }
  .service-pill {
    display: inline-block; margin-top: 16px;
    font-size: 11px; font-weight: 600; padding: 4px 12px;
    border-radius: 100px; background: var(--gold-pale); color: #9B6A0A;
  }
  .service-card.featured .service-pill { background: rgba(232,155,28,0.25); color: var(--gold-light); }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: linear-gradient(135deg, var(--navy-dark) 0%, #1e4080 100%); }
  .testimonials .section-label { color: var(--gold-light); }
  .testimonials .section-title { color: white; }
  .testi-head { text-align: center; margin-bottom: 52px; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card {
    background: rgba(255,255,255,0.08); border-radius: 18px; padding: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background 0.3s;
  }
  .testi-card:hover { background: rgba(255,255,255,0.13); }
  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
  .testi-text {
    font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.75;
    font-style: italic; margin-bottom: 20px;
  }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: var(--navy-dark);
  }
  .testi-name { font-size: 14px; font-weight: 600; color: white; }
  .testi-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

  /* ─── ABOUT PAGE ─── */
  .about-hero {
    background: linear-gradient(150deg, #F0F5FF 0%, #FEF8EC 100%);
    padding: 80px 5%; text-align: center;
  }
  .about-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: var(--navy-dark); margin-bottom: 16px; }
  .about-hero p { font-size: 16px; color: var(--gray-500); max-width: 560px; margin: 0 auto; line-height: 1.75; }

  .about-story { padding: 80px 5%; }
  .about-story .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 24px; padding: 48px 40px; color: white; position: relative; overflow: hidden;
  }
  .about-visual::before {
    content: '🤝'; font-size: 120px; position: absolute;
    right: -20px; bottom: -20px; opacity: 0.15;
  }
  .about-visual h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
  .about-visual p { font-size: 14px; line-height: 1.8; opacity: 0.85; }
  .av-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
  .av-stat { background: rgba(255,255,255,0.12); border-radius: 14px; padding: 18px; }
  .av-stat .num { font-size: 24px; font-weight: 800; color: var(--gold-light); }
  .av-stat .lbl { font-size: 12px; opacity: 0.75; margin-top: 4px; }

  .about-text h2 { font-size: 32px; font-weight: 800; color: var(--navy-dark); margin-bottom: 16px; line-height: 1.2; }
  .about-text h2 span { color: var(--gold); }
  .about-text p { font-size: 14px; color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }

  /* Values */
  .values { background: var(--gray-50); padding: 80px 5%; }
  .values-head { text-align: center; margin-bottom: 52px; }
  .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .value-card {
    background: white; border-radius: 18px; padding: 28px 22px;
    border: 1px solid var(--gray-100); text-align: center;
    transition: all 0.3s;
  }
  .value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .value-icon { font-size: 36px; margin-bottom: 14px; }
  .value-card h3 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
  .value-card p { font-size: 12px; color: var(--gray-500); line-height: 1.7; }

  /* Team */
  .team { padding: 80px 5%; }
  .team-head { text-align: center; margin-bottom: 52px; }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .team-card {
    border-radius: 18px; overflow: hidden;
    border: 1px solid var(--gray-100); text-align: center;
    transition: all 0.3s;
  }
  .team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .team-photo {
    height: 140px; display: flex; align-items: center; justify-content: center;
    font-size: 52px; font-weight: 800;
  }
  .team-info { padding: 20px; }
  .team-name { font-size: 15px; font-weight: 700; color: var(--navy-dark); }
  .team-role { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

  /* ─── CONTACT PAGE ─── */
  .contact-hero {
    background: linear-gradient(150deg, #F0F5FF 0%, #FEF8EC 100%);
    padding: 80px 5%; text-align: center;
  }
  .contact-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: var(--navy-dark); margin-bottom: 16px; }
  .contact-hero p { font-size: 16px; color: var(--gray-500); max-width: 480px; margin: 0 auto; }

  .contact-body { padding: 80px 5%; }
  .contact-body .section-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }

  .contact-info h2 { font-size: 26px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
  .contact-info > p { font-size: 14px; color: var(--gray-500); line-height: 1.75; margin-bottom: 32px; }

  .info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
  .info-item { display: flex; gap: 16px; align-items: flex-start; }
  .info-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--gold-pale); display: flex; align-items: center;
    justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .info-content strong { font-size: 13px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 2px; }
  .info-content span { font-size: 13px; color: var(--gray-500); }

  .social-row { display: flex; gap: 10px; margin-top: 24px; }
  .social-btn {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--gray-100); border: none; cursor: pointer;
    font-size: 16px; transition: all 0.2s; display: flex; align-items: center; justify-content: center;
  }
  .social-btn:hover { background: var(--navy); color: white; transform: translateY(-2px); }

  /* Form */
  .contact-form-wrap {
    background: white; border-radius: 24px; padding: 40px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  }
  .form-title { font-size: 20px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
  .form-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 12px; font-weight: 600; color: var(--gray-700); }
  .form-group input, .form-group select, .form-group textarea {
    font-family: 'Poppins', sans-serif;
    border: 1.5px solid var(--gray-200); border-radius: 10px;
    padding: 12px 14px; font-size: 13px; color: var(--text);
    background: var(--gray-50); transition: all 0.2s;
    outline: none; width: 100%;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--navy-light); background: white;
    box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit { width: 100%; padding: 14px; border-radius: 12px; margin-top: 8px; font-size: 15px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy-dark); color: white; padding: 56px 5% 28px;
  }
  .footer-brand .logo-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand .logo-icon { background: rgba(255,255,255,0.12); }
  .footer-brand .logo-text span:first-child { color: white; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 14px; max-width: 240px; }
  .footer-col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-bottom span { color: var(--gold); }

  /* ─── FORM VALIDATION ─── */
  .field-error {
    display: block; font-size: 11px; color: #C0392B;
    margin-top: 5px; min-height: 16px; font-weight: 500;
  }
  .form-group input.invalid,
  .form-group select.invalid,
  .form-group textarea.invalid {
    border-color: #E74C3C !important;
    background: #FFF5F5 !important;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1) !important;
  }
  .form-group input.valid,
  .form-group select.valid,
  .form-group textarea.valid {
    border-color: #27AE60 !important;
    background: white !important;
  }
  #submitBtn:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }

  /* ─── TOAST ─── */
  .toast {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    background: var(--navy); color: white;
    padding: 14px 22px; border-radius: 12px;
    font-size: 14px; font-weight: 500;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    transform: translateY(80px); opacity: 0;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.6s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero-inner, .about-story .section-inner, .contact-body .section-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero {
      min-height: unset;
      padding: 40px 5%;
      align-items: flex-start;
    }
    .hero-inner { gap: 0; }
    .hero-stats { gap: 20px; }
    .steps-grid, .services-grid, .testi-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .hero { padding: 32px 5%; }
    .steps-grid, .services-grid, .testi-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }