  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0d1f35;
    --navy-mid: #162d4a;
    --navy-light: #1e3f63;
    --orange: #e8701a;
    --orange-dark: #c45a0d;
    --orange-light: #f5873a;
    --steel: #8aa5be;
    --cream: #f7f4ef;
    --white: #ffffff;
    --gray-light: #eef1f5;
    --gray-mid: #c4cdd8;
    --text-dark: #0d1f35;
    --text-mid: #3a5068;
    --text-muted: #7a92a8;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Lato', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    border-bottom: 3px solid var(--orange);
  }

  .logo {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    text-decoration: none;
  }

  .logo span { color: var(--orange); }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--orange-light); }

  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('img/img-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex; align-items: center;
    padding: 80px 5%;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  }

  .hero::after {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,112,26,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 680px;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(232,112,26,0.18);
    border: 1px solid var(--orange);
    color: var(--orange-light);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 3px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(52px, 7vw, 86px);
    font-weight: 800;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--orange);
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--steel);
    max-width: 520px;
    margin-bottom: 40px;
  }

  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  }

  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--steel);
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1.5px solid rgba(138,165,190,0.4);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover { border-color: var(--steel); color: var(--white); }

  .hero-stats {
    display: flex; gap: 48px; margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
  }

  .stat-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
  }

  .stat-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--steel);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ── STRIP ── */
  .trust-strip {
    background: var(--orange);
    padding: 18px 5%;
    display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
  }

  .trust-item {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .trust-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
  }

  /* ── SERVICES ── */
  section { padding: 90px 5%; }

  .section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
    margin-bottom: 56px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    border: 2px solid var(--gray-light);
    overflow: hidden;
    border-radius: 8px;
  }

  .service-card {
    background: var(--white);
    padding: 40px 36px;
    border: 1px solid var(--gray-light);
    position: relative;
    transition: background 0.25s;
    cursor: default;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 3px; width: 0;
    background: var(--orange);
    transition: width 0.3s ease;
  }

  .service-card:hover { background: var(--cream); }
  .service-card:hover::before { width: 100%; }

  .service-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(232,112,26,0.1);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }

  .service-icon-wrap svg { width: 26px; height: 26px; }

  .service-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }

  .service-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-mid);
    font-weight: 300;
  }

  /* ── WHY US ── */
  .why-section {
    background: var(--navy);
    padding: 90px 5%;
  }

  .why-section .section-title { color: var(--white); }
  .why-section .section-sub { color: var(--steel); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 56px;
  }

  .why-card {
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    position: relative;
    transition: border-color 0.2s;
  }

  .why-card:hover { border-color: rgba(232,112,26,0.5); }

  .why-num {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 800;
    color: rgba(232,112,26,0.15);
    line-height: 1;
    margin-bottom: 16px;
  }

  .why-card h4 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--steel);
    font-weight: 300;
  }

  /* ── PROCESS ── */
  .process-section { background: var(--gray-light); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: var(--orange);
    opacity: 0.3;
    z-index: 0;
  }

  .step {
    text-align: center;
    padding: 0 24px;
    position: relative; z-index: 1;
  }

  .step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--orange);
  }

  .step h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .step p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-mid);
    font-weight: 300;
  }

  /* ── TESTIMONIALS ── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
  }

  .review-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
  }

  .review-card::before {
    content: '"';
    font-family: var(--font-head);
    font-size: 80px;
    color: var(--orange);
    opacity: 0.15;
    position: absolute;
    top: 12px; left: 20px;
    line-height: 1;
  }

  .stars {
    display: flex; gap: 3px;
    margin-bottom: 16px;
  }

  .star { color: var(--orange); font-size: 16px; }

  .review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .reviewer {
    display: flex; align-items: center; gap: 12px;
  }

  .avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
  }

  .reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
  }

  .reviewer-area {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--orange);
    padding: 72px 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
  }

  .cta-band h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    max-width: 520px;
  }

  .btn-dark {
    background: var(--navy);
    color: var(--white);
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .btn-dark:hover { background: var(--navy-mid); }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--cream);
    padding: 90px 5%;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 56px;
    align-items: start;
  }

  .contact-info h3 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
  }

  .contact-detail {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 24px;
  }

  .contact-detail-icon {
    width: 40px; height: 40px; border-radius: 6px;
    background: var(--navy);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .contact-detail-icon svg { width: 18px; height: 18px; }

  .contact-detail-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
  }

  .contact-detail-val {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
  }

  .contact-form { background: var(--white); border-radius: 8px; padding: 40px; border: 1px solid var(--gray-mid); }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
  }

  .form-group { margin-bottom: 16px; }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--gray-light);
    border: 1.5px solid var(--gray-mid);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    background: var(--orange);
    color: var(--white);
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
  }

  .form-submit:hover { background: var(--orange-dark); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: var(--steel);
    padding: 60px 5% 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--steel);
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-col h5 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    color: var(--steel);
    cursor: default;
    transition: color 0.2s;
  }

  .footer-col ul li:hover { color: var(--orange-light); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 13px;
    color: rgba(138,165,190,0.6);
  }

  /* ── EMERGENCY FLOAT ── */
  .emergency-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(232,112,26,0.4);
    z-index: 999;
    animation: pulse 2.5s infinite;
    letter-spacing: 0.5px;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(232,112,26,0.4); }
    50% { box-shadow: 0 4px 32px rgba(232,112,26,0.7); }
  }

  @media (max-width: 860px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps::before { display: none; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

  @media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; }
    .trust-strip { gap: 20px; flex-direction: column; align-items: center; }
    .cta-band { text-align: center; justify-content: center; }
  }