  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background: #fff; color: #111; font-family: 'DM Sans', sans-serif; line-height: 1.6; }
  a { color: inherit; text-decoration: none; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: #fff; border-bottom: 2px solid #111;
    padding: 1.25rem 2rem;
  }
  .nav-inner {
    max-width: 1360px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav-logo { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }
  .nav-logo span { color: #FFD700; -webkit-text-stroke: 1px #111; }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.2s; }
  .nav-links a:hover { color: #e63946; }
  .nav-cta {
    background: #111; color: #FFD700; font-family: 'Poppins', sans-serif;
    font-size: 0.8rem; font-weight: 700; padding: 0.55rem 1.4rem;
    border: 2px solid #111; cursor: pointer; transition: all 0.2s;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .nav-cta:hover { background: #FFD700; color: #111; }

  /* ── IMAGE PLACEHOLDER SYSTEM ── */
  .img-placeholder {
    background: #f0f0f0; border: 2px dashed #bbb;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 1.5rem; gap: 0.5rem;
    position: relative; overflow: hidden;
  }
  .img-placeholder::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      45deg, transparent, transparent 10px,
      rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px
    );
  }
  .img-placeholder-icon { font-size: 2rem; opacity: 0.3; position: relative; z-index: 1; }
  .img-placeholder-name {
    font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #111; opacity: 0.7; position: relative; z-index: 1;
  }
  .img-placeholder-hint {
    font-size: 0.72rem; color: #666; line-height: 1.4;
    max-width: 200px; position: relative; z-index: 1;
  }
  .img-placeholder-size {
    font-size: 0.65rem; color: #999; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    position: relative; z-index: 1;
  }
  /* Yellow background placeholder (for dark sections) */
  .img-placeholder.dark {
    background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.4);
  }
  .img-placeholder.dark .img-placeholder-name { color: #FFD700; opacity: 1; }
  .img-placeholder.dark .img-placeholder-hint { color: rgba(255,255,255,0.5); }
  .img-placeholder.dark .img-placeholder-size { color: rgba(255,215,0,0.5); }

  /* ── HERO ── */
  .hero { background: #FFD700; padding: 5rem 2rem 4rem; border-bottom: 3px solid #111; }
  .hero-inner {
    max-width: 1360px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  }
  .hero-eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; opacity: 0.6; }
  .hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
  .hero-sub { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; font-weight: 500; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .btn-primary {
    background: #111; color: #FFD700; font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.9rem; padding: 0.85rem 2rem; border: 2px solid #111;
    cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.06em;
  }
  .btn-primary:hover { background: #fff; color: #111; }
  .btn-outline {
    background: transparent; color: #111; font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.9rem; padding: 0.85rem 2rem; border: 2px solid #111;
    cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.06em;
  }
  .btn-outline:hover { background: #111; color: #FFD700; }

  /* Hero founder photo row */
  .hero-founders {
    display: flex; align-items: center; gap: 0.75rem; margin-top: 0;
  }
  .hero-founder-photos { display: flex; }
  .hero-founder-photo {
    width: 44px; height: 44px; border-radius: 50%;
    border: 3px solid #FFD700; overflow: hidden;
    margin-left: -10px; background: #111;
  }
  .hero-founder-photo:first-child { margin-left: 0; }
  .hero-founder-photo .img-placeholder {
    width: 100%; height: 100%; border: none; padding: 0;
    background: #333; border-radius: 50%;
  }
  .hero-founder-photo .img-placeholder-icon { font-size: 1rem; }
  .hero-founder-photo .img-placeholder-name,
  .hero-founder-photo .img-placeholder-hint,
  .hero-founder-photo .img-placeholder-size { display: none; }
  .hero-founder-text { font-size: 0.8rem; font-weight: 700; opacity: 0.75; }

  /* Hero right — screenshot + stats */
  .hero-right { display: flex; flex-direction: column; gap: 1.5rem; }
  .hero-screenshot { border: 3px solid #111; overflow: hidden; }
  .hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-box { background: #111; color: #FFD700; padding: 1.75rem 1.5rem; border: 2px solid #111; }
  .stat-box .num { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.4rem; }
  .stat-box .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.75; }
  .stat-box.yellow { background: #fff; color: #111; }
  .stat-box.yellow .num { color: #111; }

  /* Trust strip */
  .trust-strip { background: #111; color: #FFD700; padding: 1rem 2rem; border-bottom: 2px solid #111; }
  .trust-strip-inner { max-width: 1360px; margin: 0 auto; display: flex; align-items: center; gap: 2.5rem; overflow: hidden; }
  .trust-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.6; white-space: nowrap; flex-shrink: 0; }
  .trust-logos { display: flex; gap: 2rem; align-items: center; }
  .trust-logo-box {
    height: 36px; width: 110px; background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.2); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
    font-family: 'Poppins', sans-serif; font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,215,0,0.5);
    position: relative; cursor: default;
  }
  .trust-logo-box .logo-hint {
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    font-size: 0.55rem; color: rgba(255,215,0,0.35); white-space: nowrap;
    letter-spacing: 0.06em;
  }
  .trust-dot { width: 5px; height: 5px; background: #FFD700; border-radius: 50%; opacity: 0.2; flex-shrink: 0; }

  /* ── PORTFOLIO ── */
  .portfolio { padding: 5rem 2rem; background: #fff; border-bottom: 2px solid #111; }
  .section-inner { max-width: 1360px; margin: 0 auto; }
  .section-eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #e63946; margin-bottom: 0.75rem; }
  .section-heading { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 3rem; }

  .work-card {
    background: #FFD700; border: 2px solid #111;
    padding: 0; margin-bottom: 2rem;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .work-card-image { border-right: 2px solid #111; }
  .work-card-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
  .work-card-tag {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    background: #111; color: #FFD700; padding: 0.25rem 0.6rem;
    display: inline-block; margin-bottom: 1.25rem;
  }
  .work-card-tag.built { background: #e63946; color: #fff; }
  .work-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
  .work-card-body .sub { font-size: 0.85rem; font-weight: 700; opacity: 0.6; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
  .work-card-body p { font-size: 0.9rem; line-height: 1.7; }
  .work-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; }
  .pill { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.65rem; border: 1.5px solid #111; background: transparent; }

  .two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .work-card-sm { background: #f9f9f9; border: 2px solid #111; overflow: hidden; }
  .work-card-sm .work-card-tag { background: #e63946; color: #fff; }
  .work-card-sm .card-image { border-bottom: 2px solid #111; }
  .work-card-sm .card-body { padding: 2rem; }
  .work-card-sm h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
  .work-card-sm .sub { font-size: 0.75rem; font-weight: 700; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
  .work-card-sm p { font-size: 0.85rem; line-height: 1.65; }

  /* ── CTA CARDS ── */
  .cta-section { padding: 5rem 2rem; background: #f9f9f9; border-bottom: 2px solid #111; }
  .cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid #111; }
  .cta-card { padding: 3rem 2.5rem; border-right: 2px solid #111; }
  .cta-card:last-child { border-right: none; }
  .cta-card.red   { background: #e63946; color: #fff; }
  .cta-card.blue  { background: #0055b3; color: #fff; }
  .cta-card.yellow { background: #FFD700; color: #111; }
  .cta-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 800; line-height: 1.3; margin-bottom: 1rem; letter-spacing: -0.01em; }
  .cta-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; opacity: 0.9; }
  .cta-btn { display: inline-block; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.6rem 1.25rem; border: 2px solid currentColor; cursor: pointer; transition: all 0.2s; background: transparent; color: inherit; }
  .cta-card.red .cta-btn:hover   { background: #fff; color: #e63946; border-color: #fff; }
  .cta-card.blue .cta-btn:hover  { background: #fff; color: #0055b3; border-color: #fff; }
  .cta-card.yellow .cta-btn:hover { background: #111; color: #FFD700; border-color: #111; }

  /* ── SERVICES ── */
  .services { padding: 5rem 2rem; background: #fff; border-bottom: 2px solid #111; }
  .services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .services-sticky { position: sticky; top: 90px; }
  .services-desc { font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; max-width: 400px; }
  .services-list { display: flex; flex-direction: column; }
  .service-row {
    border-top: 2px solid #111; padding: 1.75rem 0;
    display: grid; grid-template-columns: auto 1fr auto;
    gap: 1.5rem; align-items: start; cursor: default; transition: background 0.2s;
  }
  .service-row:hover { background: #FFD700; margin: 0 -1rem; padding: 1.75rem 1rem; }
  .service-num { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.4; padding-top: 0.15rem; }
  .service-name { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
  .service-desc-text { font-size: 0.85rem; line-height: 1.65; opacity: 0.65; margin-top: 0.35rem; }
  .service-arrow { font-size: 1.1rem; opacity: 0.3; padding-top: 0.1rem; }

  /* ── PROCESS ── */
  .process { padding: 5rem 2rem; background: #FFD700; border-bottom: 3px solid #111; }
  .process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 3rem; border: 2px solid #111; }
  .process-step { padding: 3rem 2.5rem; border-right: 2px solid #111; }
  .process-step:last-child { border-right: none; }
  .step-num { font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 1.5rem; opacity: 0.15; letter-spacing: -0.04em; }
  .step-title { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
  .step-text { font-size: 0.9rem; line-height: 1.7; }

  /* ── WHY US ── */
  .why { padding: 5rem 2rem; background: #fff; border-bottom: 2px solid #111; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid #111; margin-top: 3rem; }
  .why-block { padding: 3rem 2.5rem; border-right: 2px solid #111; }
  .why-block:last-child { border-right: none; }
  .why-block:hover { background: #f9f9f9; }
  .why-count { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #e63946; margin-bottom: 1.5rem; }
  .why-title { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.01em; }
  .why-text { font-size: 0.9rem; line-height: 1.75; opacity: 0.7; }

  /* ── TEAM ── */
  .team { padding: 5rem 2rem; background: #111; color: #fff; border-bottom: 2px solid #111; }
  .team .section-eyebrow { color: #FFD700; }
  .team .section-heading { color: #fff; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid #FFD700; margin-top: 3rem; }
  .team-card { border-right: 2px solid rgba(255,215,0,0.25); transition: background 0.2s; overflow: hidden; }
  .team-card:last-child { border-right: none; }
  .team-card:hover { background: rgba(255,215,0,0.06); }
  .team-photo { border-bottom: 2px solid rgba(255,215,0,0.25); }
  .team-card-body { padding: 2rem 2.5rem 2.5rem; }
  .team-role { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #FFD700; opacity: 0.7; margin-bottom: 0.5rem; }
  .team-name { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
  .team-bio { font-size: 0.88rem; line-height: 1.7; opacity: 0.6; }

  /* ── CONTACT ── */
  .contact { padding: 5rem 2rem; background: #fff; border-bottom: 2px solid #111; }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .contact-info h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
  .contact-info p { font-size: 0.95rem; line-height: 1.8; opacity: 0.7; max-width: 380px; margin-bottom: 2rem; }
  .contact-detail { display: flex; gap: 0.75rem; align-items: baseline; margin-bottom: 0.75rem; font-size: 0.9rem; }
  .contact-detail strong { font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; min-width: 70px; }
  .contact-reach { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid #111; }
  .contact-reach p { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; opacity: 0.5; }
  .reach-links { display: flex; gap: 1.25rem; }
  .reach-link { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.45rem 1rem; border: 2px solid #111; transition: all 0.2s; }
  .reach-link:hover { background: #FFD700; }
  .form { display: flex; flex-direction: column; gap: 1rem; }
  .form input, .form select, .form textarea { width: 100%; padding: 0.9rem 1rem; border: 2px solid #111; background: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; appearance: none; }
  .form input:focus, .form select:focus, .form textarea:focus { border-color: #FFD700; background: #fffde7; }
  .form textarea { resize: none; }
  .form-submit { background: #111; color: #FFD700; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 1rem; border: 2px solid #111; cursor: pointer; transition: all 0.2s; }
  .form-submit:hover { background: #FFD700; color: #111; }

  /* ── FOOTER ── */
  footer { background: #FFD700; border-top: 3px solid #111; padding: 3rem 2rem; }
  .footer-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; gap: 3rem; align-items: start; }
  .footer-logo { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
  .footer-tagline { font-size: 0.85rem; opacity: 0.65; font-weight: 500; }
  .footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-nav a { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; transition: opacity 0.2s; }
  .footer-nav a:hover { opacity: 1; }
  .footer-social { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-social a { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; transition: opacity 0.2s; }
  .footer-social a:hover { opacity: 1; }
  .footer-bottom { max-width: 1360px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 2px solid rgba(0,0,0,0.15); text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.5; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner, .services-layout, .contact-layout { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .work-card { grid-template-columns: 1fr; }
    .work-card-image { border-right: none; border-bottom: 2px solid #111; }
    .cta-grid, .process-steps, .why-grid, .team-grid { grid-template-columns: 1fr; }
    .cta-card, .process-step, .why-block { border-right: none; border-bottom: 2px solid #111; }
    .team-card { border-right: none; border-bottom: 2px solid rgba(255,215,0,0.25); }
    .two-cards { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .services-sticky { position: static; }
  }

  /* ══════════════════════════════════════
     SERVICE PAGE ADDITIONS
     ══════════════════════════════════════ */

  .nav-links a.active { color: #e63946; }

  /* Page hero */
  .page-hero { background: #FFD700; padding: 4rem 2rem; border-bottom: 3px solid #111; }
  .page-hero-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
  .crumb { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.55; margin-bottom: 1rem; }
  .crumb a:hover { opacity: 1; text-decoration: underline; }
  .page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
  .page-hero-sub { font-size: 1.05rem; line-height: 1.75; max-width: 520px; font-weight: 500; margin-bottom: 2rem; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid #111; background: #fff; }
  .hero-fact { padding: 1.5rem 1.25rem; border-right: 2px solid #111; }
  .hero-fact:last-child { border-right: none; }
  .hero-fact .num { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 900; line-height: 1; margin-bottom: 0.35rem; }
  .hero-fact .label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; line-height: 1.4; }

  /* Generic section */
  .section { padding: 5rem 2rem; border-bottom: 2px solid #111; background: #fff; }
  .section.grey { background: #f9f9f9; }
  .section.yellow { background: #FFD700; }
  .section.dark { background: #111; color: #fff; }
  .section.dark .section-heading { color: #fff; }
  .section.dark .section-eyebrow { color: #FFD700; }
  .section-lead { font-size: 1rem; line-height: 1.8; max-width: 640px; margin-top: -2rem; margin-bottom: 3rem; opacity: 0.75; }
  .section.dark .section-lead { opacity: 0.7; }

  /* Bordered box grids */
  .box-grid { display: grid; border: 2px solid #111; }
  .box-grid.c2 { grid-template-columns: repeat(2, 1fr); }
  .box-grid.c3 { grid-template-columns: repeat(3, 1fr); }
  .box-grid.c4 { grid-template-columns: repeat(4, 1fr); }
  .box { padding: 2.5rem 2rem; border-right: 2px solid #111; border-bottom: 2px solid #111; }
  .box-grid.c2 .box:nth-child(2n), .box-grid.c3 .box:nth-child(3n), .box-grid.c4 .box:nth-child(4n) { border-right: none; }
  .box h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
  .box p { font-size: 0.9rem; line-height: 1.75; opacity: 0.72; }
  .box .tagnum { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #e63946; margin-bottom: 1.25rem; }
  .section.dark .box { border-color: rgba(255,215,0,0.3); }
  .section.dark .box-grid { border-color: #FFD700; }
  .section.dark .box p { opacity: 0.6; }
  .section.dark .box .tagnum { color: #FFD700; }

  /* Checklist */
  .checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 2rem; }
  .checklist li { font-size: 0.92rem; line-height: 1.6; padding-left: 1.75rem; position: relative; }
  .checklist li::before { content: '✓'; position: absolute; left: 0; font-weight: 800; color: #e63946; }
  .section.dark .checklist li::before { color: #FFD700; }

  /* Split: text + panel */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .panel { border: 2px solid #111; padding: 2.5rem; background: #FFD700; }
  .panel h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 800; margin-bottom: 1rem; }
  .panel.dark { background: #111; color: #fff; border-color: #111; }

  /* Pricing */
  .price-card { display: flex; flex-direction: column; }
  .price-card .amount { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
  .price-card .amount small { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.5; display: block; margin-top: 0.4rem; }
  .price-card ul { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
  .price-card ul li { font-size: 0.85rem; line-height: 1.55; padding-left: 1.25rem; position: relative; opacity: 0.8; }
  .price-card ul li::before { content: '—'; position: absolute; left: 0; opacity: 0.4; }
  .price-card.featured { background: #FFD700; }

  /* Timeline */
  .timeline { border-top: 2px solid #111; }
  .tl-row { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; padding: 1.75rem 0; border-bottom: 2px solid #111; }
  .tl-when { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.5; padding-top: 0.2rem; }
  .tl-body h4 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.4rem; }
  .tl-body p { font-size: 0.9rem; line-height: 1.7; opacity: 0.7; }

  /* FAQ */
  .faq { border-top: 2px solid #111; max-width: 900px; }
  .faq details { border-bottom: 2px solid #111; padding: 1.35rem 0; }
  .faq summary { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 2rem; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: '+'; font-weight: 800; opacity: 0.4; }
  .faq details[open] summary::after { content: '–'; }
  .faq p { font-size: 0.92rem; line-height: 1.8; opacity: 0.75; margin-top: 0.85rem; max-width: 720px; }

  /* CTA band */
  .cta-band { background: #111; color: #fff; padding: 4rem 2rem; border-bottom: 2px solid #111; }
  .cta-band-inner { max-width: 1360px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 3rem; flex-wrap: wrap; }
  .cta-band h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; max-width: 620px; }
  .cta-band p { font-size: 0.95rem; opacity: 0.6; margin-top: 0.85rem; max-width: 560px; }
  .btn-yellow { background: #FFD700; color: #111; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 1rem 2.25rem; border: 2px solid #FFD700; cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.06em; display: inline-block; }
  .btn-yellow:hover { background: transparent; color: #FFD700; }

  /* Related services */
  .rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .rel-card { border: 2px solid #111; padding: 1.5rem; transition: background 0.2s; display: block; }
  .rel-card:hover { background: #FFD700; }
  .rel-card .t { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 800; margin-bottom: 0.35rem; }
  .rel-card .d { font-size: 0.8rem; opacity: 0.65; line-height: 1.5; }

  @media (max-width: 900px) {
    .page-hero-inner, .split { grid-template-columns: 1fr; gap: 2.5rem; }
    .box-grid.c2, .box-grid.c3, .box-grid.c4 { grid-template-columns: 1fr; }
    .box { border-right: none !important; }
    .checklist { grid-template-columns: 1fr; }
    .hero-facts { grid-template-columns: 1fr; }
    .hero-fact { border-right: none; border-bottom: 2px solid #111; }
    .tl-row { grid-template-columns: 1fr; gap: 0.5rem; }
    .rel-grid { grid-template-columns: 1fr; }
  }

  /* Service hub cards + grid edge cleanup */
  .box-grid { border-bottom: none; }
  a.box { transition: background 0.2s; }
  a.box:hover { background: #FFD700; }
  a.box:hover p { opacity: 0.85; }
  a.service-row { color: inherit; }
