/* ============================================================
   VonderLinden Group, LLC — Main Stylesheet
   vonderlinden.css
   ============================================================ */

/* ── HERO ILLUSTRATION WRAPPER ── */
.hero-svg-bg {
  position: absolute;
  top: var(--nav-h, 74px);
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  overflow: hidden;
}

.hero-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── FOOTER INNER LAYOUT ── */
.footer-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 2px;
}

.footer-logo-img {
  height: 46px;
  width: auto;
}


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

    :root {
      --gold: #4E91CF;
      --gold-light: #74AEDD;
      --dark: #07141E;
      --dark-2: #0E2A3F;
      --dark-3: #0A1F30;
      --mid: #163248;
      --text: #EBF2F8;
      --muted: #7A9BB5;
      --border: rgba(78, 145, 207, 0.22);
      --accent: #204C76;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 4rem;
      background: #ffffff;
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(78,145,207,0.18);
      box-shadow: 0 1px 12px rgba(0,0,0,0.08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.06em;
      color: var(--text);
      text-decoration: none;
    }

    .nav-logo img {
      height: 58px;
      width: auto;
      display: block;
    }

    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .name { font-size: 1.4rem; letter-spacing: 0.08em; color: #0E2A3F; }
    .nav-logo-text .sub { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--accent); font-weight: 500; margin-top: 3px; }

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

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #204C76;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold);
      color: #fff !important;
      padding: 0.55rem 1.4rem;
      border-radius: 2px;
      font-weight: 600 !important;
      display: inline-block;
      white-space: nowrap;
      min-width: max-content;
      line-height: 1.2;
      box-sizing: border-box;
      text-align: center;
      flex-shrink: 0;
    }

    .nav-cta:hover { background: var(--gold-light); color: #fff !important; }

    /* ── HERO ── */
    .hero {
      --nav-h: 74px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 4rem 5rem;
      position: relative;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(7,20,30,0.25) 0%,
        rgba(7,20,30,0.55) 45%,
        rgba(7,20,30,0.92) 80%,
        var(--dark) 100%
      );
      z-index: 1;
    }

    .hero-tag, .hero h1, .hero-sub, .hero-actions { position: relative; z-index: 2; }

    .hero-tag {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 1.25rem;
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .hero-tag::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 9vw, 9rem);
      line-height: 0.92;
      letter-spacing: 0.02em;
      position: relative;
      max-width: 900px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }

    .hero-sub {
      margin-top: 2rem;
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 460px;
      line-height: 1.7;
      position: relative;
    }

    .hero-actions {
      margin-top: 2.5rem;
      display: flex;
      gap: 1rem;
      align-items: center;
      position: relative;
    }

    .btn-primary {
      background: var(--gold);
      color: #fff;
      padding: 0.85rem 2.2rem;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
      white-space: nowrap;
      min-width: max-content;
      line-height: 1.2;
      box-sizing: border-box;
      text-align: center;
      flex-shrink: 0;
    }

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

    .btn-ghost {
      color: var(--text);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

    /* ── STATS BAR ── */
    .stats {
      background: var(--dark-3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: center;
    }

    .stats-inner {
      display: flex;
      width: 100%;
      max-width: 1100px;
    }

    .stat {
      flex: 1;
      padding: 2.5rem 2rem;
      border-right: 1px solid var(--border);
      text-align: center;
    }

    .stat:last-child { border-right: none; }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--gold);
      line-height: 1;
      letter-spacing: 0.04em;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    /* ── SERVICES ── */
    .section {
      padding: 7rem 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-tag {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    .section-tag::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .section-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      max-width: 600px;
    }

    .section-heading em { font-style: normal; color: var(--gold); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 4rem;
      border: 1px solid var(--border);
    }

    .service-card {
      background: var(--dark-2);
      padding: 2.5rem 2rem;
      border-right: 1px solid var(--border);
      transition: background 0.2s;
      position: relative;
      overflow: hidden;
    }

    .service-card:last-child { border-right: none; }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .service-card:hover { background: var(--dark-3); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1.25rem;
      line-height: 1;
    }

    .service-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 0.75rem;
    }

    .service-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── WHY US ── */
    .why-section {
      background: var(--dark-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 7rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .why-points {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .why-point {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .why-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--border);
      line-height: 1;
      flex-shrink: 0;
      width: 48px;
    }

    .why-text h4 {
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.35rem;
    }

    .why-text p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .why-quote {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      line-height: 1.1;
      letter-spacing: 0.02em;
      color: var(--text);
    }

    .why-quote em { font-style: normal; color: var(--gold); }

    .why-quote-attr {
      margin-top: 1.5rem;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    /* ── CONTACT ── */
    .contact-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 7rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 6rem;
      align-items: start;
    }

    .contact-info {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .contact-detail {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .contact-detail-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .contact-detail-value {
      font-size: 1rem;
      color: var(--text);
    }

    /* ── FORM ── */
    .form-card {
      background: var(--dark-2);
      border: 1px solid var(--border);
      padding: 2.75rem;
      border-radius: 2px;
    }

    .form-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      margin-bottom: 2rem;
      color: var(--text);
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-bottom: 1.1rem;
    }

    .form-group label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--dark-3);
      border: 1px solid rgba(200,149,58,0.2);
      color: var(--text);
      padding: 0.75rem 1rem;
      font-family: 'Barlow', sans-serif;
      font-size: 0.95rem;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

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

    .form-group select option { background: var(--dark-3); }
    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      width: 100%;
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 1rem 2rem;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 2px;
      margin-top: 0.5rem;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
      line-height: 1.2;
      box-sizing: border-box;
      display: block;
      text-align: center;
    }

    .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

    .form-note {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
      margin-top: 1rem;
    }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      border-top: 1px solid var(--border);
      padding: 2.5rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: 0.06em;
      color: var(--text);
    }

    .footer-logo span { color: var(--gold); }

    .footer-copy {
      font-size: 0.78rem;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    /* ── HERO IMAGE STRIP ── */
    .hero-image-strip {
      position: relative;
      width: 100%;
      height: 420px;
      overflow: hidden;
    }

    .hero-image-strip img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 60%;
      display: block;
      filter: brightness(0.75) saturate(0.85);
    }

    .hero-image-strip .watermark {
      position: absolute;
      bottom: 18px;
      right: 22px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.22em;
      color: rgba(255,255,255,0.38);
      text-transform: uppercase;
      pointer-events: none;
      user-select: none;
      text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }

    .hero-image-strip .img-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2.5rem 4rem 1.25rem;
      background: linear-gradient(to top, rgba(7,20,30,0.85) 0%, transparent 100%);
    }

    .hero-image-strip .img-caption p {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(235,242,248,0.6);
    }

    /* ── PORTFOLIO ── */
    #portfolio { background: var(--dark); }

    .portfolio-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 7rem 4rem;
    }

    .portfolio-filter {
      display: flex;
      gap: 0.5rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .filter-btn {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--muted);
      font-family: 'Barlow', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.45rem 1.1rem;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .portfolio-item {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      cursor: pointer;
      aspect-ratio: 4/3;
      background: var(--dark-2);
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease, filter 0.4s ease;
      filter: brightness(0.85) saturate(0.8);
    }

    .portfolio-item:hover img {
      transform: scale(1.05);
      filter: brightness(0.65) saturate(0.7);
    }

    .portfolio-item .p-watermark {
      position: absolute;
      bottom: 8px;
      right: 10px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.3);
      pointer-events: none;
      user-select: none;
    }

    .portfolio-item .p-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem;
      background: linear-gradient(to top, rgba(7,20,30,0.9) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .portfolio-item:hover .p-overlay { opacity: 1; }

    .p-overlay h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      color: var(--text);
      margin-bottom: 0.2rem;
    }

    .p-overlay span {
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .portfolio-item .zoom-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(78,145,207,0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      font-size: 1.1rem;
      color: #fff;
    }

    .portfolio-item:hover .zoom-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(5,12,20,0.96);
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .lightbox.open { display: flex; }

    .lightbox-inner {
      position: relative;
      max-width: 900px;
      width: 100%;
    }

    .lightbox-inner img {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 2px;
      display: block;
    }

    .lightbox-inner .lb-watermark {
      position: absolute;
      bottom: 12px;
      right: 14px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.22em;
      color: rgba(255,255,255,0.3);
      pointer-events: none;
      user-select: none;
    }

    .lightbox-caption {
      margin-top: 1rem;
      text-align: center;
    }

    .lightbox-caption h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 0.06em;
    }

    .lightbox-caption p {
      font-size: 0.8rem;
      color: var(--muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    .lightbox-close {
      position: absolute;
      top: -2.5rem;
      right: 0;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
    }

    .lightbox-close:hover { color: var(--text); }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(78,145,207,0.2);
      border: 1px solid var(--border);
      color: var(--text);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s;
    }

    .lightbox-nav:hover { background: rgba(78,145,207,0.5); }
    .lightbox-nav.prev { left: -3.5rem; }
    .lightbox-nav.next { right: -3.5rem; }

    @media (max-width: 900px) {
      .hero-image-strip { height: 260px; }
      .hero-image-strip .img-caption { padding: 1.5rem 1.5rem 1rem; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .portfolio-inner { padding: 5rem 1.5rem; }
      .lightbox-nav.prev { left: -1rem; }
      .lightbox-nav.next { right: -1rem; }
    }

    @media (max-width: 600px) {
      .portfolio-grid { grid-template-columns: 1fr; }
    }

    /* ── INDUSTRIES ── */
    .industries-section {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--dark);
    }

    .industries-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 7rem 4rem;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 4rem;
    }

    .industry-card {
      background: var(--dark-2);
      border: 1px solid var(--border);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
      text-decoration: none !important;
      color: inherit;
      display: block;
      cursor: pointer;
    }

    .industry-card * {
      text-decoration: none;
    }

    .industry-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .industry-card:hover { background: var(--dark-3); }
    .industry-card:hover::after { transform: scaleX(1); }

    .industry-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4.5rem;
      color: rgba(78,145,207,0.12);
      line-height: 1;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }

    .industry-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 0.9rem;
    }

    .industry-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.75;
    }

    .industry-tag {
      display: inline-block;
      margin-top: 1.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      border: 1px solid var(--border);
      padding: 0.3rem 0.75rem;
      border-radius: 2px;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-tag   { animation: fadeUp 0.6s ease both; }
    .hero h1    { animation: fadeUp 0.7s 0.1s ease both; }
    .hero-sub   { animation: fadeUp 0.7s 0.2s ease both; }
    .hero-actions { animation: fadeUp 0.7s 0.3s ease both; }

    /* ── SUCCESS STATE ── */
    .success-msg {
      display: none;
      text-align: center;
      padding: 2rem 0;
    }

    .success-msg .check {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: rgba(78,145,207,0.15);
      border: 1px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      font-size: 1.4rem;
    }

    .success-msg h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      margin-bottom: 0.5rem;
    }

    .success-msg p { font-size: 0.9rem; color: var(--muted); }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { padding: 0 1.5rem 4rem; }
      .section { padding: 5rem 1.5rem; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { border-right: none; border-bottom: 1px solid var(--border); }
      .why-inner { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
      .industries-grid { grid-template-columns: 1fr; }
      .industries-inner { padding: 5rem 1.5rem; }
      
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
    }