/* =============================================================
   UNIQUE INDUSTRIAL AUTOMATION PVT LTD — Luxury Rebuild 2026
   Designed & developed by Novelio Technologies
   Stack: HTML + Vanilla CSS + Vanilla JS
   Palette derived from the UIAPL logo (teal swoosh + violet wordmark)
   ============================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand */
  --brand: #16a085;
  --brand-2: #0e8c74;
  --brand-deep: #075e4e;
  --brand-soft: #e7f6f1;
  --brand-glow: rgba(22, 160, 133, .35);

  /* Luxury accents */
  --accent: #c9a24b;     /* champagne gold */
  --accent-2: #e4c77a;
  --violet: #6b4e9e;     /* from logo wordmark */

  /* Neutrals */
  --ink: #0e141b;        /* near-black charcoal */
  --graphite: #18222d;
  --slate: #2f3b47;
  --text: #1d2630;
  --muted: #5b6b7a;
  --line: rgba(15, 30, 40, .10);
  --line-strong: rgba(15, 30, 40, .16);

  /* Surfaces */
  --bg: #f5f8f8;
  --bg-2: #eef3f3;
  --surface: #ffffff;
  --glass: rgba(255, 255, 255, .65);
  --glass-dark: rgba(18, 28, 36, .55);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(13, 28, 38, .06), 0 2px 6px rgba(13, 28, 38, .06);
  --shadow-md: 0 6px 18px rgba(13, 28, 38, .10), 0 2px 6px rgba(13, 28, 38, .06);
  --shadow-lg: 0 24px 60px -20px rgba(13, 28, 38, .35), 0 10px 24px -12px rgba(13, 28, 38, .18);
  --shadow-glow: 0 20px 50px -18px var(--brand-glow);

  /* Geometry */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --container: 1240px;
  --topbar-h: 42px;
  --header-h: 78px;

  /* Type */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
p { color: var(--muted); }

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

/* Ambient page background — layered glows for depth */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 85% -5%, rgba(22, 160, 133, .10), transparent 60%),
    radial-gradient(50% 45% at 5% 15%, rgba(107, 78, 158, .07), transparent 60%),
    radial-gradient(45% 40% at 95% 90%, rgba(201, 162, 75, .07), transparent 60%);
  pointer-events: none;
}

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.grid { display: grid; gap: 26px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brand-2);
  padding: 7px 15px; border-radius: 100px;
  background: var(--brand-soft); border: 1px solid rgba(22, 160, 133, .18);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(22,160,133,.18); }

.section-title { font-size: clamp(1.9rem, 4vw, 3.1rem); margin: 18px 0 16px; }
.section-title .grad { background: linear-gradient(100deg, var(--brand), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-lead { max-width: 640px; font-size: 1.06rem; color: var(--muted); }
.center .section-lead { margin-inline: auto; }

.text-grad { background: linear-gradient(100deg, var(--brand), var(--brand-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 4. Buttons ---------- */
.btn {
  --b: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 14px 28px; border-radius: 100px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(120deg, var(--brand), var(--brand-deep)); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 56px -16px var(--brand-glow); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand-2); box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(120deg, var(--accent-2), var(--accent)); color: #3a2d05; box-shadow: 0 18px 40px -16px rgba(201,162,75,.6); }
.btn-gold:hover { transform: translateY(-3px); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- 5. Top Bar ---------- */
.topbar {
  background: var(--ink); color: #cfd9df;
  font-size: .82rem; height: var(--topbar-h);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: #cfd9df; transition: color .2s; }
.topbar a:hover { color: var(--accent-2); }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--brand); }
.topbar-social { display: flex; align-items: center; gap: 6px; }
.topbar-social a {
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px;
  background: rgba(255,255,255,.06); transition: background .2s, transform .2s, color .2s;
}
.topbar-social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar-left .topbar-item:last-child { display: none; } }
@media (max-width: 560px) { .topbar { font-size: .76rem; } .topbar-item span.lbl { display: none; } }

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s, padding .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,.9); }
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: height .3s; }
.scrolled .nav { height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.scrolled .brand img { height: 38px; transition: height .3s; }
.brand .brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em; line-height: 1; }
.brand .brand-text small { display: block; font-size: .58rem; font-weight: 600; letter-spacing: .18em; color: var(--brand-2); margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .94rem; color: var(--slate);
  padding: 10px 15px; border-radius: 100px; position: relative; transition: color .2s, background .2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--brand-2); background: var(--brand-soft); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--surface); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s var(--ease); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw);
    flex-direction: column; align-items: stretch; gap: 6px; justify-content: flex-start;
    background: var(--surface); padding: calc(var(--header-h) + 24px) 22px 30px;
    box-shadow: var(--shadow-lg); transform: translateX(105%); transition: transform .4s var(--ease-out); z-index: 99;
  }
  .nav-open .nav-menu { transform: translateX(0); }
  .nav-menu a { padding: 14px 18px; font-size: 1.05rem; border-radius: 14px; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); font-weight: 800; letter-spacing: -.03em; }
.hero h1 .grad { background: linear-gradient(100deg, var(--brand), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--slate); max-width: 540px; margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--ink); display: block; }
.hero-stats .stat span { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* Hero visual — layered glass + parallax */
.hero-visual { position: relative; perspective: 1400px; }
.hero-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); transform-style: preserve-3d;
  transform: rotateY(-9deg) rotateX(4deg); transition: transform .5s var(--ease);
  border: 1px solid rgba(255,255,255,.5);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.hero-visual:hover .hero-card { transform: rotateY(-4deg) rotateX(2deg); }
.hero-badge {
  position: absolute; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: var(--glass); border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; z-index: 3;
}
.hero-badge .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; flex-shrink: 0; }
.hero-badge .ic svg { width: 22px; height: 22px; }
.hero-badge strong { font-family: var(--font-head); font-size: 1rem; color: var(--ink); display: block; line-height: 1.1; }
.hero-badge span { font-size: .76rem; color: var(--muted); }
.hero-badge.b1 { top: 18px; left: -26px; animation: float 6s ease-in-out infinite; }
.hero-badge.b2 { bottom: 26px; right: -20px; animation: float 6s ease-in-out infinite 1.5s; }
.hero-blob { position: absolute; width: 360px; height: 360px; border-radius: 50%; filter: blur(70px); z-index: -1; opacity: .55; }
.hero-blob.g1 { background: var(--brand-glow); top: -60px; right: -40px; }
.hero-blob.g2 { background: rgba(107,78,158,.3); bottom: -50px; left: -30px; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hero-badge.b1, .hero-badge.b2 { animation: none; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-card { transform: none; }
  .hero-badge.b1 { left: 10px; } .hero-badge.b2 { right: 10px; }
}

/* Marquee / client strip */
.marquee-wrap { overflow: hidden; padding: 26px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.5); }
.marquee { display: flex; gap: 56px; width: max-content; animation: scroll-x 28s linear infinite; align-items: center; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--slate); opacity: .55; white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; }
.marquee span::after { content: "◆"; color: var(--brand); font-size: .6rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ---------- 8. Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, var(--brand), transparent 40%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card-ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; background: var(--brand-soft); color: var(--brand-2); transition: transform .35s var(--ease), background .35s, color .35s; }
.card-ic svg { width: 28px; height: 28px; }
.card:hover .card-ic { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; transform: rotate(-6deg) scale(1.05); }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--brand-2); }
.card-link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card-link svg { transform: translateX(4px); }
.card .card-num { position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--bg-2); z-index: 0; }

/* Client logo marquee ("Happy Clients") */
.logo-marquee { overflow: hidden; padding: 6px 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-track { display: flex; gap: 18px; width: max-content; animation: scroll-x 40s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.client-logo { flex: 0 0 auto; width: 190px; display: grid; place-items: center; padding: 24px 26px; min-height: 108px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.client-logo img { max-height: 54px; width: auto; filter: grayscale(1); opacity: .72; transition: filter .35s, opacity .35s, transform .35s; }
.client-logo:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(22,160,133,.28); }
.client-logo:hover img { filter: none; opacity: 1; transform: scale(1.04); }
@media (max-width: 480px) { .client-logo { width: 150px; padding: 18px; min-height: 92px; } .client-logo img { max-height: 44px; } }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .logo-marquee { -webkit-mask: none; mask: none; }
}

/* Glass card variant */
.glass {
  background: var(--glass); backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.55); box-shadow: var(--shadow-md);
}

/* ---------- 9. Feature split (About / What we do) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media .frame { position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%; border: 2px solid var(--brand); border-radius: var(--radius-lg); z-index: -1; }
.split-media .badge-float {
  position: absolute; bottom: -22px; left: -22px; background: var(--surface);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.split-media .badge-float .num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; background: linear-gradient(120deg, var(--brand), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.split-media .badge-float span { font-size: .82rem; color: var(--muted); max-width: 120px; }
.feature-list { margin-top: 24px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--slate); font-weight: 500; }
.feature-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--brand-soft); color: var(--brand-2); display: grid; place-items: center; margin-top: 2px; }
.feature-list .tick svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 50px; } .split.rev .split-media { order: 0; } }

/* Luxury portrait treatment (e.g. leadership photo) */
.md-portrait { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(160deg, var(--graphite), var(--ink)); }
.md-portrait .md-photo { display: block; width: 100%; border-radius: var(--radius-lg); box-shadow: none; filter: contrast(1.04) saturate(1.06) brightness(1.01); }
/* Soft vignette to calm the busy background and draw the eye to the face */
.md-portrait::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 70px 18px rgba(14, 20, 27, .28); background: radial-gradient(120% 80% at 50% 18%, transparent 45%, rgba(14, 20, 27, .22) 100%); }
/* Bottom fade blending the photo into a brand-tinted base */
.md-portrait::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 3; pointer-events: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); background: linear-gradient(to top, var(--brand-deep) 0%, rgba(7, 94, 78, .55) 32%, transparent 100%); }
.md-portrait .md-caption { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 4; color: #fff; }
.md-portrait .md-caption strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.md-portrait .md-caption span { font-size: .85rem; color: rgba(255, 255, 255, .82); }

/* ---------- 10. Stats band ---------- */
.band { position: relative; background: linear-gradient(135deg, var(--ink), var(--graphite)); color: #fff; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 80% 20%, var(--brand-glow), transparent 60%), radial-gradient(45% 55% at 10% 90%, rgba(107,78,158,.25), transparent 60%); }
.band .container { position: relative; }
.band h2, .band h3 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: transform .35s var(--ease), background .35s; }
.stat-box:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.stat-box .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); background: linear-gradient(120deg, #fff, var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-box .l { color: #b8c6cf; font-size: .9rem; margin-top: 4px; }
@media (max-width: 680px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 11. Reviews ---------- */
.review-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 40px; }
.review-tab {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--slate);
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--line-strong); background: var(--surface);
  transition: all .25s var(--ease);
}
.review-tab:hover { border-color: var(--brand); color: var(--brand-2); }
.review-tab.active { background: linear-gradient(120deg, var(--brand), var(--brand-deep)); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review .stars { display: flex; gap: 3px; color: #f5b942; margin-bottom: 14px; }
.review .stars svg { width: 18px; height: 18px; }
.review-text { color: var(--slate); font-size: .98rem; flex: 1; }
.review-foot { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--brand), var(--violet)); flex-shrink: 0; }
.review-who strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink); }
.review-who span { font-size: .8rem; color: var(--muted); }
.review-foot .gicon { margin-left: auto; width: 22px; height: 22px; }
.reviews-summary { display: inline-flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; padding: 12px 24px; box-shadow: var(--shadow-sm); margin-top: 8px; }
.reviews-summary .score { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--ink); }
.reviews-summary .stars { display: flex; gap: 2px; color: #f5b942; }
.reviews-summary .stars svg { width: 16px; height: 16px; }
.hidden { display: none !important; }

/* ---------- 12. CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); overflow: hidden; background: linear-gradient(125deg, var(--brand-deep), var(--ink)); color: #fff; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 80% at 85% 10%, var(--brand-glow), transparent 60%); }
.cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; right: -80px; bottom: -120px; border-radius: 50%; border: 60px solid rgba(255,255,255,.04); }
.cta-band .container, .cta-inner { position: relative; z-index: 1; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 620px; }
.cta-inner p { color: #cdd8df; margin-top: 12px; max-width: 520px; }

/* ---------- 13. Inquiry form ---------- */
.form-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.form-aside { background: linear-gradient(150deg, var(--ink), var(--graphite)); color: #fff; padding: clamp(32px, 4vw, 50px); position: relative; overflow: hidden; }
.form-aside::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 50% at 90% 10%, var(--brand-glow), transparent 60%); }
.form-aside > * { position: relative; z-index: 1; }
.form-aside h3 { color: #fff; font-size: 1.6rem; margin-bottom: 14px; }
.form-aside p { color: #c2cfd7; }
.contact-lines { margin-top: 30px; display: grid; gap: 18px; }
.contact-lines a, .contact-lines div { display: flex; align-items: center; gap: 14px; color: #e5edf1; font-size: .96rem; }
.contact-lines .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex-shrink: 0; color: var(--accent-2); }
.contact-lines .ic svg { width: 20px; height: 20px; }
.form-body { background: var(--surface); padding: clamp(32px, 4vw, 50px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--slate); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px var(--brand-glow); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.form-msg { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .9rem; display: none; }
.form-msg.ok { display: block; background: var(--brand-soft); color: var(--brand-deep); border: 1px solid rgba(22,160,133,.3); }
@media (max-width: 820px) { .form-split { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- 14. Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 6vw, 80px); background: linear-gradient(135deg, var(--ink), var(--graphite)); color: #fff; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(45% 70% at 85% 0%, var(--brand-glow), transparent 60%), radial-gradient(40% 60% at 0% 100%, rgba(107,78,158,.25), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 760px; }
.page-hero p { color: #c5d2da; max-width: 600px; margin-top: 16px; font-size: 1.08rem; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: #9fb0bb; margin-bottom: 18px; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.breadcrumb [aria-current] { color: var(--accent-2); }

/* ---------- 15. Accordion (FAQ) ---------- */
.accordion { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.acc-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc-item.open { box-shadow: var(--shadow-md); border-color: rgba(22,160,133,.3); }
.acc-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.acc-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; background: var(--brand-soft); color: var(--brand-2); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.acc-q .pm svg { width: 17px; height: 17px; }
.acc-item.open .pm { background: var(--brand); color: #fff; transform: rotate(135deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a-inner { padding: 0 24px 24px; color: var(--muted); }

/* ---------- 16. Industries / pills ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.ind-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 30px 26px; min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(160deg, var(--graphite), var(--ink)); border: 1px solid rgba(255,255,255,.08); transition: transform .35s var(--ease), box-shadow .35s; isolation: isolate; }
.ind-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 60% at 80% 10%, var(--brand-glow), transparent 60%); opacity: 0; transition: opacity .35s; }
.ind-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.ind-card:hover::after { opacity: 1; }
.ind-card .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,.1); display: grid; place-items: center; margin-bottom: auto; color: var(--accent-2); }
.ind-card .ic svg { width: 26px; height: 26px; }
.ind-card h3 { color: #fff; font-size: 1.15rem; margin-top: 16px; }
.ind-card p { color: #aebcc6; font-size: .86rem; margin-top: 4px; }

/* ---------- 17. Process / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .step-n { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-glow); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* ---------- 18. Footer ---------- */
.site-footer { background: var(--ink); color: #aebcc6; padding-top: 70px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 300px; background: radial-gradient(50% 100% at 80% 0%, rgba(22,160,133,.12), transparent 60%); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 38px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer-brand p { margin: 18px 0; max-width: 320px; color: #9fb0bb; font-size: .94rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cfd9df; transition: background .25s, transform .25s, color .25s; }
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #9fb0bb; font-size: .93rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--accent-2); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: #9fb0bb; font-size: .93rem; margin-bottom: 13px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 24px 0; font-size: .86rem; color: #8597a3; }
.footer-bottom a { color: var(--accent-2); font-weight: 600; }
.footer-credit strong { color: #fff; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 19. Sticky mobile buttons ---------- */
.sticky-mobile { display: none; }
@media (max-width: 768px) {
  .sticky-mobile { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; box-shadow: 0 -6px 24px rgba(13,28,38,.18); }
  .sticky-mobile a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: #fff; }
  .sticky-mobile .sm-call { background: linear-gradient(120deg, var(--brand), var(--brand-deep)); }
  .sticky-mobile .sm-wa { background: linear-gradient(120deg, #25d366, #1da851); }
  .sticky-mobile svg { width: 20px; height: 20px; }
  body { padding-bottom: 54px; }
}

/* Floating WhatsApp bubble (desktop) */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #1da851); display: grid; place-items: center; color: #fff; box-shadow: 0 14px 34px rgba(37,211,102,.45); transition: transform .3s var(--ease); animation: pulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse { 0% { box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 768px) { .wa-float { display: none; } }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ---------- 20. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Scroll progress bar */
.scroll-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--brand), var(--violet), var(--accent)); transition: width .1s linear; }

/* ---------- 21. Misc / utilities ---------- */
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 50px; }
@media (max-width: 760px) { .lead-grid { grid-template-columns: 1fr; gap: 18px; } }
.prose p { margin-bottom: 18px; color: var(--slate); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 8px 16px; border-radius: 100px; background: var(--surface); border: 1px solid var(--line-strong); font-size: .86rem; font-weight: 500; color: var(--slate); transition: all .25s; }
.tag:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-2px); }
.mt-s { margin-top: 28px; } .mt-m { margin-top: 44px; } .mb-0 { margin-bottom: 0; }
