 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --brand: #ff6900;
    --brand-dark: #d45500;
    --brand-light: #fff3eb;
    --bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #888;
    --border: #eee;
    --surface: #f8f8f8;
    --radius: 10px;
  }
  body { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--text-primary); }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--bg);
    border-bottom: 2px solid var(--brand);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 60px;
  }
  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
    color: var(--brand);
  }
  .nav-logo span { color: var(--text-primary); }
  .nav-links { display: flex; gap: 1.5rem; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 600; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--brand); }
  .nav-cta { background: var(--brand); color: #fff; padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--brand-dark); }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 2rem 4rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,105,0,0.04) 60px, rgba(255,105,0,0.04) 61px);
  }
  .hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-block;
    background: var(--brand); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 4px; margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800; line-height: 1.05;
    color: #fff; margin-bottom: 1.2rem;
  }
  .hero h1 em { color: var(--brand); font-style: normal; }
  .hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.7; margin-bottom: 2rem; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: var(--brand); color: #fff; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-block; transition: background 0.2s; }
  .btn-primary:hover { background: var(--brand-dark); }
  .btn-outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-block; transition: border-color 0.2s; }
  .btn-outline:hover { border-color: var(--brand); }
  .hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--brand); display: block; }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

  /* SECTIONS */
  section { padding: 4rem 2rem; }
  .container { max-width: 1000px; margin: 0 auto; }
  .section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); margin-bottom: 0.5rem; }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.5rem; }
  .section-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.6; max-width: 540px; margin-bottom: 2.5rem; }

  /* SERVICES */
  .services-bg { background: var(--surface); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .service-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.2rem;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  .service-card:hover { border-color: var(--brand); transform: translateY(-3px); }
  .service-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--brand-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    font-size: 22px;
  }
  .service-card h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
  .service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
  .why-card { border-left: 4px solid var(--brand); padding: 1.2rem 1.4rem; background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0; }
  .why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
  .why-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

  /* CONTACT */
  .contact-bg { background: #1a1a1a; }
  .contact-bg .section-title { color: #fff; }
  .contact-bg .section-label { color: var(--brand); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
  .contact-icon { width: 42px; height: 42px; background: rgba(255,105,0,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .contact-item h4 { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
  .contact-item p { font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.5; }
  .contact-item a { color: var(--brand); text-decoration: none; font-weight: 600; }
  .contact-item a:hover { text-decoration: underline; }
  .map-placeholder {
    background: #2d2d2d; border-radius: var(--radius);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 260px; color: rgba(255,255,255,0.3); font-size: 14px; gap: 10px;
    border: 1.5px dashed rgba(255,105,0,0.3);
  }
  .map-placeholder span { font-size: 36px; }
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 1rem; }
  .hour-item { background: rgba(255,255,255,0.05); border-radius: 6px; padding: 8px 12px; font-size: 13px; color: rgba(255,255,255,0.7); }
  .hour-item strong { color: #fff; display: block; font-size: 12px; }

  /* FOOTER */
  footer {
    background: #111; padding: 1.8rem 2rem;
    text-align: center; font-size: 13px; color: rgba(255,255,255,0.3);
    border-top: 2px solid var(--brand);
  }
  footer a { color: var(--brand); text-decoration: none; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: var(--brand); margin-bottom: 6px; }

  @media (max-width: 680px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    .hero { padding: 3rem 1.2rem 2.5rem; }
    section { padding: 3rem 1.2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
  }