  :root {
    --navy: #1a2744;
    --navy-deep: #0f1a2e;
    --navy-light: #2a3d5c;
    --orange: #e8611a;
    --orange-bright: #f47b3a;
    --orange-dark: #c4500f;
    --steel: #b8bcc4;
    --steel-light: #d4d7dc;
    --steel-dark: #8a8f98;
    --white: #f5f6f7;
    --off-white: #eaecef;
    --text: #1a1e24;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ─── BRUSHED METAL TEXTURE ─── */
  .metal-bg {
    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.03) 1px,
        transparent 2px
      ),
      linear-gradient(180deg, #c8ccd4 0%, #a8adb6 30%, #bcc0c8 60%, #9ea3ac 100%);
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--orange);
    transition: all 0.3s ease;
  }

  nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  nav .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 1px;
  }

  nav .logo-text span { color: var(--orange); }

  nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
  }

  nav ul li a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--steel-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
  }

  nav ul li a:hover { color: var(--orange); }
  nav ul li a:hover::after { width: 100%; }

  .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
  }

  .mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.015) 1px,
        transparent 3px
      ),
      radial-gradient(ellipse at 70% 50%, rgba(232, 97, 26, 0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(26, 39, 68, 0.8) 0%, transparent 50%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(232, 97, 26, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232, 97, 26, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 24px;
  }

  .hero-text h1 .orange { color: var(--orange); }

  .hero-text p {
    font-size: 1.15rem;
    color: var(--steel);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
  }

  .hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-logo img {
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow:
      0 20px 60px rgba(0,0,0,0.4),
      0 0 0 1px rgba(232, 97, 26, 0.2);
    animation: floatIn 1s ease-out 0.3s both;
  }

  @keyframes floatIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background: var(--orange);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }

  .btn-primary:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 97, 26, 0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--steel-dark);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }

  .btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }

  /* ─── SECTION BASICS ─── */
  section { padding: 100px 24px; }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-header .tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
  }

  .section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    color: var(--navy);
    line-height: 1;
  }

  .section-header h2.light { color: var(--white); }

  .section-header .line {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 16px auto 0;
  }

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

  /* ─── SERVICES ─── */
  .services {
    background: var(--white);
    position: relative;
  }

  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--orange), var(--navy));
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .service-card {
    background: var(--off-white);
    border: 1px solid rgba(26, 39, 68, 0.08);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s ease;
  }

  .service-card:hover::before { height: 100%; }

  .service-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(26, 39, 68, 0.1);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .service-card p {
    color: var(--steel-dark);
    line-height: 1.6;
    font-size: 0.95rem;
  }

  /* ─── WHY US ─── */
  .why-us {
    background: var(--navy-deep);
    position: relative;
  }

  .why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        0deg,
        transparent,
        rgba(232, 97, 26, 0.02) 1px,
        transparent 2px
      );
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
  }

  .stat-card {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid rgba(232, 97, 26, 0.15);
    background: rgba(255,255,255,0.03);
  }

  .stat-card .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
  }

  .stat-card .label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--steel);
    margin-top: 8px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
  }

  .feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
  }

  .feature h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 6px;
  }

  .feature p {
    color: var(--steel);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    background: var(--white);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
  }

  .testimonial-card {
    background: var(--off-white);
    padding: 32px;
    border-left: 4px solid var(--orange);
    position: relative;
  }

  .testimonial-card .quote {
    font-size: 2rem;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 12px;
  }

  .testimonial-card p {
    color: var(--navy-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
  }

  .testimonial-card .author {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: var(--navy);
    font-style: normal;
  }

  .stars { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }

  /* ─── CTA ─── */
  .cta-section {
    background: var(--orange);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
      );
  }

  .cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
  }

  .cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-white {
    background: var(--white);
    color: var(--navy);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    position: relative;
    z-index: 1;
  }

  .btn-white:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

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

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
  }

  .contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
  }

  .contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
  }

  .contact-item .icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 97, 26, 0.15);
    border: 1px solid rgba(232, 97, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
  }

  .contact-item .details .label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    color: var(--orange);
    margin-bottom: 2px;
  }

  .contact-item .details .value {
    color: var(--steel-light);
    font-size: 1rem;
  }

  .contact-item .details a {
    color: var(--steel-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-item .details a:hover { color: var(--orange); }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row { display: flex; gap: 16px; }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    border-color: var(--orange);
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: var(--steel-dark);
  }

  .contact-form select { color: var(--steel-dark); }
  .contact-form select option { background: var(--navy-deep); color: var(--white); }

  .contact-form textarea { height: 120px; resize: vertical; }

  /* ─── ABOUT SUMMARY ─── */
  .about-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
  }

  .about-summary p {
    color: var(--steel);
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* ─── SERVICES EXTENDED ─── */
  .services-extended {
    margin-top: 48px;
    padding: 32px;
    background: var(--off-white);
    border-left: 4px solid var(--orange);
  }

  .services-extended h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .services-extended p {
    color: var(--steel-dark);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* ─── SERVICE AREAS ─── */
  .service-areas {
    background: var(--navy-deep);
    position: relative;
  }

  .service-areas-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .service-areas-content p {
    color: var(--steel);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .service-areas-content .orange-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }

  .service-areas-content .orange-link:hover {
    color: var(--orange-bright);
  }

  .areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px 24px;
    margin-bottom: 32px;
    text-align: left;
  }

  .areas-list li {
    color: var(--steel-light);
    font-size: 1rem;
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px solid rgba(232, 97, 26, 0.1);
  }

  .areas-list li::before {
    content: '▸';
    color: var(--orange);
    position: absolute;
    left: 0;
    font-size: 0.9rem;
  }

  /* ─── FAQ ─── */
  .faq-section {
    background: var(--white);
  }

  .faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: var(--off-white);
    border: 1px solid rgba(26, 39, 68, 0.08);
    transition: all 0.3s ease;
  }

  .faq-item[open] {
    border-left: 4px solid var(--orange);
  }

  .faq-item summary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    content: '+';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .faq-item[open] summary::after {
    content: '−';
  }

  .faq-item summary:hover {
    color: var(--orange);
  }

  .faq-answer {
    padding: 0 24px 20px;
  }

  .faq-answer p {
    color: var(--steel-dark);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #0a1120;
    padding: 40px 24px 28px;
    text-align: center;
    border-top: 3px solid var(--orange);
  }

  .footer-nap {
    margin-bottom: 20px;
  }

  .footer-nap p {
    color: var(--steel-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .footer-nap strong { color: var(--white); }

  .footer-nap a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-nap a:hover { color: var(--orange-bright); }

  .footer-areas {
    color: var(--steel-dark) !important;
    font-size: 0.85rem !important;
  }

  nav.footer-links {
    position: static;
    width: auto;
    background: none;
    border: none;
    backdrop-filter: none;
    height: auto;
    margin-top: 14px;
    font-size: 0.85rem;
  }

  .footer-links a {
    color: var(--steel-dark);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--orange); }

  .footer-copy {
    color: var(--steel-dark);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
    margin-top: 16px;
  }

  .footer-copy span { color: var(--orange); }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .cta-group { justify-content: center; }
    .hero-logo { order: -1; }
    .hero-logo img { max-width: 300px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
  }

  @media (max-width: 640px) {
    nav ul { display: none; }
    nav ul.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(15, 26, 46, 0.98);
      padding: 24px;
      gap: 20px;
      border-bottom: 3px solid var(--orange);
    }
    .mobile-toggle { display: flex; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
  }
