/* ============================================================
   CLOM ENTERPRISES — Premium Light Theme
   ============================================================ */
:root {
  --navy: #0B2B4C;
  --blue: #1B9AE0;
  --green: #22B573;
  --orange: #FF6B1A;
  --orange-dark: #F05A0A;
  --bg: #FFFFFF;
  --cream: #FFF8F1;
  --soft: #F5F8FB;
  --text: #12263F;
  --muted: #5C6B7A;
  --border: #E7EDF3;
  --shadow-sm: 0 2px 10px rgba(11, 43, 76, 0.06);
  --shadow-md: 0 12px 34px rgba(11, 43, 76, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 43, 76, 0.14);
  --radius: 18px;
  --font-head: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

/* ---------- Type ---------- */
.h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-top: 16px;
}
.accent { color: var(--orange); }

.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFF0E5; color: var(--orange-dark);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid #FFDAC2;
}
.pill-badge.sm { font-size: 12px; padding: 7px 16px; }
.pill-badge.light { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.3); }

.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-sub { margin-top: 16px; font-size: 16px; color: var(--muted); font-weight: 300; }
.section-sub.left { max-width: 520px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  will-change: transform;
}
.btn .btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, #FF7A1A, #F05A0A);
  color: #fff; box-shadow: 0 8px 24px rgba(255, 107, 26, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(255, 107, 26, 0.45); transform: translateY(-2px); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--orange-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,0.2); }
.btn-sm { padding: 12px 24px; font-size: 14px; }
.btn-full { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.nav-inner {
  width: min(1240px, calc(100% - 48px)); margin-inline: auto;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 46px; width: auto; display: block; }
.logo-word {
  font-family: var(--font-head); font-weight: 900; font-size: 19px;
  letter-spacing: 0.02em; color: var(--navy);
  display: flex; flex-direction: column; line-height: 1;
}
.logo-word em {
  font-style: normal; font-weight: 500; font-size: 9px;
  letter-spacing: 0.4em; color: var(--muted); margin-top: 3px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text);
  position: relative; transition: color 0.2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px; background: var(--orange);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--orange-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger {
  display: none; background: #fff; border: 1px solid var(--border); border-radius: 12px;
  width: 46px; height: 46px; position: relative; box-shadow: var(--shadow-sm);
}
.nav-burger span {
  position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 29px; }
.nav-burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 999;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 4px; padding: 20px 24px 28px;
  transform: translateY(-115%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy);
  padding: 13px 4px; border-bottom: 1px solid var(--border);
}
.mobile-menu a.btn { border-bottom: none; margin-top: 18px; font-size: 16px; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, #FFFDFB 100%);
  padding: calc(var(--nav-h) + 72px) 0 110px;
  overflow: hidden;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-blob-1 { width: 480px; height: 480px; background: rgba(255, 122, 26, 0.14); top: -140px; right: -100px; }
.hero-blob-2 { width: 420px; height: 420px; background: rgba(27, 154, 224, 0.12); bottom: -160px; left: -120px; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.02em; color: var(--navy);
  margin: 24px 0 22px;
}
.mask { display: block; overflow: hidden; }
.line { display: inline-block; will-change: transform; }
.hero-sub { font-size: 16.5px; font-weight: 300; color: var(--muted); max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-feats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 48px; padding-top: 34px; border-top: 1px solid #F1E4D6;
}
.hero-feats li {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--navy);
}
.hero-feats svg { color: var(--orange); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-plats { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.pb {
  font-family: var(--font-head); font-weight: 800; font-size: 13.5px;
  padding: 9px 15px; border-radius: 10px; color: #fff; letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  animation: floaty 5s ease-in-out infinite;
}
.pb:nth-child(2) { animation-delay: 0.6s; }
.pb:nth-child(3) { animation-delay: 1.2s; }
.pb:nth-child(4) { animation-delay: 1.8s; }
.pb:nth-child(5) { animation-delay: 2.4s; }
.pb-amazon { background: #131921; position: relative; padding-bottom: 12px; }
.pb-amazon::after {
  content: ""; position: absolute; left: 14%; right: 14%; bottom: 5px; height: 4px;
  border-bottom: 2px solid #FF9900; border-radius: 0 0 100% 100%;
}
.pb-flipkart { background: #2874F0; font-style: italic; }
.pb-meesho { background: #F43397; }
.pb-jiomart { background: #E53935; }
.pb-blinkit { background: #F8CB46; color: #0C831F; }

.laptop { position: relative; width: 100%; max-width: 580px; margin: 0 auto; will-change: transform; }
.laptop-screen {
  border: 10px solid #101418; border-bottom-width: 12px;
  border-radius: 16px 16px 0 0; overflow: hidden;
  background: #101418; box-shadow: var(--shadow-lg);
}
.laptop-screen img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
.laptop-base {
  height: 16px; margin: 0 -6%;
  background: linear-gradient(#E4E9EE, #B9C1C9);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 18px 34px rgba(11, 43, 76, 0.18);
}
.hero-chip {
  position: absolute; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 14px 20px; z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
}
.chip-sales { top: 36%; right: -22px; }
.chip-sales .chip-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.chip-sales .chip-value {
  font-family: var(--font-head); font-weight: 900; font-size: 24px; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 20px; margin-top: 8px; }
.mini-bars i { width: 8px; border-radius: 2px; background: #22B573; }
.mini-bars i:nth-child(1) { height: 35%; opacity: 0.55; }
.mini-bars i:nth-child(2) { height: 50%; opacity: 0.65; }
.mini-bars i:nth-child(3) { height: 65%; opacity: 0.75; }
.mini-bars i:nth-child(4) { height: 82%; opacity: 0.88; }
.mini-bars i:nth-child(5) { height: 100%; }
.hero-boxes { position: absolute; bottom: -6px; left: -26px; width: 190px; z-index: 4; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Platform wordmarks (text badges in brand colors) */
.pw { font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; white-space: nowrap; }
.pw-amazon { color: #131921; position: relative; font-style: italic; }
.pw-amazon::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -3px; height: 4px;
  border-bottom: 2.5px solid #FF9900; border-radius: 0 0 100% 100%;
}
.pw-flipkart { color: #2874F0; font-style: italic; }
.pw-meesho { color: #F43397; }
.pw-jiomart { color: #0A2885; }
.pw-blinkit { color: #0C831F; background: #F8CB46; padding: 3px 10px; border-radius: 8px; }
.pw.lg { font-size: 26px; }
.pw-other { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 16px; }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  border-radius: var(--radius); padding: 34px 28px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tint-yellow { background: #FFF7E2; }
.tint-blue { background: #EAF4FF; }
.tint-green { background: #E9F9F1; }
.tint-orange { background: #FFF0E5; }
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.tint-yellow .why-icon { background: #FFC53D; color: #7A4E00; }
.tint-blue .why-icon { background: var(--blue); color: #fff; }
.tint-green .why-icon { background: var(--green); color: #fff; }
.tint-orange .why-icon { background: var(--orange); color: #fff; }
.why-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); font-weight: 300; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.service-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 18px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #FFD3B3; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: #FFF0E5; color: var(--orange-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.service-item:hover .svc-icon { background: var(--orange); color: #fff; }
.service-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; line-height: 1.35; color: var(--navy); }

/* ---------- Platforms ---------- */
.platforms-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.platform-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 20px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.platform-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #FFD3B3; }
.platform-logo {
  height: 64px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.platform-card p { font-size: 13px; color: var(--muted); font-weight: 300; min-height: 60px; }
.learn-more {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--orange-dark);
  border: 1.5px solid #FFD3B3; border-radius: 999px; padding: 9px 18px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.learn-more span { transition: transform 0.25s ease; }
.learn-more:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.learn-more:hover span { transform: translateX(3px); }

/* ---------- Process ---------- */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  position: relative;
}
.p-step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 22px; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.p-step::after {
  content: "→"; position: absolute; top: 30px; right: -17px; z-index: 2;
  color: #FFB27A; font-weight: 700; font-size: 18px;
}
.p-step:last-child::after { display: none; }
.p-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #FF7A1A, #F05A0A); color: #fff;
  font-family: var(--font-head); font-weight: 900; font-size: 16px;
  box-shadow: 0 6px 16px rgba(255, 107, 26, 0.35);
  margin-bottom: 18px;
}
.p-step h3 { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.p-step p { font-size: 13px; color: var(--muted); font-weight: 300; }

/* ---------- Results banner ---------- */
.results-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(27, 154, 224, 0.38), transparent 60%),
    radial-gradient(700px 460px at 6% 96%, rgba(27, 154, 224, 0.22), transparent 60%),
    linear-gradient(115deg, #081F38 0%, #0B2B4C 48%, #10406E 100%);
  padding: 96px 0;
}
.results-banner-inner { position: relative; z-index: 1; }
.pill-badge.glass { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.rb-head { max-width: 58%; }
.rb-title {
  font-family: var(--font-head); font-weight: 900; color: #fff;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.08;
  letter-spacing: -0.02em; margin: 22px 0 0;
}
.rb-accent {
  background: linear-gradient(92deg, #FFC93D, #FF8A00);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rb-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 46px; position: relative; z-index: 2;
}
.rb-card {
  background: #fff; border-radius: 20px; padding: 22px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 16px 40px rgba(4, 18, 34, 0.35);
  transition: transform 0.3s ease;
}
.rb-card:hover { transform: translateY(-5px); }
.rb-icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.rb-icon.orange { background: #FFF0E5; color: #F05A0A; }
.rb-icon.blue { background: #EAF4FF; color: #1B9AE0; }
.rb-icon.green { background: #E9F9F1; color: #22B573; }
.rb-icon.yellow { background: #FFF7E0; color: #E8A800; }
.rb-num {
  display: block; font-family: var(--font-head); font-weight: 900;
  font-size: 32px; line-height: 1; color: var(--orange); letter-spacing: -0.02em;
}
.rb-label { display: block; margin-top: 6px; font-size: 13px; font-weight: 500; color: var(--muted); line-height: 1.35; }
.rb-visual {
  position: absolute; right: 0; top: 46%; transform: translateY(-62%);
  width: 38%; max-width: 460px; z-index: 1;
}
.rb-chart { width: 100%; filter: drop-shadow(0 0 26px rgba(255, 157, 0, 0.4)); animation: floaty 6s ease-in-out infinite; }

/* ---------- Videos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb {
  aspect-ratio: 16 / 10; position: relative;
  background: linear-gradient(135deg, #0B2B4C, #14456F);
  display: flex; align-items: center; justify-content: center;
}
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 122, 26, 0.25), transparent 55%);
}
.video-platform {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.92);
}
.video-platform.yt { color: #E02B2B; }
.video-platform.ig { color: #D62E7F; }
.video-duration {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; color: #fff; padding: 5px 10px; border-radius: 8px;
  background: rgba(0,0,0,0.55);
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%; z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); padding-left: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.video-card:hover .play-btn { background: var(--orange); color: #fff; transform: scale(1.08); }
.video-meta { padding: 22px 24px 26px; }
.video-meta h3 { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; line-height: 1.4; color: var(--navy); margin-bottom: 6px; }
.video-meta p { font-size: 13px; color: var(--muted); font-weight: 300; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #FFB800; font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.quote p { font-size: 15.5px; color: var(--text); font-weight: 300; line-height: 1.7; }
.quote footer { margin-top: 22px; display: flex; flex-direction: column; gap: 2px; }
.quote footer strong { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--navy); }
.quote footer span { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(100deg, #FF7A1A 0%, #F05A0A 100%);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}
.cta-copy h2 {
  font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 3.4vw, 40px);
  color: #fff; margin: 16px 0 10px; letter-spacing: -0.015em;
}
.cta-copy p { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 300; max-width: 560px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  margin-bottom: 14px; overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] { border-color: #FFD3B3; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px; color: var(--navy);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-dark); }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body { padding: 0 26px 24px; }
.faq-body p { font-size: 14.5px; color: var(--muted); font-weight: 300; }

.faq-side-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
  position: sticky; top: 110px;
}
.faq-side-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.faq-side-card p { font-size: 14px; color: var(--muted); font-weight: 300; margin-bottom: 24px; }
.faq-side-card figure { margin-top: 28px; border-radius: 14px; overflow: hidden; }
.faq-side-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

/* ---------- Consultation ---------- */
.consult {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #FFF2CC 0%, #FFEFC4 45%, #FFF9E9 100%);
  padding: 110px 0;
}
.consult::before {
  content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5); top: -220px; right: -140px; filter: blur(8px);
}
.consult-grid {
  display: grid; grid-template-columns: 1.05fr 0.8fr 1.1fr;
  gap: 44px; align-items: start; position: relative; z-index: 1;
}
.consult-visual { align-self: center; }
.consult-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 3.2vw, 44px); line-height: 1.1;
  color: var(--navy); margin: 22px 0 18px; letter-spacing: -0.02em;
}
.consult-sub { color: #4B5B6C; font-size: 16px; font-weight: 300; max-width: 440px; }
.consult-perks { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.perk {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 999px; padding: 8px 18px 8px 8px;
  font-weight: 700; font-size: 13.5px; color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.perk:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.perk-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: #FFF0E5; color: var(--orange-dark);
  display: inline-flex; align-items: center; justify-content: center;
}

.consult-visual { position: relative; height: 360px; }
.box-svg { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: min(280px, 90%); }
.consult-float {
  position: absolute; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 10px 16px;
  animation: floaty 5s ease-in-out infinite;
}
.cf-1 { top: 2%; left: 6%; }
.cf-2 { top: -4%; right: 4%; animation-delay: 0.7s; }
.cf-3 { top: 34%; left: -6%; animation-delay: 1.3s; }
.cf-4 { top: 30%; right: -4%; animation-delay: 1.9s; }
.cf-5 { top: 64%; left: -4%; animation-delay: 2.5s; z-index: 2; }

.consult-form {
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-lg);
  padding: 38px 34px;
  display: flex; flex-direction: column; gap: 15px;
}
.consult-form h3 {
  font-family: var(--font-head); font-size: 25px; font-weight: 900;
  color: var(--navy); letter-spacing: -0.01em; margin-bottom: 6px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consult-form input, .consult-form select, .consult-form textarea {
  background: #F7F9FB; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 15px 16px; width: 100%;
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none; appearance: none;
}
.consult-form ::placeholder { color: #9AA8B5; }
.consult-form input:focus, .consult-form select:focus, .consult-form textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.12);
}
.consult-form textarea { resize: vertical; min-height: 96px; }
.cf-select { position: relative; }
.cf-select::after {
  content: ""; position: absolute; right: 17px; top: 50%;
  width: 9px; height: 9px; border-right: 2px solid #98A4B0; border-bottom: 2px solid #98A4B0;
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.cf-select select { cursor: pointer; }
.cf-select select:invalid { color: #9AA8B5; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-error { font-size: 13px; color: #D93A3A; display: none; }
.form-error.show { display: block; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }
.form-ok {
  font-size: 13.5px; font-weight: 700; color: #1B7A4B;
  background: #E9F9F1; border: 1px solid #B9E8D2; border-radius: 12px;
  padding: 13px 16px; display: none;
}
.form-ok.show { display: block; }

/* ---------- Map (full width) ---------- */
.map-section { background: #fff; }
.map-frame { position: relative; width: 100%; overflow: hidden; }
.map-frame iframe { width: 100%; height: 460px; border: 0; display: block; }
.map-card {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  left: max(32px, calc((100vw - 1200px) / 2));
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 30px 32px; max-width: 370px;
}
.map-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.map-card-list li { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; }
.mc-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: #FFF0E5; color: var(--orange-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.map-card-list span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.map-card-list a, .map-card-list em {
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  font-style: normal; color: var(--navy); line-height: 1.45;
  transition: color 0.2s ease;
}
.map-card-list a:hover { color: var(--orange-dark); }
.map-wa { margin-top: 20px; }

@media (max-width: 1100px) {
  .consult-grid { grid-template-columns: 1fr 1fr; }
  .consult-visual { display: none; }
}
@media (max-width: 820px) {
  .consult { padding: 80px 0; }
  .consult-grid { grid-template-columns: 1fr; gap: 40px; }
  .cf-row { grid-template-columns: 1fr; }
  .map-frame iframe { height: 320px; }
  .map-card {
    position: static; transform: none; max-width: none;
    border-radius: 0; box-shadow: none; border-top: 1px solid var(--border);
  }
}

/* ---------- Footer ---------- */
.footer { background: var(--cream); border-top: 1px solid #F1E4D6; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 56px; padding-bottom: 56px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 18px; }

@media (max-width: 768px) {
  .nav-logo-img { height: 34px; }
  .footer-logo { height: 48px; }
}
.footer-brand p { font-size: 14px; color: var(--muted); }
.footer-brand .footer-services { margin-top: 8px; font-size: 13px; font-weight: 300; max-width: 340px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
}
.footer-col a, .footer-col em { font-size: 14.5px; color: var(--muted); font-style: normal; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange-dark); }
.socials { display: flex; gap: 10px; margin-top: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 0; border-top: 1px solid #F1E4D6;
  font-size: 12px; color: #98A4B0;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55); }

/* ---------- Video embeds & map ---------- */
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video-embed { cursor: pointer; }
.watch-ext {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 10px;
  font-size: 12.5px; font-weight: 700; color: var(--orange-dark); cursor: pointer;
}
.watch-ext:hover { text-decoration: underline; }
.video-embed:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
/* ---------- Showcase gallery & lightbox ---------- */
.showcase-wrap { position: relative; }
.showcase-grid {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px;
}
.showcase-grid::-webkit-scrollbar { display: none; }
.showcase-item { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.sc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); color: var(--navy);
  font-size: 19px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.sc-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.sc-prev { left: -26px; }
.sc-next { right: -26px; }
@media (max-width: 1300px) {
  .sc-prev { left: 10px; }
  .sc-next { right: 10px; }
}
.showcase-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm);
  cursor: zoom-in; margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcase-item:hover, .showcase-item:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.showcase-item:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.showcase-item img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase-item:hover img { transform: scale(1.05); }
.showcase-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 44px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(11, 43, 76, 0.88));
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.showcase-item:hover figcaption, .showcase-item:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.showcase-item figcaption strong { font-family: var(--font-head); font-size: 15px; color: #fff; }
.showcase-item figcaption span { font-size: 12px; color: rgba(255,255,255,0.8); }
.showcase-item::after {
  content: "⤢"; position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.showcase-item:hover::after { opacity: 1; transform: scale(1); }

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8, 22, 38, 0.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-stage { max-width: min(980px, 86vw); }
.lb-img {
  width: 100%; max-height: 76vh; object-fit: contain;
  border-radius: 16px; background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.lb-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  margin-top: 16px;
}
.lb-caption { color: rgba(255,255,255,0.92); font-size: 14.5px; font-weight: 500; }
.lb-counter { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; flex-shrink: 0; }
.lb-close, .lb-arrow {
  position: absolute; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.lb-close:hover, .lb-arrow:hover { background: var(--orange); border-color: var(--orange); }
.lb-close { top: 26px; right: 26px; font-size: 17px; }
.lb-arrow { position: relative; flex-shrink: 0; }
.lb-arrow:hover { transform: scale(1.08); }
.lb-img.swap { animation: lb-swap 0.35s ease; }
@keyframes lb-swap {
  from { opacity: 0; transform: translateX(26px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .platform-card p { min-height: 0; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .p-step::after { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 88px; }
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .chip-sales { right: -8px; }
  .hero-boxes { left: -10px; width: 150px; }
  .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-side-card { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
  .rb-head { max-width: 100%; }
  .rb-visual { position: static; transform: none; width: 100%; margin: 44px auto 0; max-width: 420px; }
  .rb-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta .btn { display: none; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .hero-feats { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .hero-feats li { font-size: 11.5px; }
  .pb { font-size: 11px; padding: 7px 10px; }
  .hero-boxes { width: 120px; left: -6px; }
  .chip-sales { top: 28%; right: -4px; padding: 10px 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .consult-form { padding: 28px 22px; }
  .rb-stats { grid-template-columns: 1fr; gap: 14px; }
  .rb-num { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ---------- Showcase responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
}
@media (max-width: 1024px) {
  .showcase-item { flex-basis: calc((100% - 26px) / 2); }
  .lb-stage { max-width: 80vw; }
}
@media (max-width: 768px) {
  .showcase-item { flex-basis: 84%; }
  .sc-arrow { width: 44px; height: 44px; font-size: 16px; }
  .lb-stage { max-width: 92vw; }
  .lb-arrow { position: absolute; top: 42%; width: 44px; height: 44px; font-size: 17px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; width: 44px; height: 44px; }
}

/* ---------- Service detail pages ---------- */
.nav-links a.active { color: var(--orange-dark); }
.nav-links a.active::after { width: 100%; }
.svc-hero {
  background: linear-gradient(180deg, var(--cream) 0%, #FFFDFB 100%);
  padding: calc(var(--nav-h) + 64px) 0 88px;
}
.svc-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.crumbs {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 22px;
}
.crumbs a { color: var(--orange-dark); transition: color 0.2s ease; }
.crumbs a:hover { color: var(--navy); }
.crumbs span { margin: 0 8px; color: #C7D0D9; }
.svc-h1 { margin-top: 18px; }
.svc-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.svc-points li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--navy);
}
.svc-points svg { color: var(--green); flex-shrink: 0; }
.svc-hero-img {
  border-radius: 24px; overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.svc-hero-img img { width: 100%; display: block; }
.svc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-plat-section { padding-top: 0; }
.center-block { text-align: center; max-width: 760px; margin-inline: auto; }
.svc-plat-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.svc-plat-row .pw {
  font-size: 17px; background: #fff; border: 1px solid var(--border);
  padding: 13px 22px; border-radius: 12px; box-shadow: var(--shadow-sm);
}
.svc-plat-row .pw-blinkit { border-color: #F8CB46; }
.pw-more { color: var(--orange-dark); }
a.service-item { color: inherit; }
.svc-more {
  font-size: 12px; font-weight: 700; color: var(--orange-dark);
  margin-top: 2px; opacity: 0; transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-item:hover .svc-more { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-hero-img { max-width: 560px; margin-inline: auto; }
  .svc-steps { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
}
