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

    :root {
      --blue: #143D7A;
      --blue2: #1F4F97;
      --gold: #D4A43A;
      --gold-light: #E8C56A;
      --white: #FFFFFF;
      --bg: #F7F9FC;
      --dark: #222222;
      --mid: #4A5568;
      --light: #718096;
      --border: #E2E8F0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-pad { padding: 96px 0; }
    .section-pad-sm { padding: 64px 0; }

    /* Section header with left gold bar */
    .sh {
      margin-bottom: 52px;
    }
    .sh .tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .sh h2 {
      font-size: clamp(26px, 3.2vw, 40px);
      color: var(--blue);
      border-left: 4px solid var(--gold);
      padding-left: 18px;
      line-height: 1.15;
    }
    .sh p {
      font-size: 15px;
      color: var(--mid);
      margin-top: 14px;
      padding-left: 22px;
      max-width: 540px;
    }
    .sh.center { text-align: center; }
    .sh.center h2 { border-left: none; padding-left: 0; }
    .sh.center::after {
      content: '';
      display: block;
      width: 52px;
      height: 3px;
      background: var(--gold);
      margin: 16px auto 0;
    }
    .sh.center p { padding-left: 0; margin: 12px auto 0; }

    /* Buttons — sharp, no radius */
    .btn-gold {
      display: inline-block;
      background: var(--gold);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-gold:hover { background: #B8892E; transform: translateY(-1px); }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 13px 32px;
      border: 1.5px solid rgba(255,255,255,0.5);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    /* ─── NAVIGATION ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--white);
      border-top: 3px solid var(--gold);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
    .logo-svg { width: 38px; height: auto; flex-shrink: 0; }
    .logo-text { display: flex; flex-direction: column; }
    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--blue);
      line-height: 1;
      letter-spacing: 0.5px;
    }
    .logo-sub {
      font-family: 'Inter', sans-serif;
      font-size: 8.5px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--light);
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--blue); }

    .nav-cta { margin-left: 8px; font-size: 13px !important; padding: 10px 22px !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--blue);
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 12px 24px 20px;
    }
    .mobile-menu a {
      font-size: 15px;
      font-weight: 500;
      color: var(--mid);
      text-decoration: none;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu .btn-gold { margin-top: 14px; text-align: center; }

    /* ─── HERO ─── */
    .hero {
      margin-top: 71px;
      background: linear-gradient(135deg, #0D2E60 0%, var(--blue) 55%, var(--blue2) 100%);
      position: relative;
      overflow: hidden;
      min-height: 620px;
      display: flex;
      align-items: center;
    }

    #particles-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      padding: 72px 0;
    }

    .hero-content { color: var(--white); max-width: 720px; text-align: center; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-left: 3px solid var(--gold);
      padding-left: 12px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .hero h1 em { color: var(--gold-light); font-style: italic; }

    .hero-company {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 16px;
      color: rgba(255,255,255,0.70);
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.75;
    }

    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

    /* Hero right panel */
    .hero-panel {
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.05);
    }

    .hero-panel-header {
      background: var(--gold);
      padding: 12px 24px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
    }

    .hero-stat {
      padding: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .hero-stat:last-child { border-bottom: none; }

    .hero-stat-icon {
      width: 40px; height: 40px;
      background: rgba(212,164,58,0.15);
      border: 1px solid rgba(212,164,58,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-light);
      font-size: 16px;
      flex-shrink: 0;
    }

    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-num span { color: var(--gold-light); font-size: 20px; }

    .hero-stat-label {
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 3px;
    }

    /* ─── PILLARS ─── */
    .pillars { background: var(--blue); }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .pillar-card {
      padding: 48px 36px;
      border-right: 1px solid rgba(255,255,255,0.08);
      position: relative;
      transition: background 0.2s;
    }
    .pillar-card:last-child { border-right: none; }
    .pillar-card:hover { background: rgba(255,255,255,0.04); }

    .pillar-num {
      font-family: 'Playfair Display', serif;
      font-size: 64px;
      font-weight: 700;
      color: rgba(255,255,255,0.05);
      position: absolute;
      top: 20px; right: 24px;
      line-height: 1;
    }

    .pillar-icon {
      width: 52px; height: 52px;
      background: rgba(212,164,58,0.15);
      border: 1px solid rgba(212,164,58,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-light);
      font-size: 22px;
      margin-bottom: 20px;
    }

    .pillar-divider {
      width: 32px; height: 2px;
      background: var(--gold);
      margin: 14px 0 18px;
    }

    .pillar-card h3 { font-size: 24px; color: var(--white); margin-bottom: 0; }
    .pillar-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* ─── SERVICES ─── */
    .services { background: var(--bg); }
    .services-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
    }

    .svc-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 32px 28px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--white);
      transition: background 0.2s;
      position: relative;
    }
    .svc-item:hover { background: var(--bg); }
    .svc-item:hover .svc-icon { background: var(--blue); color: var(--gold); }

    .svc-big-num {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 700;
      color: rgba(20,61,122,0.07);
      line-height: 1;
      min-width: 52px;
      margin-top: -4px;
    }

    .svc-icon {
      width: 44px; height: 44px;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue);
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 2px;
      transition: background 0.2s, color 0.2s;
    }

    .svc-body h4 {
      font-size: 16px;
      color: var(--blue);
      margin-bottom: 8px;
      font-family: 'Playfair Display', serif;
    }
    .svc-body p { font-size: 13.5px; color: var(--light); line-height: 1.65; margin-bottom: 0; }

    /* ─── ABOUT ─── */
    .about { background: var(--white); }

    .about-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .about-content { max-width: 760px; }

    .about-content .tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }

    .about-content .name {
      font-size: 36px;
      color: var(--blue);
      margin-bottom: 4px;
    }

    .about-content .role {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 0;
    }

    .rule {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin: 24px 0;
      position: relative;
    }
    .rule::before {
      content: '';
      position: absolute;
      left: 50%; top: -1px;
      width: 56px; height: 3px;
      background: var(--gold);
      transform: translateX(-50%);
    }

    .about-content p {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      margin-top: 28px;
    }
    .mvv-card {
      background: var(--bg);
      padding: 20px 18px;
    }
    .mvv-card { text-align: center; }
    .mvv-card h5 {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      color: var(--blue);
      margin-bottom: 6px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 8px;
    }
    .mvv-card p { font-size: 12.5px; color: var(--light); line-height: 1.6; }

    .about-photo {
      aspect-ratio: 3/4;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--light);
      font-size: 13px;
      position: relative;
    }
    .about-photo::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: -8px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--gold);
      opacity: 0.3;
      pointer-events: none;
    }
    .about-photo i { font-size: 64px; opacity: 0.2; }

    /* ─── WHY US ─── */
    .why-us { background: var(--bg); }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
    }

    .why-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 28px 24px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--white);
      transition: background 0.2s;
    }
    .why-item:hover { background: var(--bg); }

    .why-icon {
      width: 40px; height: 40px;
      background: var(--blue);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0;
    }

    .why-item h4 {
      font-size: 14.5px;
      color: var(--blue);
      margin-bottom: 5px;
      font-family: 'Playfair Display', serif;
    }
    .why-item p { font-size: 13px; color: var(--light); line-height: 1.65; }

    /* ─── PROCESS — vertical timeline ─── */
    .process { background: var(--white); }

    .timeline {
      position: relative;
      max-width: 720px;
      margin: 0 auto;
      padding-left: 0;
    }

    .timeline-track {
      position: absolute;
      left: 30px;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), rgba(212,164,58,0.1));
    }

    .tl-item {
      display: flex;
      gap: 36px;
      align-items: flex-start;
      margin-bottom: 0;
      padding: 0 0 0 88px;
      position: relative;
    }

    .tl-dot {
      position: absolute;
      left: 8px;
      top: 24px;
      width: 44px; height: 44px;
      background: var(--blue);
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold);
      flex-shrink: 0;
    }

    .tl-content {
      flex: 1;
      padding: 24px 28px;
      border: 1px solid var(--border);
      border-left: 3px solid var(--gold);
      margin-bottom: 20px;
      background: var(--bg);
    }
    .tl-content h4 {
      font-size: 16px;
      color: var(--blue);
      margin-bottom: 8px;
      font-family: 'Playfair Display', serif;
    }
    .tl-content p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }

    /* ─── STATS ─── */
    .stats { background: var(--blue); }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-card {
      padding: 52px 32px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
      position: relative;
    }
    .stat-card:last-child { border-right: none; }
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 32px;
      height: 3px;
      background: var(--gold);
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-num span { color: var(--gold-light); }

    .stat-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials { background: var(--bg); }
    .testi-outer { overflow: hidden; }
    .testi-grid {
      display: flex;
      gap: 24px;
      width: max-content;
      margin-top: 0;
      animation: testi-scroll 50s linear infinite reverse;
    }
    .testi-outer:hover .testi-grid { animation-play-state: paused; }

    @keyframes testi-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 3px solid var(--gold);
      padding: 32px 28px;
      width: 340px;
      flex-shrink: 0;
      position: relative;
    }

    .testi-quote {
      font-family: 'Playfair Display', serif;
      font-size: 72px;
      color: var(--gold);
      opacity: 0.2;
      line-height: 0.7;
      margin-bottom: 16px;
    }

    .stars { color: var(--gold); font-size: 12px; margin-bottom: 14px; }

    .testi-card p {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 40px; height: 40px;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--light); font-size: 18px;
    }
    .testi-name { font-weight: 600; font-size: 14px; color: var(--blue); }
    .testi-role { font-size: 12px; color: var(--light); }

    /* ─── FAQ ─── */
    .faq { background: var(--white); }
    .faq-list { max-width: 800px; margin: 0 auto; }

    .faq-item { border-bottom: 1px solid var(--border); }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 20px 0;
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      color: var(--blue);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .faq-icon {
      width: 28px; height: 28px;
      flex-shrink: 0;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 11px;
      transition: background 0.2s, color 0.2s;
    }
    .faq-item.open .faq-icon { background: var(--blue); color: var(--gold); }
    .faq-item.open .faq-icon i { transform: rotate(45deg); }
    .faq-icon i { transition: transform 0.3s; }

    .faq-a {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
    .faq-a p { font-size: 14.5px; color: var(--mid); line-height: 1.75; padding-left: 0; }

    /* ─── CONTACT ─── */
    .contact { background: var(--bg); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 64px;
      margin-top: 0;
    }

    .contact-info h4 {
      font-size: 18px;
      color: var(--blue);
      margin-bottom: 28px;
      font-family: 'Playfair Display', serif;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }
    .contact-icon {
      width: 38px; height: 38px;
      background: var(--blue);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 14px;
      flex-shrink: 0;
    }
    .contact-item .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--light); margin-bottom: 2px; }
    .contact-item .val { font-size: 14px; color: var(--mid); }
    a.contact-link { text-decoration: none; }
    a.contact-link:hover { color: var(--blue); text-decoration: underline; }

    .wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: white;
      font-size: 14px;
      font-weight: 600;
      padding: 12px 22px;
      text-decoration: none;
      margin-top: 8px;
      transition: background 0.2s;
    }
    .wa-btn:hover { background: #1ebe5d; }

    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--mid);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      border: 1px solid var(--border);
      border-left: 3px solid var(--border);
      padding: 11px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--dark);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-left-color: var(--gold); border-color: var(--blue); }
    .form-group textarea { resize: vertical; min-height: 96px; }
    .field-optional { text-transform: none; font-weight: 400; letter-spacing: 0; color: var(--light); }

    .phone-input-group { display: flex; }
    .phone-prefix {
      display: flex; align-items: center;
      border: 1px solid var(--border);
      border-right: none;
      background: var(--bg);
      color: var(--mid);
      font-size: 14px;
      padding: 0 12px;
    }
    .phone-input-group input { border-left: 1px solid var(--border); flex: 1; min-width: 0; }
    .phone-input-group input:focus { border-left-color: var(--blue); }

    .service-options { display: flex; flex-wrap: wrap; gap: 8px; }
    .service-chip {
      display: inline-flex; align-items: center;
      border: 1px solid var(--border);
      padding: 7px 12px;
      font-size: 12.5px;
      color: var(--mid);
      cursor: pointer;
      user-select: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .service-chip input { position: absolute; opacity: 0; pointer-events: none; }
    .service-chip:has(input:checked) { background: var(--blue); border-color: var(--blue); color: var(--white); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--blue);
      color: rgba(255,255,255,0.65);
      border-top: 3px solid var(--gold);
      padding: 64px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 48px;
      padding-bottom: 48px;
    }

    .footer-brand .logo-name { color: var(--white); font-size: 18px; }
    .footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
    .footer-brand p { font-size: 13px; margin-top: 14px; line-height: 1.75; max-width: 260px; }

    .footer-col h5 {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul li a {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--white); }

    .footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; text-decoration: none; }
    .footer-contact-item i { color: var(--gold); font-size: 12px; margin-top: 2px; }
    .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-contact-item:hover span { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
    .footer-bottom-links { display: flex; gap: 18px; }
    .footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

    /* ─── SCROLL ANIMATION ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1200px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .services-list { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 1024px) {
      .hero-content { max-width: 560px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; gap: 36px; }
      .timeline { max-width: 100%; }
    }

    @media (max-width: 768px) {
      .section-pad { padding: 44px 0; }
      .section-pad-sm { padding: 32px 0; }
      .hero { min-height: calc(100svh - 71px); padding: 0; }
      .hero-inner { padding: 40px 0 32px; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: none; flex-direction: column; }
      .mobile-menu.open { display: flex; }
      .pillars-grid { grid-template-columns: 1fr; }
      .pillar-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 24px; }
      .pillar-card:last-child { border-bottom: none; }
      .services-list { grid-template-columns: 1fr; }
      .svc-item { padding: 20px 16px; gap: 14px; }
      .svc-big-num { font-size: 36px; min-width: 36px; }
      .svc-icon { width: 36px; height: 36px; font-size: 15px; }
      .why-grid { grid-template-columns: 1fr; }
      .why-item { padding: 18px 16px; }
      .mvv-grid { grid-template-columns: 1fr; }
      .testi-outer { margin: 0 -14px; }
      .testi-grid { gap: 12px; animation-duration: 32s; }
      .testi-card { width: 256px; padding: 20px 16px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-card { padding: 32px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .stat-num { font-size: 36px; }
      .footer-grid { grid-template-columns: 1fr; gap: 20px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      footer { padding: 36px 0 0; }
      .tl-item { padding-left: 0; flex-direction: column; margin-bottom: 4px; }
      .tl-dot { position: static; margin-bottom: 12px; }
      .timeline-track { display: none; }
      .tl-content { margin-bottom: 16px; }
      .faq-q { font-size: 14px; padding: 16px 0; }
      .sh { margin-bottom: 28px; }
    }

    @media (max-width: 480px) {
      .section-pad { padding: 28px 0; }
      .section-pad-sm { padding: 20px 0; }
      .container { padding: 0 14px; }
      .hero-inner { padding: 28px 0 20px; }
      .hero h1 { font-size: clamp(26px, 8vw, 36px); }
      .hero-btns { flex-direction: column; }
      .hero-btns a { text-align: center; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-num { font-size: 30px; }
      .form-row { grid-template-columns: 1fr; }
      .logo-name { font-size: 17px; }
      .footer-bottom-links { flex-wrap: wrap; gap: 10px; }
      .testi-card { width: 228px; }
    }
