:root {
    --navy: #1B2E5E;
    --orange: #F47B20;
    --orange-light: #FF9A45;
    --navy-light: #243872;
    --white: #FFFFFF;
    --off-white: #F8F9FF;
    --text-dark: #111827;
    --text-mid: #374151;
    --text-light: #6B7280;
    --border: #E5E9FF;
    --nav-h: 90px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5 { font-family: 'Quicksand', sans-serif; }

  /* =========================================================
     TOP BAR (tablet/mobile only)
  ========================================================= */
  #top-bar {
    display: none;
    background: var(--navy);
    padding: 8px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
  }
  .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .top-bar-item:hover { color: var(--orange); }
  .top-bar-item i { color: var(--orange); font-size: 12px; }
  @media (max-width: 900px) {
    #top-bar { display: block; }
    #navbar-wrap { top: 40px; }
    .hero { margin-top: calc(var(--nav-h) + 40px); }
    .mobile-menu { top: calc(var(--nav-h) + 40px); }
  }
  @media (max-width: 480px) {
    #top-bar { padding: 8px 16px; font-size: 12px; }
    #top-bar .top-bar-inner { gap: 14px; }
  }

  /* =========================================================
     NAVBAR
  ========================================================= */
  #navbar-wrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  #navbar-wrap.scrolled { box-shadow: 0 4px 24px rgba(27,46,94,0.1); }

  .nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    height: var(--nav-h);
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-self: start;
  }
  .nav-logo img { height: 80px; width: auto; object-fit: contain; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
    justify-self: center;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--orange); }

  .nav-cta-wrap { justify-self: end; }

  .btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(244,123,32,0.35);
    white-space: nowrap;
  }
  .btn-nav:hover { background: #d96a10; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(244,123,32,0.45); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    justify-self: end;
  }
  .hamburger span {
    display: block;
    width: 25px; height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.99);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block;
    padding: 13px 16px;
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-menu a:hover { background: rgba(244,123,32,0.08); color: var(--orange); }
  .mobile-menu .mobile-cta {
    margin-top: 8px;
    background: var(--orange);
    color: #fff !important;
    text-align: center;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
  }

  /* =========================================================
     SHARED
  ========================================================= */
  .section-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .section-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 580px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(244,123,32,0.4);
  }
  .btn-primary:hover { background: #d96a10; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(244,123,32,0.5); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.2s, transform 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

  /* =========================================================
     HERO
  ========================================================= */
  .hero {
    margin-top: var(--nav-h);
    min-height: calc(100vh - var(--nav-h));
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero-bg-img {
    position: absolute; inset: 0;
    background-image: url('https://images.pexels.com/photos/7821577/pexels-photo-7821577.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 70% 30%, rgba(244,123,32,0.18) 0%, transparent 50%),
      radial-gradient(circle at 10% 80%, rgba(244,123,32,0.1) 0%, transparent 40%);
    z-index: 1;
  }
  .hero-dots {
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
  }
  .hero-inner {
    max-width: 1600px; width: 100%; margin: 0 auto;
    padding: clamp(60px,8vh,100px) 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 36px; position: relative; z-index: 2;
  }
  .hero-content { flex: 1; max-width: 680px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,123,32,0.15);
    border: 1px solid rgba(244,123,32,0.4);
    color: var(--orange-light);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 1.8s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
  }
  .hero-title .highlight { color: var(--orange); }

  .hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 520px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-visual { flex: 1; max-width: 560px; display: flex; flex-direction: column; gap: 16px; }
  .hero-cards-row { display: flex; gap: 16px; }

  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px 20px;
    flex: 1;
    backdrop-filter: blur(8px);
    transition: transform 0.2s;
  }
  .hero-card:hover { transform: translateY(-3px); }
  .hero-card.accent { background: var(--orange); border-color: transparent; }

  .hero-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff;
    margin-bottom: 12px;
  }
  .hero-card h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
  .hero-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
  .hero-card.accent p { color: rgba(255,255,255,0.85); }

  .hero-stats { display: flex; gap: 16px; }
  .stat-pill {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px; text-align: center;
  }
  .stat-pill .stat-num { font-family: 'DM Sans', sans-serif; font-size: 26px; font-weight: 900; color: var(--orange); line-height: 1; }
  .stat-pill .stat-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 4px; }

  /* =========================================================
     STRIP
  ========================================================= */
  .strip { background: var(--orange); padding: 28px 40px; }
  .strip-inner {
    max-width: 1600px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: clamp(20px,4vw,60px); flex-wrap: wrap;
  }
  .strip-item {
    display: flex; align-items: center; gap: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700; font-size: 15px;
    white-space: nowrap;
  }
  .strip-item .icon-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #fff;
  }
  .strip-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.35); }

  /* =========================================================
     WHAT WE DO
  ========================================================= */
  .section { padding: clamp(70px,9vh,110px) 40px; max-width: 1600px; margin: 0 auto; }

  .what-layout { display: flex; gap: clamp(40px,6vw,90px); align-items: center; }
  .what-left { flex: 1; }
  .what-right { flex: 1; display: flex; flex-direction: column; gap: 16px; }

  .what-img-block {
    border-radius: 24px; overflow: hidden;
    position: relative; margin-top: 36px;
  }
  .what-img-block img { width: 100%; height: 260px; object-fit: cover; display: block; }
  .what-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(27,46,94,0.85), transparent);
    padding: 28px 24px 20px;
    color: #fff; font-family: 'DM Sans', sans-serif;
    font-size: 17px; font-weight: 700;
  }

  .what-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 22px 24px; border-radius: 16px;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
  }
  .what-item:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(244,123,32,0.1); transform: translateX(4px); }

  .what-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 12px; background: rgba(244,123,32,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--orange);
  }
  .what-item h4 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .what-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

  .about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
  .about-pill { background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 50px; font-family: 'Quicksand', sans-serif; }

  /* =========================================================
     SERVICES
  ========================================================= */
  .services-bg { background: var(--off-white); }
  .services-section { padding: clamp(70px,9vh,110px) 40px; max-width: 1600px; margin: 0 auto; }
  .services-header { text-align: center; margin-bottom: 60px; }
  .services-header .section-sub { max-width: 520px; margin: 0 auto; }

  .services-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .service-card {
    flex: 1; min-width: 280px;
    background: #fff; border-radius: 24px;
    padding: 36px 28px;
    border: 1.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--orange);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,46,94,0.1); border-color: transparent; }
  .service-card.featured { background: var(--navy); border-color: transparent; }
  .service-card.featured::before { background: var(--orange-light); }

  .service-icon-wrap {
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(244,123,32,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--orange);
    margin-bottom: 20px;
  }
  .service-card.featured .service-icon-wrap { background: rgba(244,123,32,0.25); }
  .service-card h3 { font-family: 'DM Sans', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
  .service-card.featured h3 { color: #fff; }
  .service-card .service-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.65); }

  .service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .service-list li { font-size: 13.5px; color: var(--text-mid); display: flex; align-items: center; gap: 10px; font-weight: 600; }
  .service-card.featured .service-list li { color: rgba(255,255,255,0.8); }
  .service-list li i { color: var(--orange); font-size: 11px; }

  /* =========================================================
     WHY CHOOSE US
  ========================================================= */
  .why-layout { display: flex; gap: clamp(40px,6vw,90px); align-items: center; }
  .why-visual { flex: 1; }

  .why-big-card {
    background: var(--navy); border-radius: 28px;
    padding: 48px 40px; position: relative; overflow: hidden;
  }
  .why-big-card-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(244,123,32,0.2) 0%, transparent 60%);
  }
  .why-big-card-content { position: relative; z-index: 1; }
  .why-big-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(26px,3vw,36px); font-weight: 900; color: #fff;
    margin-bottom: 16px; line-height: 1.2;
  }
  .why-big-card h3 span { color: var(--orange); }
  .why-big-card p { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 15px; margin-bottom: 32px; }

  .why-tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .why-tag {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 13px; font-weight: 700;
    padding: 7px 16px; border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    display: flex; align-items: center; gap: 6px;
  }
  .why-tag i { color: var(--orange-light); font-size: 12px; }

  .why-float-badge {
    background: var(--orange); color: #fff;
    border-radius: 20px; padding: 20px 24px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(244,123,32,0.4);
    display: inline-block; margin-top: 20px; float: right;
  }
  .why-float-badge .big-num { font-family: 'DM Sans', sans-serif; font-size: 36px; font-weight: 900; line-height: 1; }
  .why-float-badge .small-text { font-size: 12px; font-weight: 700; opacity: 0.85; margin-top: 4px; }

  .why-right { flex: 1; display: flex; flex-direction: column; }

  .why-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 28px 0; border-bottom: 1px solid var(--border);
  }
  .why-item:first-of-type { padding-top: 0; }
  .why-item:last-child { border-bottom: none; }

  .why-num {
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 800;
    color: var(--orange); background: rgba(244,123,32,0.1);
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .why-item h4 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
  .why-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

  /* =========================================================
     ABOUT
  ========================================================= */
  .about-section { padding: clamp(70px,9vh,110px) 40px; max-width: 1600px; margin: 0 auto; }
  .about-layout { display: flex; gap: clamp(40px,6vw,90px); align-items: center; }
  .about-left { flex: 1; }
  .about-right { flex: 1.1; }

  .about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-img-grid img { width: 100%; border-radius: 18px; object-fit: cover; display: block; }
  .about-img-grid img:nth-child(1) { height: 220px; }
  .about-img-grid img:nth-child(2) { height: 220px; margin-top: 32px; }
  .about-img-grid img:nth-child(3) { grid-column: 1 / -1; height: 180px; }

  .about-mission {
    background: rgba(244,123,32,0.08);
    border-left: 4px solid var(--orange);
    padding: 20px 24px; border-radius: 0 12px 12px 0;
    margin: 28px 0;
  }
  .about-mission p { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-style: italic; }

  /* =========================================================
     VALUES
  ========================================================= */
  .values-bg { background: var(--navy); }
  .values-section { padding: clamp(70px,9vh,110px) 40px; max-width: 1600px; margin: 0 auto; }
  .values-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
  .values-header .section-title { color: #fff; margin-bottom: 0; }
  .values-header .section-label { color: var(--orange-light); }
  .values-header-right { max-width: 360px; font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; }

  .values-cards { display: flex; gap: 20px; flex-wrap: wrap; }
  .value-card {
    flex: 1; min-width: 180px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 32px 24px;
    transition: background 0.25s, transform 0.25s;
  }
  .value-card:hover { background: rgba(244,123,32,0.15); transform: translateY(-4px); }

  .value-num { font-family: 'DM Sans', sans-serif; font-size: 42px; font-weight: 900; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 16px; }
  .value-icon { font-size: 24px; color: var(--orange-light); margin-bottom: 14px; }
  .value-card h4 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; }
  .value-card p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; }

  /* =========================================================
     CTA BANNER
  ========================================================= */
  .cta-outer { background: var(--off-white); padding: clamp(70px,9vh,110px) 40px clamp(70px,9vh,110px); }

  .cta-banner {
    max-width: 1600px; margin: 0 auto;
    background: var(--orange); border-radius: 32px;
    padding: clamp(48px,6vw,72px) clamp(40px,5vw,80px);
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; position: relative; overflow: hidden; flex-wrap: wrap;
  }
  .cta-banner-bg { position: absolute; inset: 0; background: radial-gradient(circle at 90% 50%, rgba(255,255,255,0.1) 0%, transparent 50%); }
  .cta-banner-content { position: relative; z-index: 1; }
  .cta-banner h2 { font-family: 'DM Sans', sans-serif; font-size: clamp(26px,3vw,40px); font-weight: 900; color: #fff; margin-bottom: 12px; line-height: 1.2; }
  .cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; }

  .cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

  .btn-white {
    background: #fff; color: var(--orange);
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  .btn-outline-white {
    background: transparent; color: #fff;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
    padding: 14px 28px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, border-color 0.2s; white-space: nowrap;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); }

  /* =========================================================
     FOOTER
  ========================================================= */
  footer { background: var(--navy); padding: clamp(60px,8vw,100px) 40px 0; }
  .footer-inner { max-width: 1600px; margin: 0 auto; }
  .footer-top { display: flex; gap: clamp(40px,6vw,80px); margin-bottom: 60px; flex-wrap: wrap; }

  .footer-brand { flex: 1.5; min-width: 240px; }
  .footer-brand img { height: 56px; width: auto; object-fit: contain; margin-bottom: 16px; }
  .footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; max-width: 280px; }

  .footer-col { flex: 1; min-width: 160px; }
  .footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 800; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .footer-links a:hover { color: var(--orange); }

  .footer-contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500; margin-bottom: 14px; }
  .footer-contact-item .icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--orange); flex-shrink: 0;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
  .footer-bottom p span { color: var(--orange); }

  /* =========================================================
     SCROLLBAR
  ========================================================= */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

  /* =========================================================
     RESPONSIVE
  ========================================================= */
  @media (max-width: 1100px) {
    .nav-links { gap: 24px; }
  }
  /* ── Tablet: 768px – 900px ── */
  @media (max-width: 900px) {
    :root { --nav-h: 70px; }
    .nav-inner { grid-template-columns: 1fr auto; padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta-wrap { display: none; }
    .hamburger { display: flex; }
    .nav-logo img { height: 62px; }

    .hero-inner { flex-direction: column; text-align: center; padding: 48px 24px; }
    .hero-content { max-width: 100%; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-ctas { justify-content: center; }
    .hero-visual { max-width: 100%; width: 100%; }

    .section { padding-left: 24px; padding-right: 24px; }
    .services-section { padding-left: 24px; padding-right: 24px; }
    .values-section { padding-left: 24px; padding-right: 24px; }
    .about-section { padding-left: 24px; padding-right: 24px; }
    .cta-outer { padding-left: 24px; padding-right: 24px; }
    footer { padding-left: 24px; padding-right: 24px; }

    .what-layout, .why-layout, .about-layout { flex-direction: column; }
    .strip-divider { display: none; }

    /* Services: 2-col grid on tablet */
    .services-row { grid-template-columns: 1fr 1fr; gap: 20px; }
    .service-card { min-width: unset; }

    /* Values: 2-col grid on tablet */
    .values-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .value-card { min-width: unset; }

    /* Footer: strict 2-col, brand + services on row 1, company + contact on row 2 */
    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "brand services"
        "company contact";
      gap: 32px 40px;
    }
    .footer-brand { grid-area: brand; min-width: unset; }
    .footer-col:nth-child(2) { grid-area: services; }
    .footer-col:nth-child(3) { grid-area: company; }
    .footer-col:nth-child(4) { grid-area: contact; }

    /* CTA banner */
    .cta-banner { flex-direction: column; text-align: center; align-items: center; padding: 40px 32px; }
    .cta-banner-actions { justify-content: center; }

    /* About image grid: 2-col stays but equal */
    .about-img-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── Mobile: up to 628px ── */
  @media (max-width: 628px) {
    .hero-cards-row { flex-direction: column; }
    .values-header { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Services: single column */
    .services-row { grid-template-columns: 1fr; }
    /* Values: single column */
    .values-cards { grid-template-columns: 1fr; }

    /* Footer: single column */
    .footer-top { display: flex; flex-direction: column; gap: 32px; }
    .footer-brand { grid-area: unset; min-width: unset; }
    .footer-col:nth-child(2),
    .footer-col:nth-child(3),
    .footer-col:nth-child(4) { grid-area: unset; }

    /* About image grid: single column */
    .about-img-grid { grid-template-columns: 1fr; }
    .about-img-grid img:nth-child(2) { margin-top: 0; }
    .about-img-grid img:nth-child(3) { grid-column: auto; }
  }

  /* ── Phone: up to 480px ── */
  @media (max-width: 480px) {
    .nav-inner { padding: 0 16px; }
    .nav-logo img { height: 60px; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .cta-banner-actions { flex-direction: column; align-items: center; }

    .section { padding-left: 16px; padding-right: 16px; }
    .hero-inner { padding-left: 16px; padding-right: 16px; }
    .strip { padding-left: 16px; padding-right: 16px; }
    .services-section { padding-left: 16px; padding-right: 16px; }
    .values-section { padding-left: 16px; padding-right: 16px; }
    .about-section { padding-left: 16px; padding-right: 16px; }
    .cta-outer { padding-left: 16px; padding-right: 16px; }
    .cta-banner { padding-left: 20px; padding-right: 20px; }
    footer { padding-left: 16px; padding-right: 16px; }
    .mobile-menu { padding-left: 16px; padding-right: 16px; }
  }