/* ============================================================
   ARAATEC — 2026 design system
   Dark mode, glassmorphism, bento grid, kinetic type, micro-UX
   ============================================================ */

:root {
  --red: #ff2d2d;
  --orange: #ff7a00;
  --grad: linear-gradient(135deg, #ff2d2d 0%, #ff7a00 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,45,45,.14) 0%, rgba(255,122,0,.14) 100%);

  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1180px;

  /* Light (default) */
  --bg: #fbfbf9;
  --bg-soft: #f2f2ee;
  --surface: #ffffff;
  --surface-2: #f6f6f2;
  --text: #141414;
  --muted: #5b6470;
  --border: rgba(20, 20, 20, .1);
  --glass: rgba(255, 255, 255, .72);
  --glass-brd: rgba(255, 255, 255, .65);
  --shadow: 0 18px 50px -22px rgba(20, 20, 20, .25);
  --head-color: #141414;
  --blob-opacity: .5;
  --blob-white: rgba(20, 20, 20, .06);
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0b0e14;
  --bg-soft: #10141d;
  --surface: #141a25;
  --surface-2: #171e2b;
  --text: #f2f4f8;
  --muted: #9aa3b2;
  --border: rgba(255, 255, 255, .1);
  --glass: rgba(18, 24, 36, .66);
  --glass-brd: rgba(255, 255, 255, .12);
  --shadow: 0 22px 55px -24px rgba(0, 0, 0, .7);
  --head-color: #ffffff;
  --blob-opacity: .7;
  --blob-white: rgba(255, 255, 255, .09);
  color-scheme: dark;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  transition: background .35s var(--ease), color .35s var(--ease);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; -webkit-user-drag: none; user-select: none; -webkit-touch-callout: none; pointer-events: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--red); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Headings & type ---------- */
h1, h2, h3, h4 { line-height: 1.15; color: var(--head-color); font-weight: 800; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.kicker::before { content: '//'; }

.section { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -1.5px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 16px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14px; letter-spacing: .3px;
  padding: 14px 26px; border-radius: 999px; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(255,45,45,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(255,45,45,.65); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-ghost {
  background: var(--glass); color: var(--text); border: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover { border-color: var(--red); transform: translateY(-2px); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.4);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.nav .logo { width: 165px; height: auto; aspect-ratio: 1228 / 297; flex-shrink: 0; }
.nav .logo-light { display: none; }
[data-theme="dark"] .nav .logo-dark { display: none; }
[data-theme="dark"] .nav .logo-light { display: block; }
.nav ul { display: flex; align-items: center; gap: 30px; }
.nav ul a {
  font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text); opacity: .8; position: relative; padding: 6px 0;
  transition: opacity .2s;
}
.nav ul a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad); transition: width .3s var(--ease); border-radius: 2px;
}
.nav ul a:hover { opacity: 1; }
.nav ul a:hover::after { width: 100%; }
.nav ul a[aria-current="page"] { opacity: 1; color: var(--red); }
.nav ul a[aria-current="page"]::after {
  display: block; width: 5px; height: 5px; left: 50%;
  transform: translateX(-50%); background: var(--red); border-radius: 50%;
}
.nav li.has-drop { position: relative; }
.nav .drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 230px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: stretch; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 30;
}
.nav li.has-drop::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
}
.nav li.has-drop:hover .drop, .nav li.has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav .drop a {
  font-size: 12.5px; letter-spacing: .3px; text-transform: none; font-weight: 600;
  padding: 10px 13px; border-radius: 9px; color: var(--text); opacity: .85;
}
.nav .drop a::after { display: none; }
.nav .drop a:hover { background: var(--bg-soft); color: var(--red); opacity: 1; padding-left: 17px; }
.nav .drop a[aria-current="page"] { color: var(--red); background: var(--grad-soft); opacity: 1; }
@media (max-width: 900px) { .nav .drop { display: none; } }
.nav-right { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: grid; place-items: center; font-size: 17px; color: var(--text);
  transition: transform .25s var(--ease), border-color .25s;
}
.theme-toggle:hover { transform: rotate(18deg); border-color: var(--red); }
.nav .btn { padding: 11px 20px; font-size: 12.5px; }

.menu-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 50%; width: 42px; height: 42px; font-size: 18px; color: var(--text); }
@media (max-width: 900px) {
  .nav ul { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav .btn { display: none; }
}
@media (max-width: 560px) {
  .nav { height: 58px; gap: 10px; padding: 0 14px; }
  .nav .logo { width: 112px; }
  .nav-right { gap: 8px; }
  .theme-toggle, .menu-toggle { width: 36px; height: 36px; font-size: 15px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; padding: 96px 32px 40px;
  background: var(--bg); display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-100%); transition: transform .45s var(--ease); overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-size: 26px; font-weight: 800; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu a[aria-current="page"] { color: var(--red); }
.mobile-menu a[aria-current="page"]::before {
  content: ''; display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); margin-right: 12px; vertical-align: 3px;
}
.mobile-menu .menu-close {
  position: absolute; top: 22px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--border); background: var(--glass);
  font-size: 20px; color: var(--text);
}
.mobile-menu .btn { justify-content: center; margin-top: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: 104px 0 88px;
  isolation: isolate;
}
.hero .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: var(--blob-opacity); z-index: -1; animation: float 16s ease-in-out infinite alternate; }
.hero .blob.a { width: 520px; height: 520px; background: radial-gradient(circle at 30% 30%, #ff2d2d, transparent 65%); top: -160px; right: -120px; }
.hero .blob.b { width: 420px; height: 420px; background: radial-gradient(circle at 60% 40%, #ff7a00, transparent 65%); bottom: -140px; left: -100px; animation-delay: -6s; }
@keyframes float { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px, 30px) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero .blob { animation: none; } }

/* White signature blob (same path as araatec.com) */
.hero .blob-white {
  position: absolute; z-index: -1; width: min(760px, 95vw); height: auto;
  top: -140px; right: -70px; pointer-events: none;
  animation: blob-white-drift 18s ease-in-out infinite alternate;
}
.hero .blob-white path { fill: var(--blob-white); }
@keyframes blob-white-drift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(-48px, 28px) rotate(7deg); }
}
@media (prefers-reduced-motion: reduce) { .hero .blob-white { animation: none; } }

/* ---------- Floating social icons (line art) ---------- */
.hero-socials { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-socials .s-icon {
  position: absolute; width: 54px; height: 54px;
  display: grid; place-items: center;
  color: var(--brand, var(--muted)); opacity: .72;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .12));
  animation: social-float 7s ease-in-out infinite;
}
.hero-socials .s-icon svg {
  width: 30px; height: 30px; fill: none;
  stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.hero-socials .s-icon rect, .hero-socials .s-icon circle { stroke: currentColor; fill: none; }
@keyframes social-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
.s-wa { --brand: #25d366; left: 76%; top: 14%; animation-duration: 6.5s; }
.s-wa svg { fill: currentColor; stroke: none; }
.s-ig { --brand: #e4405f; left: 6%; top: 22%; animation-duration: 7.6s; animation-delay: -2s; }
.s-fb { --brand: #1877f2; right: 4%; bottom: 18%; animation-duration: 8s; animation-delay: -4s; }
.s-li { --brand: #0a66c2; left: 38%; top: 6%; animation-duration: 7s; animation-delay: -1s; }
.s-x  { color: var(--muted); left: 11%; bottom: 10%; animation-duration: 6.8s; animation-delay: -3s; }
.s-yt { --brand: #ff0000; right: 36%; bottom: 24%; animation-duration: 7.6s; animation-delay: -5s; }
@media (max-width: 640px) {
  .hero-socials .s-icon { width: 42px; height: 42px; }
  .hero-socials .s-icon svg { width: 24px; height: 24px; }
  .s-ig, .s-x { display: none; }
}
@media (prefers-reduced-motion: reduce) { .hero-socials .s-icon { animation: none; } }

/* ---------- Coverage (world map) ---------- */
/* ---------- Coverage description ---------- */
.cover-desc { max-width: 900px; margin: 0 auto; display: grid; gap: 16px; }
.cover-desc p {
  font-size: 16px; line-height: 1.85; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 26px 30px;
}
.cover-desc p strong { color: var(--text); }
@media (max-width: 560px) { .cover-desc p { padding: 22px 20px; font-size: 15px; } }

.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--red);
  background: var(--grad-soft); border: 1px solid rgba(255,45,45,.25);
}
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); letter-spacing: -2.5px; }
.rotator { display: inline-block; position: relative; overflow: hidden; }
.hero h1 .rotator.inline-rot {
  font-size: .8em; letter-spacing: -1px;
  vertical-align: baseline; padding-bottom: .08em; margin-bottom: -.08em;
}
.hero h1 .rotator.inline-rot::before { display: none; }
.hero h1.h1-one { white-space: nowrap; font-size: clamp(24px, 4.4vw, 48px); letter-spacing: -2px; }
.hero h1 .h1-line { display: block; }
.hero h1 .rotator.stack { display: block; margin-top: 4px; font-size: 1.32em; letter-spacing: -3px; }
.rotator::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 55%; transform: skewX(-18deg);
  background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.75), rgba(255,255,255,0));
  opacity: 0; pointer-events: none;
}
.rotator.rot::before { animation: rot-sweep 1s ease .12s both; }
@keyframes rot-sweep {
  0% { left: -60%; opacity: 0; }
  15% { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}
.rotator.rot { animation: rot-in .45s var(--ease); }
@keyframes rot-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rotator.rot, .rotator.rot::before { animation: none; } }
.hero p.sub { margin-top: 22px; font-size: 17px; color: var(--muted); max-width: 600px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero .meta-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; }
.hero .meta { display: flex; flex-direction: column; }
.hero .meta b { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.hero .meta span { font-size: 12.5px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* Hero glass card */
.hero-card {
  background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-radius: 26px; padding: 34px 30px; box-shadow: var(--shadow);
  position: relative;
}
.hero-card::after {
  content: ''; position: absolute; inset: -1px; border-radius: 26px; z-index: -1;
  background: var(--grad); opacity: .12; filter: blur(8px);
}
.hero-card h3 { font-size: 20px; margin-bottom: 8px; }
.hero-card p { color: var(--muted); font-size: 14.5px; }
.hero-card .chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero-card .chip {
  font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
}
.hero-card .audit {
  margin-top: 22px; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 16px; background: var(--grad-soft); border: 1px solid rgba(255,45,45,.25);
}
.hero-card .audit .gauge { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.hero-card .audit b { font-size: 14px; display: block; }
.hero-card .audit span { font-size: 12.5px; color: var(--muted); }

/* ---------- Mobile hero (distinct stacked banner) ---------- */
@media (max-width: 900px) {
  .hero { padding: 72px 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-grid > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: clamp(32px, 9.5vw, 44px); letter-spacing: -1.5px; }
  .hero p.sub { font-size: 15.5px; max-width: none; margin-top: 16px; }
  .hero .cta-row { flex-direction: column; align-items: stretch; margin-top: 26px; }
  .hero .cta-row .btn { justify-content: center; }
  .hero .meta-row { justify-content: center; gap: 18px; margin-top: 28px; }
  .hero .meta { align-items: center; }
  .hero .meta b { font-size: 19px; }
  .hero-right { width: 100%; }
  .hero-card { padding: 24px 20px; border-radius: 20px; text-align: left; }
  .hero-card .chip-row { justify-content: flex-start; gap: 7px; }
  .hero-card .chip { font-size: 11px; padding: 6px 11px; }
  .hero-socials, .hero .blob-white { display: none; }
  .hero .blob.a { width: 380px; height: 380px; right: -140px; top: -120px; }
  .hero .blob.b { width: 320px; height: 320px; left: -120px; bottom: -100px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 44px; }
  .hero .cta-row { gap: 10px; }
  .hero .meta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero .meta span { font-size: 10px; letter-spacing: .5px; }
}

/* ---------- Hero mascot (Lottie) ---------- */
.hero-title { position: relative; }
.hero-robot {
  position: absolute; top: -52px; right: -8px; z-index: 3;
  width: 152px; height: 152px;
  filter: drop-shadow(0 18px 30px rgba(20,20,20,.28));
  animation: robot-in .7s cubic-bezier(.34, 1.56, .64, 1) both;
}
.hero-robot .lottie-bot {
  position: relative; z-index: 1; width: 152px; height: 152px;
  animation: robot-attract 3.4s ease-in-out infinite;
}
.hero-robot .lottie-bot svg { width: 100%; height: 100%; }
.hero-robot .bot-halo { width: 220%; }
@keyframes robot-in {
  from { opacity: 0; transform: scale(.2) rotate(-30deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes robot-attract {
  0%, 100% { transform: translateY(0) rotate(-6deg) scale(1); }
  20% { transform: translateY(-16px) rotate(5deg) scale(1.05); }
  40% { transform: translateY(-4px) rotate(-4deg) scale(1); }
  60% { transform: translateY(-18px) rotate(6deg) scale(1.06); }
  80% { transform: translateY(-8px) rotate(-3deg) scale(1.01); }
}
@media (prefers-reduced-motion: reduce) { .hero-robot, .hero-robot .lottie-bot { animation: none; } }
@media (max-width: 900px) {
  .hero-robot { top: -58px; right: 6px; width: 124px; height: 124px; }
  .hero-robot .lottie-bot { width: 124px; height: 124px; }
}
@media (max-width: 480px) {
  .hero-robot { top: -48px; right: 0; width: 106px; height: 106px; }
  .hero-robot .lottie-bot { width: 106px; height: 106px; }
}

.robot .r-head, .robot .r-neck { fill: var(--surface); stroke: var(--border); stroke-width: 2; }
.robot .r-body { fill: var(--surface); stroke: var(--border); stroke-width: 2; }
.robot .r-face { fill: var(--bg-soft); }
.robot .r-eye { animation: robot-blink 4.5s infinite; transform-box: fill-box; transform-origin: center; }
.robot .r-mouth { stroke: var(--text); stroke-width: 5; stroke-linecap: round; }
.robot .r-antenna { stroke: var(--muted); stroke-width: 5; stroke-linecap: round; }
.robot .r-antenna-tip { animation: robot-glow 2.4s ease-in-out infinite; }
@keyframes robot-blink { 0%, 90%, 100% { transform: scaleY(1); } 93%, 96% { transform: scaleY(.08); } }
@keyframes robot-glow { 0%, 100% { opacity: .65; } 50% { opacity: 1; } }

.robot-bubble {
  position: absolute; top: -60px; left: -200px; z-index: 3;
  background: var(--grad); color: #fff; font-size: 13px; font-weight: 700;
  padding: 11px 16px; border-radius: 16px 16px 16px 4px; white-space: nowrap;
  box-shadow: 0 14px 28px -10px rgba(255, 45, 45, .55);
  animation: robot-float 5s ease-in-out infinite;
}
@media (max-width: 640px) {
  .robot-wrap { top: -56px; right: 8px; }
  .robot { width: 108px; }
  .robot-bubble { top: -44px; left: auto; right: 118px; font-size: 11.5px; padding: 8px 12px; }
}

/* ---------- WhatsApp chat widget ---------- */
.wa-chat { position: fixed; bottom: 24px; right: 24px; z-index: 70; }
.wa-toggle {
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .6);
  transition: transform .25s var(--ease), background .25s;
}
.wa-toggle:hover { transform: scale(1.08); background: #20bd5a; }
.wa-toggle svg { width: 30px; height: 30px; stroke-linecap: round; stroke-linejoin: round; }
.wa-toggle .wa-icon { fill: #fff; stroke: none; }
.wa-toggle .wa-close { fill: none; stroke: currentColor; stroke-width: 1.8; }
.wa-close { display: none; }
.wa-chat.open .wa-icon { display: none; }
.wa-chat.open .wa-close { display: block; }
.wa-panel {
  position: absolute; bottom: 70px; right: 0; width: 330px;
  max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(12px) scale(.96); transform-origin: bottom right;
  pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.wa-chat.open .wa-panel { opacity: 1; transform: none; pointer-events: auto; }
.wa-head {
  display: flex; align-items: center; gap: 11px; padding: 14px 16px;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
}
.wa-head .wa-logo { width: 32px; height: 32px; fill: #fff; stroke: none; }
.wa-head b { display: block; font-size: 15px; }
.wa-head span { display: block; font-size: 11.5px; opacity: .85; margin-top: 1px; }
.wa-body { padding: 14px 14px 6px; display: grid; gap: 12px; background: var(--bg-soft); }
.wa-msg {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px 14px 14px 4px;
  padding: 11px 13px; font-size: 13.5px; line-height: 1.5; max-width: 88%;
}
.wa-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wa-chips button {
  border: 1px solid rgba(37, 211, 102, .5); background: var(--surface); color: #128c7e;
  font-size: 12px; font-weight: 700; padding: 7px 12px; border-radius: 999px; cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.wa-chips button:hover { background: #25d366; color: #fff; transform: translateY(-2px); }
.wa-foot { display: flex; gap: 8px; padding: 10px 12px 12px; background: var(--bg-soft); border-top: 1px solid var(--border); }
.wa-foot input {
  flex: 1; min-width: 0; padding: 11px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 13.5px;
}
.wa-foot input:focus { outline: none; border-color: #25d366; }
.wa-send {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; flex-shrink: 0;
  background: #25d366; color: #fff; font-size: 16px;
  transition: transform .2s, background .2s;
}
.wa-send:hover { transform: scale(1.1); background: #20bd5a; }
@media (max-width: 640px) {
  .wa-chat { bottom: 16px; right: 16px; }
  .wa-toggle { width: 52px; height: 52px; }
  .wa-toggle svg { width: 27px; height: 27px; }
  .wa-panel { width: 300px; bottom: 62px; }
}

/* ---------- Floating follow mascot ---------- */
.follow-robot {
  position: fixed; bottom: 24px; right: 24px; z-index: 70; width: 120px;
  opacity: 0; pointer-events: none; will-change: transform;
  transition: opacity .45s var(--ease);
}
.follow-robot.visible { opacity: 1; }
.follow-robot-inner {
  position: relative;
  animation: robot-float 5s ease-in-out infinite;
}
.bot-halo {
  position: absolute; top: 50%; left: 50%; width: 190%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .25) 42%, transparent 70%);
  border-radius: 50%; filter: blur(6px);
  animation: halo-pulse 3.6s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.follow-robot .lottie-bot {
  position: relative; z-index: 1; width: 120px; height: 120px;
  filter: drop-shadow(0 14px 24px rgba(20,20,20,.28));
}
.follow-robot .lottie-bot svg { width: 100%; height: 100%; }
.bot-bubble {
  position: absolute; top: -6px; right: calc(100% + 12px); z-index: 2;
  background: var(--grad); color: #fff; font-size: 12.5px; font-weight: 700;
  padding: 9px 14px; border-radius: 16px 16px 4px 16px; white-space: nowrap;
  box-shadow: 0 14px 28px -10px rgba(255, 45, 45, .55);
  opacity: 0; transform: translateX(8px) scale(.94); transform-origin: right center;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.follow-robot.visible .bot-bubble {
  opacity: 1; transform: translateX(0) scale(1);
}
@media (max-width: 640px) {
  .follow-robot { bottom: 16px; right: 16px; width: 88px; }
  .follow-robot .lottie-bot { width: 88px; height: 88px; }
  .bot-bubble { font-size: 11px; padding: 7px 11px; top: -14px; right: calc(100% + 8px); }
}
@media (prefers-reduced-motion: reduce) {
  .follow-robot-inner { animation: none; }
  .bot-halo { animation: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border); padding: 18px 0;
  background: var(--bg-soft); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 28s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.marquee span svg {
  width: 19px; height: 19px; fill: none; stroke: var(--red);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; } }

/* ---------- Bento services ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento .card {
  grid-column: span 2; position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.bento .card.wide { grid-column: span 3; }
.bento .card.big { grid-column: span 4; }
.bento .card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,45,45,.4); }
.bento .card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.bento .card:hover::before { transform: scaleX(1); }
.bento .icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--grad);
  color: #fff; display: grid; place-items: center; font-size: 20px; font-weight: 800; margin-bottom: 18px;
  box-shadow: 0 10px 22px -8px rgba(255,45,45,.5);
}
.bento .icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bento .card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.bento .card .tags span {
  font-size: 11px; font-weight: 700; letter-spacing: .4px; padding: 5px 11px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted);
}
.bento .card .card-no {
  position: absolute; top: 20px; right: 22px; font-size: 12px; font-weight: 800; letter-spacing: 2px; color: var(--muted); opacity: .55;
}
.bento .card h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -.3px; }
.bento .card p { color: var(--muted); font-size: 14px; }
.bento .card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--red); }
.bento .card .more .arr { transition: transform .25s var(--ease); }
.bento .card:hover .more .arr { transform: translateX(4px); }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento .card, .bento .card.wide, .bento .card.big { grid-column: span 1; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento .card, .bento .card.wide, .bento .card.big { grid-column: span 1; } }

/* ---------- Services list (editorial) ---------- */
.svc-list { display: flex; flex-direction: column; }
.svc {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px;
  align-items: center; padding: 34px 8px;
  border-top: 1px solid var(--border); position: relative;
  transition: background .3s var(--ease);
}
.svc:hover { background: linear-gradient(90deg, rgba(255,45,45,.05), transparent 55%); }
.svc:last-child { border-bottom: 1px solid var(--border); }
.svc-left { display: flex; align-items: center; gap: 22px; }
.svc-num {
  font-size: clamp(40px, 4vw, 58px); font-weight: 800; letter-spacing: -3px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; opacity: .85;
}
.svc-icon {
  width: 58px; height: 58px; border-radius: 18px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--red);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.svc-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc:hover .svc-icon { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 22px -8px rgba(255,45,45,.5); }
.svc-info h3 { font-size: clamp(21px, 2.4vw, 26px); letter-spacing: -.5px; margin-bottom: 8px; }
.svc-info p { color: var(--muted); font-size: 14.5px; max-width: 640px; }
.svc-info .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.svc-info .tags span {
  font-size: 11px; font-weight: 700; letter-spacing: .4px; padding: 5px 11px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted);
}
.svc-info .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--red); }
.svc-info .more .arr { transition: transform .25s var(--ease); }
.svc:hover .more .arr { transform: translateX(4px); }
.svc::after {
  content: ''; position: absolute; left: 8px; top: 0; width: 3px; height: 0;
  background: var(--grad); border-radius: 3px; transition: height .35s var(--ease);
}
.svc:hover::after { height: 100%; }
@media (max-width: 700px) {
  .svc { grid-template-columns: 1fr; gap: 16px; padding: 26px 4px; }
  .svc-left { justify-content: flex-start; }
}

/* ---------- Services image card grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-img-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-img-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,45,45,.4); }
.svc-img-card .card-media {
  aspect-ratio: 16 / 10; display: grid; place-items: center; padding: 22px;
  background: linear-gradient(135deg, rgba(255,45,45,.12), rgba(112,45,255,.10));
  position: relative; overflow: hidden;
}
.svc-img-card .card-media img { max-width: 100%; max-height: 150px; width: auto; object-fit: contain; display: block; transition: transform .5s var(--ease); }
.svc-img-card:hover .card-media img { transform: scale(1.06); }
.svc-img-card .card-head { display: flex; align-items: center; gap: 12px; padding: 22px 26px 0; }
.svc-img-card .card-num {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; color: #fff;
  background: var(--grad); padding: 4px 10px; border-radius: 999px; flex-shrink: 0;
}
.svc-img-card .card-icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--red); margin-left: auto; flex-shrink: 0;
}
.svc-img-card .card-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-img-card .card-body { padding: 6px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-img-card h3 { font-size: 19px; letter-spacing: -.4px; margin: 0 0 8px; }
.svc-img-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; flex: 1; }
.svc-img-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--red); }
.svc-img-card .more .arr { transition: transform .25s var(--ease); }
.svc-img-card:hover .more .arr { transform: translateX(4px); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }.why-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card .num { font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--red); }
.why-card .w-icon {
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--grad-soft); border: 1px solid rgba(255,45,45,.25);
  display: grid; place-items: center; margin-bottom: 16px;
}
.why-card .w-icon svg { width: 25px; height: 25px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 18px; margin: 10px 0 8px; }
.why-card p { color: var(--muted); font-size: 14px; }

/* ---------- Pills ---------- */
.pill-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 14px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  transition: all .25s var(--ease);
}
.pill:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 12px 24px -10px rgba(255,45,45,.5); }

/* ---------- SEO content grid ---------- */
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 38px; }
.seo-col {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 24px; box-shadow: var(--shadow-sm, none);
  transition: transform .25s var(--ease), border-color .25s;
}
.seo-col:hover { transform: translateY(-4px); border-color: rgba(255,45,45,.4); }
.seo-col h3 { font-size: 18px; letter-spacing: -.3px; }
.seo-col p { margin-top: 12px; color: var(--muted); font-size: 14.5px; line-height: 1.75; }
@media (max-width: 900px) { .seo-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; } }

/* ---------- Industry grid ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.ind-item {
  display: flex; flex-direction: column; gap: 9px; text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s, background .25s;
}
.ind-item:hover {
  transform: translateY(-4px); border-color: rgba(255,45,45,.4);
  box-shadow: var(--shadow); background: var(--grad-soft);
}
.ind-item svg { width: 28px; height: 28px; fill: none; stroke: var(--red); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ind-item b { font-size: 15px; letter-spacing: -.2px; }
.ind-item p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
@media (max-width: 560px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } .ind-item { padding: 18px 16px; } .ind-item p { font-size: 11.5px; } }

/* ---------- Process ---------- */
.process { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.process::before {
  content: ''; position: absolute; top: 56px; left: 7%; right: 7%; height: 2px;
  background: linear-gradient(90deg, rgba(255,45,45,.45), rgba(255,122,0,.45));
  z-index: 0;
}
.process .step {
  position: relative; z-index: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 26px 24px 30px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.process .step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,45,45,.4); }
.step-icon {
  position: relative; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--grad-soft); border: 1px solid rgba(255,45,45,.18);
  margin-bottom: 18px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.step-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.step:hover .step-icon { background: var(--grad); transform: scale(1.05); }
.step:hover .step-icon svg { stroke: #fff; }
.step-badge {
  position: absolute; right: 20px; top: 20px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 1px; color: var(--red);
  background: var(--grad-soft); border: 1px solid rgba(255,45,45,.18);
  padding: 6px 12px; border-radius: 999px;
  transition: background .3s var(--ease), color .3s;
}
.step:hover .step-badge { background: var(--grad); color: #fff; }
.step h3 { font-size: 17px; margin: 0 0 7px; }
.step p { color: var(--muted); font-size: 13.5px; margin: 0; }
@media (max-width: 1000px) { .process::before { display: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  display: flex; align-items: center; gap: 18px;
  padding: 24px 56px 24px 0; font-weight: 700; font-size: 16.5px; color: var(--text);
  transition: color .25s;
}
.faq-item summary:hover { color: var(--red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: ''; position: absolute; left: -26px; top: 50%; transform: translateY(-50%) scaleY(0);
  width: 4px; height: 60%; border-radius: 4px; background: var(--grad);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::before { transform: translateY(-50%) scaleY(1); }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-size: 21px; font-weight: 500;
  color: var(--red); background: rgba(255,45,45,.08);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(135deg); background: var(--grad); color: #fff; }
.faq-item[open] summary { background: linear-gradient(90deg, rgba(255,45,45,.05), transparent 60%); }
.faq-item .ans {
  padding: 0 56px 26px 0; color: var(--muted); font-size: 14.5px; line-height: 1.75;
  animation: fadeIn .35s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 560px) {
  .faq-item summary { font-size: 15px; padding: 20px 52px 20px 0; }
  .faq-item .ans { font-size: 13.5px; padding-right: 8px; }
  .faq-item summary::after { width: 36px; height: 36px; font-size: 19px; }
}

/* ---------- CTA band ---------- */
.cta-band { padding: 96px 0; position: relative; overflow: hidden; }
.cta-inner {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 30px; padding: 64px 40px; text-align: center; overflow: hidden; box-shadow: var(--shadow);
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0; background:
    radial-gradient(circle at 12% 20%, rgba(255,45,45,.16), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(255,122,0,.16), transparent 45%);
  z-index: 0;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -1.5px; margin-bottom: 14px; }
.cta-inner p { color: var(--muted); max-width: 620px; margin: 0 auto 30px; font-size: 16px; }
.cta-inner .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: #0d0f15; color: #cfd4dd; padding: 60px 0 30px; }
footer a { color: #cfd4dd; transition: color .2s; }
footer a:hover { color: #ff2d2d; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-grid h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.foot-grid p { font-size: 13.5px; color: #8a91a0; max-width: 340px; margin-top: 14px; }
.foot-grid li { margin-bottom: 10px; font-size: 13.5px; }
.foot-grid li a::before { content: '→ '; color: #ff2d2d; }
.foot-nap { border-top: 1px solid #1d222e; padding-top: 22px; font-size: 13px; color: #8a91a0; }
.foot-nap .row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }
.foot-nap a { color: #cfd4dd; }
.foot-nap a:hover { color: #ff2d2d; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Background tints ---------- */
.tint { background: var(--bg-soft); }

/* ---------- Hero scene decorations ---------- */
.hero-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

/* ---------- Duo feature cards (low-cost agency + web design) ---------- */
.duo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.duo-grid .cover-desc { display: flex; align-items: center; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.duo-grid .cover-desc:hover { transform: translateY(-3px); box-shadow: 0 12px 32px -12px rgba(0,0,0,.12); }
.duo-grid .cover-desc img { flex: 0 0 90px; width: 90px; height: 90px; margin: 18px 0 18px 18px; border-radius: 14px; object-fit: contain; display: block; background: transparent; }
.duo-text { flex: 1; padding: 22px 26px 22px 16px; display: flex; flex-direction: column; justify-content: center; }
.duo-text p { margin: 5px 0 12px; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.duo-text h3 { font-size: 16px; letter-spacing: -.3px; line-height: 1.3; }
.duo-grid .more { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--red); }
.duo-grid .more .arr { transition: transform .25s var(--ease); }
.duo-grid .cover-desc:hover .more .arr { transform: translateX(4px); }
@media (max-width: 620px) { .duo-grid { grid-template-columns: 1fr; } .duo-grid .cover-desc img { flex: 0 0 70px; width: 70px; height: 70px; } }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1120px; margin: 0 auto; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,45,45,.4); }
.blog-cover { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.blog-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,14,0) 55%, rgba(10,10,14,.55) 100%);
}
.blog-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-cover img { transform: scale(1.07); }
.blog-cover .blog-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; background: var(--grad); border: none;
  padding: 6px 12px; border-radius: 999px; box-shadow: 0 6px 18px rgba(255,45,45,.35);
}
.blog-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 24px; flex: 1; }
.blog-meta { display: flex; gap: 8px; font-size: 11.5px; color: var(--muted); font-weight: 600; }
.blog-meta span + span::before { content: '•'; margin-right: 8px; color: var(--red); }
.blog-body h3 { font-size: 16.5px; line-height: 1.45; margin: 0; }
.blog-body h3 a { color: var(--text); text-decoration: none; }
.blog-body h3 a:hover { color: var(--red); }
.blog-body p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin: 0; }
.blog-body .more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 8px; font-size: 13px; font-weight: 700; color: var(--red); }
.blog-body .more .arr { transition: transform .25s var(--ease); }
.blog-card:hover .more .arr { transform: translateX(4px); }

/* ---------- Get Quote form ---------- */
.form-card { max-width: 720px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; }
.quote-form { display: grid; gap: 16px; }
.quote-form .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 14px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,45,45,.12); }
.quote-form textarea { resize: vertical; }
.quote-form .btn { justify-self: start; border: none; cursor: pointer; }
@media (max-width: 560px) { .quote-form .f-row { grid-template-columns: 1fr; } .form-card { padding: 26px 20px; } }

/* ---------- About page ---------- */
.about-story { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.about-story .section-head { margin-bottom: 22px; }
.about-story h2 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -1px; }
.about-story > div > p { color: var(--muted); margin-bottom: 14px; }
.story-media { display: grid; gap: 18px; }
.story-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: 26px;
  padding: 36px 34px; box-shadow: var(--shadow);
}
.story-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(255,45,45,.13), transparent 50%),
              radial-gradient(circle at 95% 95%, rgba(255,122,0,.13), transparent 50%);
}
.story-card > * { position: relative; }
.story-flag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); background: var(--grad-soft); border: 1px solid rgba(255,45,45,.2);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.story-card .big-num {
  font-size: 58px; font-weight: 800; letter-spacing: -2px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.story-card .plus { font-size: .55em; vertical-align: super; }
.story-card h4 { margin: 18px 0 8px; font-size: 17px; }
.story-card p { color: var(--muted); font-size: 14px; }
.mv-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(255,45,45,.4); }
.mv-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid rgba(255,45,45,.18); margin-bottom: 18px;
}
.mv-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mv-card h3 { font-size: 18px; margin-bottom: 8px; }
.mv-card p { color: var(--muted); font-size: 14px; margin: 0; }
.mv-card .chip-row { margin-top: 18px; }
.stats-band {
  background: var(--grad); border-radius: 26px; padding: 48px 40px; color: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stats-band b { display: block; font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; line-height: 1; }
.stats-band span { display: block; margin-top: 10px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: .92; }
.check-list { display: grid; gap: 14px; margin: 22px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 14.5px; }
.check-list .ck {
  flex: 0 0 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid rgba(255,45,45,.2); color: var(--red);
}
.check-list .ck svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.v-row {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, background .3s var(--ease);
}
.v-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,45,45,.4); background: var(--surface); }
.v-icon {
  flex: 0 0 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid rgba(255,45,45,.18);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.v-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.v-row:hover .v-icon { background: var(--grad); transform: scale(1.06); }
.v-row:hover .v-icon svg { stroke: #fff; }
.v-info { flex: 1; min-width: 0; }
.v-info b { display: block; font-size: 17px; margin-bottom: 3px; }
.v-info p { color: var(--muted); font-size: 13.5px; margin: 0; }
.v-arrow {
  flex: 0 0 20px; width: 20px; height: 20px;
  fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), stroke .3s;
}
.v-row:hover .v-arrow { opacity: 1; transform: translateX(0); stroke: var(--red); }
@media (max-width: 760px) { .values-list { grid-template-columns: 1fr; } .v-row { padding: 18px 18px; } .v-icon { flex-basis: 44px; height: 44px; border-radius: 14px; } .v-info b { font-size: 15px; } .v-info p { font-size: 13px; } .v-arrow { display: none; } }
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stats-band { padding: 36px 24px; gap: 16px; }
  .story-card { padding: 28px 24px; }
}

/* ---------- Image placeholders (replace with real images) ---------- */
.placeholder-img {
  width: 100%; border-radius: var(--radius-sm); object-fit: cover;
  background: var(--grad-soft); border: 2px dashed rgba(255,45,45,.25);
  display: block; aspect-ratio: 16/9;
}
.placeholder-img.square { aspect-ratio: 1; }
.placeholder-img.portrait { aspect-ratio: 3/4; }
.placeholder-img.team { aspect-ratio: 1; border-radius: 50%; }

/* Team section */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px; margin-top: 44px;
}
.team-card {
  text-align: center; padding: 28px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card .placeholder-img.team { margin: 0 auto 18px; width: 120px; height: 120px; }
.team-card h4 { font-size: 17px; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--red); font-weight: 600; }
.team-card p { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* Hero banner illustration */
.hero-banner-img {
  width: 100%; max-width: 480px; border-radius: var(--radius);
  aspect-ratio: 4/3; object-fit: cover;
  background: var(--grad-soft); border: 2px dashed rgba(255,45,45,.25);
}
@media (max-width: 900px) { .hero-banner-img { max-width: 100%; } }

/* Service illustration inside cards */
.svc-illust {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-sm);
  object-fit: cover; background: var(--grad-soft);
  border: 2px dashed rgba(255,45,45,.25); margin-top: 16px;
}

