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

    :root {
      --gray-dark: #2C3E50;
      --gray-med: #34495E;
      --gray-light: #ECF0F1;
      --blue: #1B5E9A;
      --blue-light: #2E7DB3;
      --white: #ffffff;
      --gray-bg: #F8F9FA;
      --gray-border: #E1E8ED;
      --text: #2C3E50;
      --text-light: #5C6B73;
    }

    html { scroll-behavior: smooth; }

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

    h1, h2, h3, h4, h5 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: var(--gray-dark);
      line-height: 1.2;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(44, 62, 80, 0.98);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 96px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-mark {
      display: none;
    }

    .nav-logo-image {
      width: 76px;
      height: 76px;
      object-fit: contain;
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .nav-logo-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 25px;
      color: white;
      letter-spacing: 0.3px;
    }

    .nav-logo-sub {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: white; }

    .nav-dropdown {
      position: relative;
    }

    .nav-contact-btn {
      background: var(--blue);
      color: white;
      padding: 9px 20px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      border-radius: 4px;
    }

    .nav-contact-btn:hover {
      background: var(--blue-light);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--gray-dark);
      border-radius: 4px;
      min-width: 240px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      display: none;
      flex-direction: column;
      z-index: 1000;
      margin-top: 8px;
      overflow: hidden;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      display: flex;
    }

    .nav-dropdown-menu a {
      color: white !important;
      padding: 12px 16px;
      text-decoration: none;
      font-size: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: background 0.2s;
    }

    .nav-dropdown-menu a:last-child {
      border-bottom: none;
    }

    .nav-dropdown-menu a:hover {
      background: var(--blue);
    }

    .nav-cta {
      background: var(--blue) !important;
      color: white !important;
      padding: 9px 20px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--blue-light) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      transition: all 0.3s;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      background:
        linear-gradient(135deg, rgba(44, 62, 80, 0.88) 0%, rgba(52, 73, 94, 0.85) 100%),
        url('images/hero.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 0 5%;
      padding-top: 96px;
    }

    .hero-inner {
      max-width: 680px;
    }

    .hero-eyebrow {
      display: inline-block;
      background: rgba(27, 94, 154, 0.25);
      border: 1px solid rgba(27, 94, 154, 0.5);
      color: #7BB3E3;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 14px;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      color: white;
      margin-bottom: 20px;
      font-weight: 800;
      line-height: 1.1;
    }

    .hero h1 span { color: #7BB3E3; }

    .hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 40px;
      max-width: 520px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      padding: 15px 30px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

    .btn-outline {
      background: transparent;
      color: white;
      padding: 14px 30px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.4);
      cursor: pointer;
      transition: border-color 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-outline:hover { border-color: white; transform: translateY(-1px); }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    .hero-stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: white;
    }

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

    /* TRUST BAR */
    .trust-bar {
      background: var(--gray-dark);
      padding: 20px 5%;
    }

    .trust-bar-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .trust-check {
      width: 18px;
      height: 18px;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 10px;
      color: white;
    }

    .trust-divider {
      width: 1px;
      height: 20px;
      background: rgba(255,255,255,0.15);
    }

    /* SECTION WRAPPER */
    .section {
      padding: 96px 5%;
    }

    .section-gray { background: var(--gray-bg); }

    .section-header {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 64px;
    }

    .section-eyebrow {
      display: inline-block;
      color: var(--blue);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 16px;
    }

    .section-header p {
      color: var(--text-light);
      font-size: 1rem;
      line-height: 1.7;
    }

    .section-logo-accent {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      display: block;
      opacity: 0.15;
      margin-bottom: 24px;
    }

    /* SERVICES */
    .services-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2px;
      background: var(--gray-light);
    }

    .service-card {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 40px 36px;
      transition: box-shadow 0.25s;
      position: relative;
      overflow: hidden;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .service-card > * {
      position: relative;
      z-index: 2;
    }

    .service-card:hover { 
      box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15); 
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 16px;
      display: block;
    }

    .service-card h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      font-weight: 700;
      color: white;
    }

    .service-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
    }

    /* WHY YWHY */
    .why-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }

    .why-left p {
      color: var(--text-light);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .why-points { display: flex; flex-direction: column; gap: 0; }

    .why-point {
      padding: 28px 0;
      border-bottom: 1px solid var(--gray-light);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .why-point:first-child { border-top: 1px solid var(--gray-light); }

    .why-point-num {
      font-family: 'Poppins', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 1px;
      margin-top: 3px;
      flex-shrink: 0;
      width: 24px;
    }

    .why-point h4 {
      font-size: 1rem;
      margin-bottom: 4px;
      font-weight: 600;
      color: var(--charcoal);
    }

    .why-point p {
      font-size: 0.9rem;
      color: var(--text-light);
      margin: 0;
      line-height: 1.6;
    }

    .why-right {
      background: var(--gray-dark);
      background-image: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
      background-size: cover;
      background-position: center;
      padding: 48px 44px;
      position: relative;
    }

    .why-right::before {
      content: '';
      position: absolute;
      top: 16px; right: 16px; bottom: -16px; left: -16px;
      border: 2px solid var(--blue);
      z-index: -1;
    }

    .why-right-heading {
      font-family: 'Poppins', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 20px;
    }

    .why-right h3 {
      font-size: 1.6rem;
      color: white;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .why-right p {
      color: rgba(255,255,255,0.65);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .why-right-cta {
      display: inline-block;
      background: var(--blue);
      color: white;
      padding: 13px 26px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .why-right-cta:hover { background: var(--blue-light); }

    /* PROCESS */
    .process-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 30px;
      left: calc(12.5% + 12px);
      right: calc(12.5% + 12px);
      height: 2px;
      background: var(--gray-light);
    }

    .process-step {
      padding: 0 16px;
      text-align: center;
    }

    .process-num {
      width: 60px;
      height: 60px;
      background: var(--gray-dark);
      color: white;
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
    }

    .process-step:nth-child(2) .process-num { background: var(--blue); }
    .process-step:nth-child(3) .process-num { background: var(--gray-dark); }
    .process-step:nth-child(4) .process-num { background: var(--blue); }

    .process-step h4 {
      font-size: 0.95rem;
      margin-bottom: 8px;
      color: var(--text);
    }

    .process-step p {
      font-size: 0.83rem;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* INDUSTRIES */
    .industries-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }

    .industry-card {
      border: 1.5px solid var(--gray-light);
      padding: 28px 24px;
      transition: border-color 0.2s, background 0.2s;
      cursor: default;
      background-size: cover;
      background-position: center;
      position: relative;
      min-height: 120px;
    }

    .industry-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, rgba(52, 73, 94, 0.65) 0%, rgba(44, 62, 80, 0.70) 100%);
      z-index: 0;
    }

    .industry-card > * {
      position: relative;
      z-index: 1;
    }

    .industry-card:hover {
      border-color: var(--blue);
      background-color: rgba(27, 94, 154, 0.03);
    }

    .industry-icon {
      font-size: 1.6rem;
      margin-bottom: 10px;
      display: block;
    }

    .industry-card h4 {
      font-size: 0.95rem;
      font-weight: 600;
      color: white;
    }

    /* SERVICE AREA */
    .area-section {
      background: var(--gray-dark);
      padding: 80px 5%;
    }

    .area-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .area-inner .section-eyebrow { color: var(--blue); }
    .area-inner h2 { color: white; margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
    .area-inner > p { color: rgba(255,255,255,0.65); margin-bottom: 40px; }

    .area-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .area-tag {
      border: 1.5px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: border-color 0.2s, background 0.2s;
      cursor: default;
    }

    .area-tag:hover {
      border-color: var(--blue);
      background: rgba(27, 94, 154, 0.15);
    }

    /* TESTIMONIALS */
    .testimonials-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .testimonial-card {
      background: var(--white);
      border: 1.5px solid var(--gray-light);
      padding: 36px 32px;
      position: relative;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .testimonial-card:hover {
      border-color: var(--gray-dark);
      box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    }

    .testimonial-stars {
      color: var(--blue);
      font-size: 14px;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .testimonial-text {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      font-style: italic;
      margin-bottom: 24px;
    }

    .testimonial-author {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray-dark);
    }

    .testimonial-role {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-top: 2px;
    }

    /* CONTACT */
    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }

    .contact-info p {
      color: var(--text-light);
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }

    .contact-detail-icon {
      width: 40px;
      height: 40px;
      background: var(--gray-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .contact-detail-text {
      font-size: 0.9rem;
    }

    .contact-detail-label {
      font-weight: 600;
      color: var(--gray-dark);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 2px;
    }

    .contact-detail-value {
      color: var(--text);
    }

    .contact-form {
      background: var(--gray-bg);
      padding: 44px 40px;
    }

    .form-heading {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gray-dark);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--gray-dark);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px 14px;
      border: 1.5px solid var(--gray-light);
      background: white;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gray-dark);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      width: 100%;
      background: var(--gray-dark);
      color: white;
      padding: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 8px;
      letter-spacing: 0.5px;
    }

    .form-submit:hover { background: var(--blue); }

    /* FOOTER */
    footer {
      background: #1F2E3E;
      padding: 64px 5% 32px;
      color: rgba(255,255,255,0.65);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 32px;
    }

    .footer-brand .nav-logo-name { font-size: 30px; }
    .footer-brand .nav-logo-image { width: 88px; height: 88px; }

    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.7;
      margin-top: 12px;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      font-size: 14px;
      transition: background 0.2s;
    }

    .social-link:hover { background: var(--blue); }

    .footer-col h5 {
      font-family: 'Poppins', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: white;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: white; }

    .footer-contact-item {
      font-size: 13px;
      margin-bottom: 8px;
      display: flex;
      gap: 8px;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom a:hover { color: white; }

    /* MOBILE */
    @media (max-width: 900px) {
      .nav-links { 
        display: none !important;
        position: absolute;
        top: 96px;
        left: 0;
        right: 0;
        background: rgba(44, 62, 80, 0.98);
        flex-direction: column;
        gap: 16px;
        padding: 20px 5%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .nav-links.active {
        display: flex !important;
      }

      .hamburger { display: flex; }

      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
      }

      .why-inner { grid-template-columns: 1fr; gap: 48px; }
      .why-right::before { display: none; }

      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }

      .process-steps { grid-template-columns: 1fr 1fr; }
      .process-steps::before { display: none; }

      .footer-top { grid-template-columns: 1fr 1fr; }

      .hero-stats { gap: 24px; }
    }

    @media (max-width: 600px) {
      .section { padding: 64px 5%; }
      .footer-top { grid-template-columns: 1fr; }
      .contact-form { padding: 32px 24px; }
      .process-steps { grid-template-columns: 1fr; }
      .trust-divider { display: none; }
      nav { height: 76px; }
      .nav-logo-image { width: 60px; height: 60px; }
      .nav-logo-name { font-size: 21px; }
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ── ACCESSIBILITY & POLISH ── */

    /* Visually-hidden but available to screen readers */
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    /* Skip link */
    .skip-link {
      position: absolute;
      left: 12px; top: -48px;
      z-index: 2000;
      background: var(--blue);
      color: #fff;
      padding: 10px 16px;
      border-radius: 4px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: top 0.2s ease;
    }
    .skip-link:focus { top: 12px; }

    /* Visible keyboard focus everywhere */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid #7BB3E3;
      outline-offset: 2px;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(27,94,154,0.15);
    }

    /* Contrast fixes on dark surfaces */
    .nav-logo-sub { color: rgba(255,255,255,0.72); }
    .footer-links a { color: rgba(255,255,255,0.72); }
    .footer-bottom a { color: rgba(255,255,255,0.6); }
    .footer-contact-item { color: rgba(255,255,255,0.78); }

    /* Stronger overlay so service-card text always meets contrast */
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20,30,40,0.30) 0%, rgba(20,30,40,0.62) 100%);
      z-index: 1;
    }

    /* Nav: smooth shadow + subtle shrink once scrolled */
    nav { transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
    nav.scrolled {
      height: 76px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    }

    /* Typography refinement */
    .hero h1 { letter-spacing: -0.5px; }
    .section-header h2,
    .why-left h2 { letter-spacing: -0.3px; }
    body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

    /* Card lift micro-interaction */
    .service-card { transition: box-shadow 0.25s ease, transform 0.25s ease; }
    .service-card:hover { transform: translateY(-3px); }
    .btn-primary, .btn-outline, .why-right-cta, .form-submit, .nav-contact-btn {
      will-change: transform;
    }

    /* Mobile sticky call bar (conversion) */
    .mobile-call-bar { display: none; }
    @media (max-width: 600px) {
      .mobile-call-bar {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 1500;
      }
      .mobile-call-bar a {
        flex: 1;
        text-align: center;
        padding: 14px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        color: #fff;
      }
      .mobile-call-bar .mcb-call { background: var(--blue); }
      .mobile-call-bar .mcb-quote { background: var(--gray-dark); }
      body { padding-bottom: 52px; }
    }

    /* Respect reduced-motion preferences */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
    }

/* Honeypot field — hidden from humans, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
