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

  :root {
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --mid: #444;
    --muted: #888;
    --border: #e4e4e4;
    --bg: #ffffff;
    --bg2: #ffffff;
    --blue: #1a7fc1;
    --blue-light: #3a9fd1;
    
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--bg); color: var(--dark); line-height: 1.6; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 72px;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    text-decoration: none;
    display: flex; align-items: center;
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--mid); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.02em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--black); }
  .nav-links .dropdown { position: relative; }
  .nav-links .dropdown ul {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff; border: 1px solid var(--border); border-radius: 6px;
    padding: 0.5rem 0; min-width: 220px; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .nav-links .dropdown:hover ul { display: block; }
  .nav-links .dropdown ul li { list-style: none; }
  .nav-links .dropdown ul a { display: block; padding: 0.5rem 1rem; white-space: nowrap; color: var(--mid); font-size: 0.85rem; }
  .nav-links .dropdown ul a:hover { color: var(--black); background: var(--bg2); }
  .nav-cta {
    background: var(--blue); color: #fff; padding: 0.55rem 1.3rem;
    border-radius: 4px; font-weight: 600; font-size: 0.85rem; text-decoration: none;
    letter-spacing: 0.03em; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--blue-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 5% 80px;
    background: #fff;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    background: #ffffff;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero-content { position: relative; z-index: 2; max-width: 600px; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--blue); }
  h1 {
    font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800; line-height: 1.0; letter-spacing: -0.01em;
    color: var(--black); margin-bottom: 1.5rem;
  }
  h1 em { font-style: normal; color: var(--blue); }
  .hero-sub { font-size: 1.05rem; color: var(--mid); max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem; }
  .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--black); color: #fff; padding: 0.85rem 2rem;
    border-radius: 4px; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--dark); }
  .btn-outline {
    border: 1.5px solid var(--black); color: var(--black); padding: 0.85rem 2rem;
    border-radius: 4px; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--black); color: #fff; }
  .hero-image {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    width: 42%; max-width: 560px; z-index: 1;
  }
  .hero-image img { width: 100%; border-radius: 8px; box-shadow: none; }

  /* ── STATS BAR ── */
  .stats {
    background: var(--black); color: #fff;
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 0 5%;
  }
  .stat-item { padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--blue); line-height: 1; }
  .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem; }

  /* ── SECTION COMMON ── */
  section { padding: 90px 5%; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 0.8rem;
  }
  .section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); }
  h2 {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; line-height: 1.05; color: var(--black); margin-bottom: 1.2rem;
  }
  h2 em { font-style: normal; color: var(--blue); }

  /* ── ABOUT ── */
  .about { background: var(--bg2); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-text p { color: var(--mid); line-height: 1.8; margin-bottom: 1rem; }
  .about-image img { width: 100%; border-radius: 8px; box-shadow: none; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .about-feat { display: flex; align-items: flex-start; gap: 0.75rem; }
  .feat-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .feat-icon svg { width: 18px; height: 18px; fill: #fff; }
  .feat-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--black); }
  .feat-text span { font-size: 0.8rem; color: var(--muted); }

  /* ── PRODUCTS ── */
  .products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .product-card {
    background: #fff; border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
  }
  .product-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.1); transform: translateY(-4px); }
  .product-img { width: 100%; height: 220px; object-fit: cover; background: var(--bg2); display: block; }
  .product-img-placeholder {
    width: 100%; height: 220px; background: linear-gradient(135deg, #dce8f5, #c5d8ed);
    display: flex; align-items: center; justify-content: center;
  }
  .product-img-placeholder svg { width: 64px; height: 64px; fill: rgba(0,0,0,0.15); }
  .product-body { padding: 1.4rem; }
  .product-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
  .product-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
  .product-body p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin-bottom: 1.2rem; }
  .product-link { font-size: 0.82rem; font-weight: 600; color: var(--black); text-decoration: none; letter-spacing: 0.04em; border-bottom: 1.5px solid var(--blue); padding-bottom: 1px; }

  /* ── SERVICES / WHY ── */
  .why { background: var(--bg2); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .why-card { background: #fff; border-radius: 8px; padding: 2rem; border: 1px solid var(--border); }
  .why-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 1rem; }
  .why-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 0.6rem; }
  .why-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--black); padding: 80px 5%;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    flex-wrap: wrap;
  }
  .cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
  .cta-banner p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 480px; }
  .btn-gold { background: var(--blue); color: #fff; padding: 0.9rem 2.2rem; border-radius: 4px; font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s; }
  .btn-gold:hover { background: var(--blue-light); }

  /* ── CONTACT ── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .contact-info p { color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
  .contact-details { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .contact-details li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--mid); }
  .contact-details li svg { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); }
  .form-group input, .form-group textarea, .form-group select {
    border: 1.5px solid var(--border); border-radius: 4px; padding: 0.75rem 1rem;
    font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
    transition: border-color 0.2s; outline: none; background: #fff; width: 100%;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .btn-submit {
    background: var(--black); color: #fff; border: none; cursor: pointer;
    padding: 0.9rem 2rem; border-radius: 4px; font-family: var(--font-body);
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; transition: background 0.2s; align-self: flex-start;
  }
  .btn-submit:hover { background: var(--dark); }

  /* ── FOOTER ── */
  footer { background: #0a0a0a; color: rgba(255,255,255,0.6); }
  .footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding: 60px 5% 40px; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
  .footer-col h4 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: #fff; }
  .footer-col address { font-style: normal; font-size: 0.85rem; line-height: 1.8; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
  .footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: #fff; }
  .footer-logo span { color: var(--blue); }

  /* ── SCROLL CUE ── */
  .scroll-cue { position: absolute; bottom: 2.5rem; left: 5%; display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); animation: bounce 2s ease-in-out infinite; }
  @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
  .scroll-cue svg { width: 16px; height: 16px; fill: var(--muted); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero::before { width: 100%; clip-path: none; }
    .hero-image { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .products-grid, .why-grid, .stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .nav-links { display: none; }
    .footer-main { grid-template-columns: 1fr; }
  }

  /* ── WORDPRESS OVERRIDES ── */
  #site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 72px; background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(8px); }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.2s; }
  #nav-menu.open { display: flex !important; }
  #site-footer { background: #0a0a0a; color: rgba(255,255,255,0.6); }

  /* ── FORM SUCCESS ── */
  .form-success { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 3rem 2rem; text-align: center; }
  .form-success h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
  .form-success p { color: var(--mid); }

  /* ── WP MENU NORMALIZATION ── */
  .nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
  .nav-links > li { position: relative; }
  .nav-links > li > a { text-decoration: none; color: var(--mid); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.02em; transition: color 0.2s; }
  .nav-links > li > a:hover, .nav-links > li.current-menu-item > a { color: var(--black); }
  .nav-links .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 0.5rem 0; min-width: 220px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); list-style: none; margin: 0; }
  .nav-links li:hover > .sub-menu { display: block; }
  .nav-links .sub-menu a { display: block; padding: 0.5rem 1rem; white-space: nowrap; color: var(--mid); font-size: 0.85rem; text-decoration: none; }
  .nav-links .sub-menu a:hover { color: var(--black); background: var(--bg2); }

  @media (max-width: 768px) {
    .nav-toggle { display: flex; }
    #nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 1rem 5%; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    #nav-menu.open { display: flex; }
    .nav-links > li { border-bottom: 1px solid var(--border); }
    .nav-links > li > a { display: block; padding: 0.75rem 0; }
    .nav-links .sub-menu { position: static; box-shadow: none; border: none; border-radius: 0; padding-left: 1rem; }
  }
