/* ============================================================
   BRIGHT SOLUTION & SERVICE — Landing Page
   Design system: Singapore flag red / black / white + Poppins
   ============================================================ */

:root {
  --red: #EF3340;
  --red-deep: #D31C28;
  --red-soft: #FDECEC;
  --ink: #0F0F10;
  --ink-2: #1A1A1C;
  --white: #FFFFFF;
  --cream: #FAF9F7;
  --cream-2: #F3F1ED;
  --gray: #6B6B70;
  --gray-2: #9A9AA0;
  --line: #ECEAE6;
  --line-dark: rgba(255,255,255,0.12);

  --maxw: 1180px;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-card: 0 18px 50px -24px rgba(15,15,16,.28);
  --shadow-soft: 0 10px 40px -20px rgba(15,15,16,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection { background: var(--red); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px;
}
.eyebrow.light { color: #fff; }
.eyebrow.light::before { background: var(--red); }
.eyebrow.center { justify-content: center; }

h1,h2,h3 { line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; }

.section { padding: 120px 0; position: relative; }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-title {
  font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-top: 18px;
  text-wrap: balance;
}
.section-sub { color: var(--gray); font-size: 16px; font-weight: 400; margin-top: 22px; max-width: 620px; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15.5px; border-radius: 100px;
  padding: 16px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px -12px rgba(239,51,64,.6); }
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 20px 44px -14px rgba(239,51,64,.7); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-lg { padding: 19px 36px; font-size: 16.5px; }
.btn:active { transform: scale(.97); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s, border-color .4s;
  padding: 22px 0; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.82); backdrop-filter: blur(18px) saturate(1.2);
  padding: 12px 0; border-bottom: 1px solid var(--line); box-shadow: 0 8px 30px -22px rgba(0,0,0,.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.nav-logo { display: flex; align-items: center; height: 62px; transition: height .4s var(--ease); }
.nav.scrolled .nav-logo { height: 50px; }
.nav-logo img { height: 100%; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--red); }
.nav-link.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 14.5px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1.5px var(--line); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 8px 8px 16px; font-size: 13.5px; font-weight: 500; color: var(--gray);
  box-shadow: var(--shadow-soft);
}
.hero-badge b { color: var(--ink); font-weight: 600; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.hero-badge .pill { background: var(--red-soft); color: var(--red-deep); font-weight: 600; padding: 4px 12px; border-radius: 100px; font-size: 12.5px; }
.hero h1 {
  font-size: clamp(34px, 4.4vw, 48px); font-weight: 800; margin: 26px 0 0; letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--red); position: relative; white-space: nowrap; }
.hero h1 .hl .underline {
  position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; background: rgba(239,51,64,.16); z-index: -1; border-radius: 4px;
  transform: scaleX(0); transform-origin: left; animation: growLine 1s var(--ease) 1s forwards;
}
@keyframes growLine { to { transform: scaleX(1); } }
.hero-sub { font-size: 17px; color: var(--gray); margin-top: 26px; max-width: 540px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .stars { display: flex; gap: 3px; color: var(--red); }
.hero-trust .stars svg { width: 18px; height: 18px; }
.hero-trust .txt { font-size: 14px; color: var(--gray); }
.hero-trust .txt b { color: var(--ink); font-weight: 600; }
.hero-divider { width: 1px; height: 34px; background: var(--line); }

/* hero visual */
.hero-visual { position: relative; height: 540px; }
.hero-photo {
  position: absolute; inset: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.float-card {
  position: absolute; background: #fff; border-radius: var(--r-md); padding: 16px 18px;
  box-shadow: var(--shadow-card); border: 1px solid var(--line); display: flex; align-items: center; gap: 13px;
}
.float-card .ic { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card .ic.red { background: var(--red-soft); color: var(--red); }
.float-card .ic.dark { background: var(--ink); color: #fff; }
.float-card .ic svg { width: 22px; height: 22px; }
.float-card .lbl { font-size: 12px; color: var(--gray); font-weight: 500; }
.float-card .val { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.fc-1 { top: 28px; left: -34px; animation: floatA 6s ease-in-out infinite; }
.fc-2 { bottom: 96px; right: -30px; animation: floatB 7s ease-in-out infinite; }
.fc-3 { bottom: -22px; left: 40px; animation: floatA 8s ease-in-out infinite .5s; }
@keyframes floatA { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-16px);} }
@keyframes floatB { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(14px);} }

.blob { position: absolute; border-radius: 50%; filter: blur(50px); z-index: -1; }
.blob-red { width: 420px; height: 420px; background: rgba(239,51,64,.16); top: -80px; right: -60px; animation: drift 14s ease-in-out infinite; }
.blob-ink { width: 360px; height: 360px; background: rgba(15,15,16,.06); bottom: -120px; left: -80px; animation: drift 18s ease-in-out infinite reverse; }
@keyframes drift { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(30px,20px) scale(1.08);} }

/* sparkle */
.sparkle { position: absolute; color: var(--red); animation: twinkle 3s ease-in-out infinite; }
@keyframes twinkle { 0%,100%{ opacity:.3; transform: scale(.8) rotate(0);} 50%{ opacity:1; transform: scale(1.1) rotate(20deg);} }

/* ---------- Marquee strip ---------- */
.strip { background: var(--ink); color: #fff; padding: 20px 0; overflow: hidden; }
.marquee { display: flex; gap: 0; width: max-content; animation: scrollx 32s linear infinite; }
.marquee.rev { animation-direction: reverse; }
.marquee .item { display: flex; align-items: center; gap: 16px; padding: 0 28px; font-size: 17px; font-weight: 600; white-space: nowrap; color: rgba(255,255,255,.92); }
.marquee .item .sep { color: var(--red); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Placeholder image ---------- */
.ph {
  position: relative; width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(15,15,16,.045) 0 12px, transparent 12px 24px),
    var(--cream-2);
  display: flex; align-items: center; justify-content: center;
}
.ph .ph-tag {
  font-family: 'Poppins', monospace; font-size: 12px; letter-spacing: .04em; color: var(--gray);
  background: rgba(255,255,255,.85); border: 1px dashed var(--gray-2); padding: 7px 14px; border-radius: 100px; font-weight: 500;
}
.ph.dark { background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px),
    #2a2a2e; }
.ph.dark .ph-tag { background: rgba(0,0,0,.4); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-vis { position: relative; height: 480px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-stat {
  position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: 20px 24px; display: flex; gap: 28px;
}
.about-stat .it { flex: 1; }
.about-stat .n { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.about-stat .n .red { color: var(--red); }
.about-stat .l { font-size: 12.5px; color: var(--gray); font-weight: 500; margin-top: 2px; }
.about-stat .vline { width: 1px; background: var(--line); }
.about-body p { font-size: 16px; color: var(--gray); margin-top: 22px; }
.about-body p strong { color: var(--ink); font-weight: 600; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 64px; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 32px 32px;
  overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: transparent; }
.svc-card .num { font-size: 14px; font-weight: 700; color: var(--red); letter-spacing: .1em; }
.svc-img { height: 196px; border-radius: var(--r-md); overflow: hidden; margin: 18px 0 24px; }
.svc-card h3 { font-size: 24px; font-weight: 700; }
.svc-card p { color: var(--gray); font-size: 14px; margin-top: 12px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 600; font-size: 14.5px; color: var(--ink);
  transition: gap .3s var(--ease), color .2s;
}
.svc-link svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.svc-card:hover .svc-link { color: var(--red); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-card .corner { position: absolute; top: 0; right: 0; width: 0; height: 0; border-style: solid; border-width: 0 64px 64px 0; border-color: transparent var(--red-soft) transparent transparent; opacity: 0; transition: opacity .4s; }
.svc-card:hover .corner { opacity: 1; }

/* ---------- Stats (dark) ---------- */
.stats { background: var(--ink); color: #fff; }
.stats .blob-red { opacity: .5; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 60px; }
.stat {
  border-left: 2px solid var(--line-dark); padding-left: 24px;
}
.stat:first-child { border-color: var(--red); }
.stat .n { font-size: clamp(40px, 5vw, 60px); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.stat .n .red { color: var(--red); }
.stat .l { font-size: 14.5px; color: rgba(255,255,255,.62); margin-top: 14px; font-weight: 400; max-width: 200px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 64px; }
.why-card { padding: 32px 28px; background: #fff; border: 1px solid #ddd; border-radius: 18px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.why-card .ic {
  width: 64px; height: 64px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--red); margin-bottom: 26px;
  transition: transform .4s var(--ease), background .3s, color .3s;
}
.why-card:hover .ic { background: var(--red); color: #fff; transform: rotate(-6deg) scale(1.05); }
.why-card .ic svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 22px; font-weight: 700; }
.why-card p { color: var(--gray); font-size: 16px; margin-top: 14px; }
.why-card .idx { font-size: 13px; font-weight: 700; color: var(--gray-2); letter-spacing: .12em; margin-bottom: 12px; }

/* ---------- Testimonials ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.test-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; position: relative; transition: transform .4s var(--ease), box-shadow .4s; }
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.test-card .quote { font-size: 60px; font-weight: 800; color: var(--red-soft); line-height: .6; font-family: Georgia, serif; height: 30px; }
.test-card .stars { display: flex; gap: 3px; color: var(--red); margin: 10px 0 16px; }
.test-card .stars svg { width: 17px; height: 17px; }
.test-card .body { color: var(--ink); font-size: 16px; line-height: 1.6; min-height: 96px; }
.test-card .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.test-card .av { width: 46px; height: 46px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--red); font-size: 16px; }
.test-card .nm { font-weight: 600; font-size: 15px; }
.test-card .biz { font-size: 13px; color: var(--gray); }
.test-note { margin-top: 28px; text-align: center; font-size: 13.5px; color: var(--gray-2); font-style: italic; }

/* ---------- Coverage ---------- */
.cov { background: var(--cream-2); }
.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cov-regions { display: flex; flex-direction: column; gap: 12px; margin-top: 38px; }
.cov-row {
  display: flex; align-items: flex-start; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 24px; transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}
.cov-row:hover { transform: translateX(8px); box-shadow: var(--shadow-soft); border-color: var(--red); }
.cov-row .tag { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: .08em; background: var(--red-soft); padding: 6px 12px; border-radius: 100px; white-space: nowrap; }
.cov-row .zone { font-weight: 600; font-size: 16px; }
.cov-row .areas { font-size: 14px; color: var(--gray); margin-top: 3px; }
.cov-map { position: relative; height: 460px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); background: linear-gradient(160deg, #FBFAF7 0%, #F1EEE8 100%); display: flex; align-items: center; }
.sg-map { display: block; width: 100%; height: 100%; padding: 14px; }
.sg-title { fill: #fff; paint-order: stroke; stroke: #B81722; stroke-width: 5px; stroke-linejoin: round; }
.sg-label { fill: #fff; paint-order: stroke; stroke: #B81722; stroke-width: 4px; stroke-linejoin: round; }
.sg-star { fill: #0F0F10; }
.sg-ping { transform-box: fill-box; transform-origin: center; animation: sgping 2.4s ease-out infinite; }
@keyframes sgping { 0% { transform: scale(.7); opacity: .7; } 100% { transform: scale(2.8); opacity: 0; } }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.cta h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }
.cta p { color: rgba(255,255,255,.7); font-size: 18px; margin-top: 24px; max-width: 480px; }
.cta-contacts { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark);
  border-radius: var(--r-md); padding: 20px 24px; transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.contact-row:hover { background: rgba(255,255,255,.09); border-color: var(--red); transform: translateY(-3px); }
.contact-row .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .ic svg { width: 22px; height: 22px; color: #fff; }
.contact-row .l { font-size: 12.5px; color: rgba(255,255,255,.55); font-weight: 500; }
.contact-row .v { font-size: 17px; font-weight: 600; margin-top: 2px; }

/* ---------- Footer ---------- */
.footer { background: #08080a; color: rgba(255,255,255,.6); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .logo-txt { font-weight: 800; font-size: 22px; color: #fff; letter-spacing: -.02em; }
.footer-brand .logo-txt .red { color: var(--red); }
.footer-brand p { font-size: 14.5px; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,15,16,.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; border-radius: var(--r-lg); width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  transform: translateY(24px) scale(.97); opacity: 0; transition: transform .4s var(--ease), opacity .4s;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-head { padding: 34px 36px 0; position: relative; }
.modal-head h3 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.modal-head p { color: var(--gray); font-size: 15px; margin-top: 10px; }
.modal-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .3s; }
.modal-close:hover { background: var(--red-soft); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; color: var(--ink); }
.modal-body { padding: 28px 36px 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; padding: 14px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--cream); transition: border-color .2s, background .2s, box-shadow .2s; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(239,51,64,.1);
}
.field textarea { resize: vertical; min-height: 90px; }
.field.err input, .field.err select, .field.err textarea { border-color: var(--red); }
.field .msg { font-size: 12.5px; color: var(--red); margin-top: 6px; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 10px 16px; border-radius: 100px; border: 1.5px solid var(--line); font-size: 14px; font-weight: 500; background: #fff;
  transition: all .2s var(--ease); color: var(--gray);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }

/* success */
.success { text-align: center; padding: 48px 36px 44px; }
.success .check {
  width: 80px; height: 80px; border-radius: 50%; background: var(--red-soft); color: var(--red); margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center; animation: pop .5s var(--ease);
}
.success .check svg { width: 40px; height: 40px; }
@keyframes pop { 0%{ transform: scale(0);} 60%{ transform: scale(1.15);} 100%{ transform: scale(1);} }
.success h3 { font-size: 26px; font-weight: 800; }
.success p { color: var(--gray); margin-top: 12px; font-size: 15px; }

/* ---------- About: Vision & Mission ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.vm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px 40px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.vm-card .vm-ic { width: 66px; height: 66px; border-radius: 18px; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.vm-card .vm-ic svg { width: 32px; height: 32px; }
.vm-card h3 { font-size: 26px; font-weight: 700; }
.vm-card p { color: var(--gray); font-size: 16px; margin-top: 14px; }
.vm-card.dark { background: var(--ink); color: #fff; border-color: transparent; }
.vm-card.dark .vm-ic { background: var(--red); color: #fff; }
.vm-card.dark p { color: rgba(255,255,255,.72); }

/* ---------- About: Who we serve ---------- */
.serve-list { display: flex; flex-direction: column; gap: 12px; }
.serve-item { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 24px; transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; }
.serve-item:hover { transform: translateX(8px); box-shadow: var(--shadow-soft); border-color: var(--red); }
.serve-check { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.serve-check svg { width: 17px; height: 17px; }
.serve-txt { font-size: 16px; font-weight: 500; color: var(--ink); padding-top: 3px; }

/* ---------- About: Restaurant partners ---------- */
.partners { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.eyebrow.light.center { justify-content: center; }
.partner-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.partner-group { background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 30px 28px; transition: border-color .3s, background .3s, transform .4s var(--ease); }
.partner-group:hover { border-color: var(--red); background: rgba(255,255,255,.08); transform: translateY(-5px); }
.partner-label { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 22px; }
.partner-label .dot-red { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,51,64,.2); }
.partner-names { display: flex; flex-wrap: wrap; gap: 9px; }
.partner-chip { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); padding: 9px 15px; border-radius: 100px; transition: background .25s, color .25s, border-color .25s; }
.partner-chip:hover { background: var(--red); border-color: var(--red); color: #fff; }
.partner-note { max-width: 760px; margin: 44px auto 0; text-align: center; font-size: 17px; color: rgba(255,255,255,.7); }
.partner-note strong { color: #fff; font-weight: 600; }

/* ---------- Services page ---------- */
.svc-hero { padding: 168px 0 84px; text-align: center; }
.svc-index { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; text-align: left; }
.svc-index-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; }
.svc-index-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.svc-index-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-index-card .ic svg { width: 22px; height: 22px; }
.svc-index-card .tx { display: flex; flex-direction: column; }
.svc-index-card .t { font-weight: 600; font-size: 15.5px; }
.svc-index-card .s { font-size: 12.5px; color: var(--gray); }
.svc-index-card .ar { margin-left: auto; color: var(--gray-2); transition: transform .3s var(--ease), color .3s; }
.svc-index-card .ar svg { width: 18px; height: 18px; }
.svc-index-card:hover .ar { color: var(--red); transform: translateX(4px); }

.svc-block-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.svc-block.alt .svc-vis { order: -1; }
.svc-num { font-size: clamp(56px, 8vw, 104px); font-weight: 800; line-height: .8; letter-spacing: -.04em; color: var(--red); opacity: .14; margin-bottom: 8px; }
.svc-intro { font-size: 16.5px; color: var(--gray); margin-top: 18px; }
.svc-intro strong { color: var(--ink); font-weight: 600; }
.svc-vis { height: 440px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.svc-lists { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr)); gap: 36px; margin-top: 60px; padding-top: 52px; border-top: 1px solid var(--line); }
.svc-block.alt .svc-lists { border-top-color: rgba(15,15,16,.1); }
.svc-list-group h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.svc-list-group h4 .dot-red { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,51,64,.16); }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.feat-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink); line-height: 1.5; }
.feat-list li .chk { width: 22px; height: 22px; border-radius: 50%; background: var(--red-soft); color: var(--red); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.feat-list li .chk svg { width: 13px; height: 13px; }

/* ---------- Our Work page ---------- */
.work-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 52px; }
.work-stat { text-align: center; }
.work-stat .n { font-size: clamp(34px, 4vw, 48px); font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.work-stat .l { font-size: 13.5px; color: var(--gray); margin-top: 6px; font-weight: 500; }

.client-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; }
.client-card { display: flex; flex-direction: column; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; }
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.client-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; }
.client-ic svg { width: 26px; height: 26px; }
.client-name { font-weight: 700; font-size: 16.5px; letter-spacing: -.01em; }
.client-desc { font-size: 13.5px; color: var(--gray); margin-top: 3px; }

.client-groups { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 24px; }
.client-group { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; }
.client-group-label { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.client-group-label .dot-red { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,51,64,.16); }
.client-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.name-chip { font-size: 14px; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 100px; transition: background .25s, color .25s, border-color .25s; }
.name-chip:hover { background: var(--red); border-color: var(--red); color: #fff; }

.gal-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 40px 0 36px; }
.gal-tab { padding: 11px 22px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; font-size: 14.5px; font-weight: 600; color: var(--gray); transition: all .25s var(--ease); }
.gal-tab:hover { border-color: var(--ink); color: var(--ink); }
.gal-tab.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 10px 24px -12px rgba(239,51,64,.6); }
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gal-card { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-soft); animation: galin .5s var(--ease) both; }
.gal-card.gal-hidden { display: none; }
@keyframes galin { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.gal-img { height: 248px; }
.gal-tag { position: absolute; top: 14px; left: 14px; background: rgba(15,15,16,.78); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 100px; backdrop-filter: blur(6px); z-index: 2; pointer-events: none; }
.gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 16px; font-size: 13.5px; font-weight: 500; color: #fff; background: linear-gradient(to top, rgba(15,15,16,.86), transparent); z-index: 2; pointer-events: none; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info-title { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-top: 18px; }
.contact-info-sub { color: var(--gray); font-size: 16px; margin-top: 12px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-method { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; }
.contact-method:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); border-color: var(--red); }
.contact-method .cm-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method.accent .cm-ic { background: var(--red); color: #fff; }
.contact-method .cm-ic svg { width: 22px; height: 22px; }
.contact-method .cm-tx { display: flex; flex-direction: column; min-width: 0; }
.contact-method .cm-l { font-size: 12.5px; color: var(--gray); font-weight: 500; }
.contact-method .cm-v { font-size: 15px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-method .cm-ar { margin-left: auto; color: var(--gray-2); transition: transform .3s var(--ease), color .3s; flex-shrink: 0; }
.contact-method .cm-ar svg { width: 18px; height: 18px; }
.contact-method:hover .cm-ar { color: var(--red); transform: translateX(4px); }
.contact-hours { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding: 16px 20px; background: var(--ink); color: #fff; border-radius: var(--r-md); }
.contact-hours .ch-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.2); flex-shrink: 0; }
.contact-hours div { display: flex; flex-direction: column; }
.contact-hours b { font-size: 14.5px; }
.contact-hours div span { font-size: 12.5px; color: rgba(255,255,255,.6); }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 36px; box-shadow: var(--shadow-soft); }
.form-head { margin-bottom: 24px; }
.form-head h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.form-head p { color: var(--gray); font-size: 15px; margin-top: 8px; }

.faq-list { max-width: 840px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--red); box-shadow: var(--shadow-soft); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; font-size: 17px; font-weight: 600; color: var(--ink); text-align: left; }
.faq-chev { width: 34px; height: 34px; border-radius: 50%; background: var(--cream-2); color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .35s var(--ease), background .3s, color .3s; }
.faq-chev svg { width: 18px; height: 18px; }
.faq-item.open .faq-chev { transform: rotate(180deg); background: var(--red); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 26px 24px; color: var(--gray); font-size: 15.5px; line-height: 1.6; }

.final-cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.final-contact-line { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.final-contact-line a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: 14.5px; font-weight: 500; transition: color .2s; }
.final-contact-line a:hover { color: #fff; }
.final-contact-line a svg { width: 16px; height: 16px; color: var(--red); }
.final-contact-line .sep { width: 1px; height: 18px; background: rgba(255,255,255,.2); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .cov-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { height: 420px; }
  .svc-grid, .stats-grid, .why-grid, .test-grid, .vm-grid, .partner-cols { grid-template-columns: 1fr 1fr; }
  .svc-block-head { grid-template-columns: 1fr; gap: 40px; }
  .svc-block.alt .svc-vis { order: 0; }
  .svc-vis { height: 360px; }
  .work-stats, .client-cards, .gal-grid { grid-template-columns: repeat(2,1fr); }
  .client-groups { grid-template-columns: 1fr; }
  .nav-links, .nav-phone { display: none; }
  .menu-btn { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .section { padding: 84px 0; }
  .svc-grid, .stats-grid, .why-grid, .test-grid, .field-row, .footer-top, .vm-grid, .partner-cols, .svc-index, .work-stats, .client-cards, .gal-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 60px; }
  .about-stat { flex-direction: column; gap: 14px; }
  .about-stat .vline { display: none; }
  .fc-1 { left: 0; } .fc-2 { right: 0; }
}
