  :root {
    --bg: #ffffff;
    --bg-soft: #fbf3f1;
    --card: #ffffff;
    --border: rgba(20, 10, 10, 0.10);
    --text: #1c1416;
    --muted: #6e6360;
    --brand: #e8463e;
    --brand-2: #d8362c;
    --accent: #ff5347;
    --grad: linear-gradient(120deg, #ff5347 0%, #e8463e 48%, #b81d2c 100%);
    --shadow: 0 6px 24px rgba(40, 15, 15, 0.06);
    --shadow-lg: 0 26px 52px rgba(40, 15, 15, 0.12);
    --radius: 18px;
    --maxw: 1180px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    background-image: radial-gradient(900px circle at 80% -5%, rgba(232,70,62,.07), transparent 55%), radial-gradient(700px circle at 0% 8%, rgba(232, 70, 62,.06), transparent 50%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .logo, .stat-num { font-family: 'Sora', sans-serif; }
  a { color: inherit; text-decoration: none; }
  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  section { position: relative; }

  .grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px; border-radius: 999px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s;
  }
  .btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(232, 70, 62, .35); }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232, 70, 62, .5); }
  .btn-ghost { background: var(--card); border-color: var(--border); color: var(--text); }
  .btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand); }

  /* ---------- Nav ---------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .3s, backdrop-filter .3s, border-color .3s;
    border-bottom: 1px solid transparent;
  }
  header.scrolled {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 24px rgba(40, 15, 15, .05);
  }
  nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 92px; }
  .logo { display: inline-flex; align-items: center; flex-shrink: 0; }
  .logo img { display: block; height: 56px; width: auto; }
  footer .logo img { height: 54px; }

  /* ---------- 3D menu ---------- */
  .nav-links {
    display: flex; align-items: center; gap: 4px; list-style: none;
    padding: 6px; border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #f3eae8);
    border: 1px solid rgba(20,10,10,.08);
    box-shadow: 0 10px 26px rgba(40,15,15,.08), inset 0 1px 0 #fff, inset 0 -2px 6px rgba(40,15,15,.05);
    transform-style: preserve-3d;
  }
  .nav-links > li { position: relative; perspective: 700px; }
  .nav-links > li > a {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-radius: 11px;
    color: var(--muted); font-size: 14.5px; font-weight: 600; white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, color .2s, background .2s;
  }
  .nav-links > li > a .car { font-size: 10px; opacity: .7; transition: transform .25s; }
  .nav-links > li > a:hover {
    color: #fff;
    background: linear-gradient(145deg, #ff5347, #d8362c);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(232, 70, 62,.4), inset 0 1px 0 rgba(255,255,255,.3);
  }
  .has-dropdown:hover > a .car { transform: rotate(180deg); }

  .dropdown {
    position: absolute; top: 100%; left: 0; min-width: 248px; margin-top: 14px;
    list-style: none; padding: 8px; border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(20,10,10,.08);
    box-shadow: 0 28px 60px rgba(40,15,15,.16);
    opacity: 0; visibility: hidden;
    transform: rotateX(-82deg); transform-origin: top center;
    transition: opacity .26s ease, transform .26s ease, visibility .26s;
    z-index: 60;
  }
  .dropdown::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; } /* hover bridge */
  .has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: rotateX(0); }
  .dropdown li a {
    display: block; padding: 10px 14px; border-radius: 9px;
    color: var(--muted); font-size: 14px; white-space: nowrap;
    transition: background .18s, color .18s, transform .18s;
  }
  .dropdown li a:hover { background: rgba(232, 70, 62,.1); color: var(--brand); transform: translateX(5px); }

  .nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
  .menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 28px; cursor: pointer; }

  /* ---------- Hero ---------- */
  .hero {
    padding: 184px 0 130px; overflow: hidden;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 48%, rgba(251,243,241,.94) 100%),
      url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat;
  }
  .orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .22; z-index: 0; pointer-events: none; }
  .orb.a { width: 520px; height: 520px; background: #ff5347; top: -120px; right: -120px; animation: float 14s ease-in-out infinite; }
  .orb.b { width: 460px; height: 460px; background: #f0584e; bottom: -160px; left: -120px; animation: float 18s ease-in-out infinite reverse; }
  .orb.c { width: 320px; height: 320px; background: #ff5347; top: 40%; left: 45%; opacity: .14; animation: float 12s ease-in-out infinite; }
  @keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-40px); } }

  .hero-inner { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
    background: var(--card); border: 1px solid var(--border); color: var(--muted);
    margin-bottom: 26px;
  }
  .pill .live { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 0 rgba(255, 107, 94,.7); animation: pulse 2s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 94,.6); } 70% { box-shadow: 0 0 0 10px rgba(255, 107, 94,0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 94,0); } }

  .hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; font-weight: 800; letter-spacing: -1.5px; }
  .hero p.sub { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 24px auto 38px; max-width: 620px; }
  .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .trust { margin-top: 46px; color: var(--muted); font-size: 14px; }
  .trust strong { color: var(--text); }

  /* ---------- Marquee ---------- */
  .marquee { margin-top: 64px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
  .marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 26s linear infinite; }
  .marquee span { color: var(--muted); font-weight: 600; font-size: 17px; white-space: nowrap; opacity: .7; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ---------- Section headers ---------- */
  .sec-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
  .sec-head .tag { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-2); }
  .sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 12px; letter-spacing: -1px; line-height: 1.1; }
  .sec-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }
  .pad { padding: 110px 0; }

  /* ---------- Stats ---------- */
  .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
  .stat-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
  .stat-label { color: var(--muted); font-size: 14px; margin-top: 6px; }

  /* ---------- Services ---------- */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service {
    position: relative; overflow: hidden; isolation: isolate;
    display: flex; flex-direction: column;
    padding: 34px 28px; border-radius: 20px; color: var(--text);
    background: var(--card);
    border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .35s ease, border-color .35s, box-shadow .35s;
  }
  .service::before { /* cursor-follow spotlight */
    content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none; z-index: -1;
    background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(232,70,62,.1), transparent 60%);
    transition: opacity .3s;
  }
  .service::after { /* animated top accent bar */
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
  }
  .service:hover { transform: translateY(-8px); border-color: rgba(232,70,62,.4); box-shadow: 0 26px 50px rgba(232,70,62,.16); }
  .service:hover::before { opacity: 1; }
  .service:hover::after { transform: scaleX(1); }

  .s-num {
    position: absolute; top: 16px; right: 24px; pointer-events: none;
    font-family: 'Sora', sans-serif; font-weight: 800; font-size: 3.4rem; line-height: 1;
    color: rgba(20,10,10,.055); transition: color .35s;
  }
  .service:hover .s-num { color: rgba(232,70,62,.16); }

  .s-ico {
    width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
    font-size: 26px; margin-bottom: 22px;
    background: linear-gradient(145deg, rgba(232,70,62,.3), rgba(184,29,44,.1));
    border: 1px solid rgba(232,70,62,.32);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 8px 18px rgba(232,70,62,.18);
    transition: transform .35s ease, box-shadow .35s;
  }
  .service:hover .s-ico { transform: translateY(-2px) scale(1.07) rotate(-4deg); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 14px 28px rgba(232,70,62,.42); }

  .service h3 { font-size: 1.22rem; margin-bottom: 10px; letter-spacing: -.3px; }
  .service p { color: var(--muted); font-size: 14.5px; }

  .s-link {
    margin-top: auto; padding-top: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--brand-2);
    opacity: 0; transform: translateX(-8px); transition: opacity .35s, transform .35s;
  }
  .service:hover .s-link { opacity: 1; transform: translateX(0); }
  .s-link .ar { transition: transform .3s; }
  .service:hover .s-link .ar { transform: translateX(5px); }

  /* ---------- Process ---------- */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .step { position: relative; padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow); }
  .step .n { font-family: 'Sora'; font-size: 14px; font-weight: 700; color: var(--brand-2); letter-spacing: 2px; }
  .step h3 { font-size: 1.1rem; margin: 14px 0 8px; }
  .step p { color: var(--muted); font-size: 14px; }

  /* ---------- Showcase / portfolio ---------- */
  .work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .work-item {
    display: block; position: relative; overflow: hidden;
    border-radius: var(--radius); aspect-ratio: 4/3.4;
    border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .4s ease, box-shadow .4s ease;
  }
  .work-item img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform .65s ease;
  }
  .work-item::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, rgba(22,8,8,.88) 0%, rgba(22,8,8,.34) 40%, rgba(22,8,8,.05) 66%);
  }
  .work-item:hover { transform: translateY(-8px); box-shadow: 0 28px 52px rgba(40,15,15,.24); }
  .work-item:hover img { transform: scale(1.09); }

  .w-cat {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: #fff; padding: 6px 12px; border-radius: 999px;
    background: rgba(232,70,62,.92); box-shadow: 0 6px 16px rgba(232,70,62,.4);
  }
  .work-item .label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; }
  .work-item .label h3 { font-size: 1.2rem; color: #fff; letter-spacing: -.2px; }
  .w-view {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 9px;
    font-size: 13.5px; font-weight: 600; color: #ffb0a6;
    opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease;
  }
  .work-item:hover .w-view { opacity: 1; transform: translateY(0); }
  .w-view .ar { transition: transform .3s; }
  .work-item:hover .w-view .ar { transform: translateX(4px); }

  /* ---------- Testimonials ---------- */
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .quote { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
  .quote .stars { color: #ffce4f; letter-spacing: 2px; margin-bottom: 14px; }
  .quote p { font-size: 15px; }
  .quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
  .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; font-family: 'Sora'; color: #fff; }
  .who .name { font-weight: 600; font-size: 15px; }
  .who .role { color: var(--muted); font-size: 13px; }

  /* ---------- CTA ---------- */
  .cta-band {
    position: relative; border-radius: 28px; overflow: hidden;
    padding: 70px 40px; text-align: center;
    border: 1px solid var(--border);
    background: radial-gradient(800px circle at 30% 0%, rgba(232, 70, 62,.12), transparent 60%), radial-gradient(700px circle at 80% 100%, rgba(232, 70, 62,.12), transparent 55%), var(--bg-soft);
  }
  .cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -1px; max-width: 700px; margin: 0 auto 18px; }
  .cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; font-size: 17px; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ---------- Footer ---------- */
  footer {
    position: relative; overflow: hidden; margin-top: 100px;
    background: linear-gradient(180deg, #141414 0%, #000000 100%);
    color: #f1e6e4; padding: 70px 0 30px;
  }
  footer::before {
    content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
    width: 720px; height: 300px; pointer-events: none;
    background: radial-gradient(closest-side, rgba(232,70,62,.32), transparent 70%);
  }

  .foot-cta {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    background: var(--grad); border-radius: 24px; padding: 34px 44px; margin-bottom: 58px;
    box-shadow: 0 24px 50px rgba(232,70,62,.32);
  }
  .foot-cta h3 { color: #fff; font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.5px; line-height: 1.15; }
  .foot-cta p { color: rgba(255,255,255,.9); margin-top: 6px; font-size: 15px; }
  .btn-light { background: #000; color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.35); }
  .btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.5); }

  .foot-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 40px; }
  .foot-grid h4 { font-family: 'Sora'; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
  .foot-grid ul { list-style: none; display: grid; gap: 13px; }
  .foot-grid a { color: rgba(236,224,221,.68); font-size: 15px; transition: color .2s, transform .2s; }
  .foot-grid a:hover { color: #fff; }
  .foot-links a { display: inline-block; }
  .foot-links a:hover { color: #ff7d72; transform: translateX(4px); }

  .foot-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.35rem; letter-spacing: -.5px; color: #fff; display: inline-block; }
  .foot-logo span { color: var(--brand); }
  .foot-about p { color: rgba(236,224,221,.62); font-size: 15px; margin: 18px 0 20px; max-width: 300px; }
  .foot-socials { display: flex; gap: 10px; }
  .foot-socials a {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: rgba(232,70,62,.1); border: 1px solid rgba(232,70,62,.28); color: #f1e6e4;
    transition: background .25s, transform .25s, border-color .25s;
  }
  .foot-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); border-color: transparent; }
  .foot-socials svg { width: 18px; height: 18px; fill: currentColor; }

  .foot-contact-row { color: rgba(236,224,221,.7); font-size: 15px; margin-bottom: 13px; display: flex; gap: 10px; align-items: flex-start; }
  .foot-contact-row a:hover { color: #fff; }
  .foot-news { margin-top: 20px; }
  .foot-news form { display: flex; gap: 8px; }
  .foot-news input {
    flex: 1; min-width: 0; padding: 12px 14px; border-radius: 11px;
    background: rgba(232,70,62,.08); border: 1px solid rgba(232,70,62,.28);
    color: #fff; font-family: inherit; font-size: 14px; transition: border-color .2s, background .2s;
  }
  .foot-news input::placeholder { color: rgba(241,230,228,.5); }
  .foot-news input:focus { outline: none; border-color: var(--brand); background: rgba(232,70,62,.14); }
  .foot-news button {
    flex-shrink: 0; padding: 0 18px; border: none; border-radius: 11px; cursor: pointer;
    background: var(--grad); color: #fff; font-weight: 600; font-family: inherit; font-size: 14px;
    transition: transform .2s, box-shadow .2s;
  }
  .foot-news button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(232,70,62,.45); }
  .foot-news .news-ok { color: var(--brand); font-weight: 600; font-size: 14px; margin-top: 10px; display: none; }
  .foot-news .news-ok.show { display: block; }

  .foot-bottom {
    position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; margin-top: 56px; padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.1); color: rgba(236,224,221,.6); font-size: 14px;
  }
  .foot-bottom .legal { display: flex; gap: 22px; }

  /* ---------- Reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.show { opacity: 1; transform: none; }

  /* ---------- Contact form ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: stretch; }
  .contact-info { display: flex; flex-direction: column; gap: 22px; }
  .contact-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -1px; line-height: 1.1; }
  .contact-info p.lead { color: var(--muted); font-size: 17px; max-width: 420px; }
  .contact-list { display: grid; gap: 16px; margin-top: 8px; }
  .contact-row { display: flex; align-items: center; gap: 16px; }
  .contact-row .ci {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    font-size: 20px; background: rgba(232, 70, 62,.14); border: 1px solid var(--border); flex-shrink: 0;
  }
  .contact-row .ck { font-size: 13px; color: var(--muted); }
  .contact-row .cv { font-weight: 600; }
  .contact-row a.cv:hover { color: var(--brand-2); }

  .form-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-lg); }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px; border-radius: 12px;
    background: #faf5f4; border: 1px solid var(--border);
    color: var(--text); font-family: inherit; font-size: 15px; transition: border-color .2s, background .2s, box-shadow .2s;
  }
  .field textarea { resize: vertical; min-height: 120px; }
  .field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9bb3' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
  .field select option { background: var(--bg-soft); color: var(--text); }
  .field input::placeholder, .field textarea::placeholder { color: #a99e9c; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(232,70,62,.12); }
  .field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--accent); }
  .field .err { display: none; color: var(--accent); font-size: 13px; margin-top: 6px; }
  .field.invalid .err { display: block; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .form-card button[type="submit"] { width: 100%; justify-content: center; margin-top: 6px; border: none; }
  .form-success {
    display: none; text-align: center; padding: 30px 10px;
  }
  .form-success.show { display: block; }
  .form-success .check {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
    font-size: 30px; background: rgba(255, 107, 94,.16); border: 1px solid rgba(255, 107, 94,.4); color: var(--brand-2);
  }
  .form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
  .form-success p { color: var(--muted); }

  /* ---------- One-stop package ---------- */
  .pkg { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .pkg-item {
    text-align: center; padding: 26px 14px; border-radius: 16px;
    background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
  }
  .pkg-item:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(232,70,62,.15); }
  .pkg-item .pico { font-size: 30px; margin-bottom: 12px; }
  .pkg-item h4 { font-size: 14px; font-family: 'Sora', sans-serif; letter-spacing: -.2px; }

  /* ---------- About ---------- */
  .about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
  .about-media { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; }
  .about-media img { width: 100%; height: 100%; object-fit: cover; }
  .about-badge {
    position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,.95);
    border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
  }
  .about-badge strong { font-family: 'Sora', sans-serif; font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .about-badge span { display: block; font-size: 13px; color: var(--muted); }
  .about-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -1px; line-height: 1.12; margin: 14px 0 18px; }
  .about-copy p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
  .about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
  .about-check { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
  .about-check .ck { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: rgba(232,70,62,.12); color: var(--brand); font-size: 13px; flex-shrink: 0; }

  /* ---------- Industries ---------- */
  .industries { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .ind {
    display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
    padding: 26px 14px; border-radius: 16px; background: var(--card);
    border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .3s, border-color .3s;
  }
  .ind:hover { transform: translateY(-6px); border-color: rgba(232,70,62,.4); }
  .ind .iico {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 24px;
    background: linear-gradient(145deg, rgba(232,70,62,.16), rgba(184,29,44,.06)); border: 1px solid rgba(232,70,62,.22);
  }
  .ind span { font-weight: 600; font-size: 14px; }

  /* ---------- Blog ---------- */
  .blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .post {
    display: flex; flex-direction: column; border-radius: 22px; overflow: hidden;
    background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  }
  .post:hover { transform: translateY(-8px); border-color: rgba(232,70,62,.4); box-shadow: 0 30px 56px rgba(40,15,15,.16); }
  .post-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
  .post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
  .post:hover .post-img img { transform: scale(1.08); }
  .post-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,8,8,.28), transparent 45%); }
  .post-cat {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    color: #fff; padding: 7px 13px; border-radius: 999px;
    background: rgba(232,70,62,.95); box-shadow: 0 8px 18px rgba(232,70,62,.4);
  }
  .post-body { padding: 24px 24px 22px; display: flex; flex-direction: column; flex: 1; }
  .post-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); margin-bottom: 12px; }
  .post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); opacity: .6; }
  .post-body h3 { font-size: 1.18rem; margin-bottom: 12px; letter-spacing: -.3px; line-height: 1.32; transition: color .25s; }
  .post:hover .post-body h3 { color: var(--brand); }
  .post-excerpt { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 20px; }
  .post-foot {
    margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .post-read { font-size: 14px; font-weight: 600; color: var(--text); transition: color .25s; }
  .post:hover .post-read { color: var(--brand); }
  .post-arrow {
    width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
    border: 1px solid var(--border); color: var(--brand); font-size: 17px;
    transition: background .3s, color .3s, border-color .3s, transform .3s;
  }
  .post:hover .post-arrow { background: var(--grad); color: #fff; border-color: transparent; transform: rotate(-45deg); }

  /* ---------- FAQ ---------- */
  .faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
  .faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; transition: border-color .3s; }
  .faq-item.open { border-color: rgba(232,70,62,.4); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 22px 26px; font-size: 16px; font-weight: 600; font-family: inherit; color: var(--text);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .faq-q .fi { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: rgba(232,70,62,.12); color: var(--brand); font-size: 20px; line-height: 1; transition: transform .3s, background .3s, color .3s; }
  .faq-item.open .faq-q .fi { transform: rotate(45deg); background: var(--brand); color: #fff; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-a p { padding: 0 26px 22px; color: var(--muted); font-size: 15px; }

  /* ---------- Legal pages ---------- */
  .legal-content { max-width: 820px; margin: 0 auto; }
  .legal-content .updated { display: inline-block; font-size: 13px; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; margin-bottom: 26px; }
  .legal-content h2 { font-size: 1.45rem; letter-spacing: -.3px; margin: 34px 0 12px; }
  .legal-content h2:first-of-type { margin-top: 0; }
  .legal-content p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
  .legal-content ul { margin: 0 0 16px 20px; color: var(--muted); display: grid; gap: 9px; font-size: 15.5px; line-height: 1.6; }
  .legal-content a { color: var(--brand); font-weight: 600; }

  /* ---------- Quote modal ---------- */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000; padding: 24px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(12,4,4,.62); backdrop-filter: blur(5px);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal {
    position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
    background: var(--card); border: 1px solid var(--border); border-radius: 24px;
    box-shadow: var(--shadow-lg); padding: 38px;
    transform: translateY(24px) scale(.97); transition: transform .35s ease;
  }
  .modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 24px 24px 0 0; background: var(--grad); }
  .modal-overlay.open .modal { transform: none; }
  .modal-close {
    position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--bg-soft); color: var(--text);
    font-size: 17px; cursor: pointer; display: grid; place-items: center;
    transition: background .25s, color .25s, border-color .25s, transform .3s;
  }
  .modal-close:hover { background: var(--brand); color: #fff; border-color: transparent; transform: rotate(90deg); }
  .modal-head { margin-bottom: 22px; padding-right: 36px; }
  .modal-head .tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-2); }
  .modal-head h3 { font-family: 'Sora', sans-serif; font-size: clamp(1.4rem, 3vw, 1.7rem); letter-spacing: -.5px; margin: 8px 0 8px; }
  .modal-head p { color: var(--muted); font-size: 15px; }

  /* ---------- Contact page extras ---------- */
  .contact-socials { display: flex; gap: 10px; margin-top: 4px; }
  .contact-socials a {
    width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(232,70,62,.1); border: 1px solid rgba(232,70,62,.25); color: var(--brand);
    transition: background .25s, color .25s, border-color .25s, transform .25s;
  }
  .contact-socials a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }
  .contact-socials svg { width: 18px; height: 18px; fill: currentColor; }
  .map { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); line-height: 0; }
  .map iframe { width: 100%; height: 440px; border: 0; display: block; }

  /* ---------- Page hero (subpages) ---------- */
  .page-hero {
    position: relative; overflow: hidden; text-align: center; padding: 160px 0 72px;
    border-bottom: 1px solid var(--border);
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.7) 50%, rgba(251,243,241,.96) 100%),
      url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center;
  }
  .page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -1.5px; font-weight: 800; }
  .crumb { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); margin-top: 14px; }
  .crumb a:hover { color: var(--brand); }
  .crumb .sep { opacity: .5; }

  /* ---------- Why choose us ---------- */
  .why-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
  .why-intro .tag { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-2); }
  .why-intro h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -1px; line-height: 1.12; margin: 14px 0 18px; }
  .why-intro p { color: var(--muted); font-size: 16px; margin-bottom: 28px; max-width: 380px; }

  .why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-row {
    position: relative; display: flex; gap: 16px; align-items: flex-start;
    padding: 24px 22px; border-radius: 16px; overflow: hidden;
    background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .3s, border-color .3s, box-shadow .3s;
  }
  .why-row::before { /* left accent bar */
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--grad); transform: scaleY(0); transform-origin: top; transition: transform .35s ease;
  }
  .why-row:hover { transform: translateY(-5px); border-color: rgba(232,70,62,.4); box-shadow: 0 20px 40px rgba(232,70,62,.13); }
  .why-row:hover::before { transform: scaleY(1); }
  .why-row .wico {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 22px;
    background: linear-gradient(145deg, rgba(232,70,62,.18), rgba(184,29,44,.06)); border: 1px solid rgba(232,70,62,.24);
    transition: transform .3s;
  }
  .why-row:hover .wico { transform: scale(1.08) rotate(-4deg); }
  .why-row h3 { font-size: 1.05rem; margin-bottom: 5px; letter-spacing: -.2px; }
  .why-row p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

  /* ---------- Pillars ---------- */
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pillar { text-align: center; padding: 38px 26px; border-radius: 20px; background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .3s; }
  .pillar:hover { transform: translateY(-6px); }
  .pillar .pnum { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .pillar h3 { font-size: 1.2rem; margin: 10px 0 8px; letter-spacing: -.3px; }
  .pillar p { color: var(--muted); font-size: 14.5px; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1080px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    /* Inside the mobile menu, dropdowns expand inline (no 3D flip) */
    .nav-links .has-dropdown { perspective: none; }
    .nav-links .dropdown {
      position: static; opacity: 1; visibility: visible; transform: none;
      min-width: auto; margin: 4px 0 8px; padding: 4px 0 4px 12px;
      background: rgba(20,10,10,.03); border: none; box-shadow: none;
    }
    .nav-links > li > a:hover { transform: none; box-shadow: none; }
  }
  @media (max-width: 900px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .steps, .work, .quotes, .blog, .pillars { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid, .about-grid, .why-split { grid-template-columns: 1fr; gap: 36px; }
    .pkg { grid-template-columns: repeat(3, 1fr); }
    .industries { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 600px) {
    .services-grid, .steps, .work, .quotes, .stats, .foot-grid, .blog, .why-list, .pillars { grid-template-columns: 1fr; }
    .pkg, .industries, .about-checks { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 26px; }
    .hero { padding: 140px 0 80px; }
    .pad { padding: 80px 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }
