/* ==========================================================================
   Deazitech — Static Site Stylesheet
   Brand-led light theme:
     Navy   #233E59  (logo navy — headings, hero & footer bands)
     Orange #D88419  (logo orange — buttons, accents, highlights)
   ========================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/inter-var-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/inter-var-italic.woff2") format("woff2");
}

:root {
  --navy: #233e59;
  --navy-deep: #182c42;
  --navy-deeper: #101f30;
  --orange: #d88419;
  --orange-dark: #b96f12;
  --orange-soft: rgba(216, 132, 25, 0.10);
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --surface: #ffffff;
  --border: #e2e9f2;
  --border-dark: rgba(255, 255, 255, 0.12);
  --heading: #1c3147;
  --text: #3a4f66;
  --muted: #64798f;
  --on-dark: #e8eef5;
  --on-dark-muted: #a7b8ca;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(35, 62, 89, 0.07);
  --shadow: 0 14px 40px rgba(35, 62, 89, 0.12);
  --container: 1180px;
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--orange-dark); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

section { padding: 88px 0; }

/* Dark navy band sections */
.band-dark {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: #ffffff; }
.band-dark p, .band-dark .section-head p { color: var(--on-dark-muted); }

.band-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

.hl { color: var(--orange); }
.band-dark .hl { color: #f0a23c; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-primary { background: var(--orange); color: #ffffff; }
.btn-primary:hover {
  background: var(--orange-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(216, 132, 25, 0.35);
}

.btn-ghost { background: transparent; color: var(--heading); border-color: #c8d4e2; }
.btn-ghost:hover { color: var(--heading); border-color: var(--orange); transform: translateY(-2px); }

.band-dark .btn-ghost, .hero .btn-ghost, .page-hero .btn-ghost, .cta-banner .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}
.band-dark .btn-ghost:hover, .hero .btn-ghost:hover, .page-hero .btn-ghost:hover, .cta-banner .btn-ghost:hover {
  border-color: var(--orange);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .main-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 9px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}
.main-nav > a:hover, .main-nav .nav-link:hover { color: var(--heading); background: var(--bg-alt); }
.main-nav > a.active { color: var(--orange-dark); }

.caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s ease; }

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 330px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 110;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .caret, .has-dropdown.open .caret { transform: rotate(225deg) translateY(-2px); }

.dropdown .dd-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px 4px;
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--heading);
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown a small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; }
.dropdown a:hover { background: var(--orange-soft); color: var(--orange-dark); }
.dropdown .dd-all { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; color: var(--orange-dark); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 11px 22px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--heading); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero (home — navy band)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 110px;
  overflow: hidden;
  background:
    radial-gradient(820px 420px at 85% -10%, rgba(216, 132, 25, 0.18) 0%, transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(120, 165, 210, 0.14) 0%, transparent 60%),
    linear-gradient(168deg, var(--navy) 0%, var(--navy-deep) 70%, var(--navy-deeper) 100%);
}
.hero h1, .hero h2, .hero h3 { color: #ffffff; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark-muted);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }

.hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 22px; }
.hero .lede { font-size: 18px; color: var(--on-dark-muted); max-width: 580px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-points li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--on-dark-muted);
  font-size: 14px;
  font-weight: 500;
}
.hero-points li::before { content: "✓"; color: var(--orange); font-weight: 800; }

/* Hero code-card visual */
.hero-visual { position: relative; }
.terminal-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(8, 18, 30, 0.45);
  backdrop-filter: blur(6px);
}
.terminal-card .tc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--on-dark-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terminal-card .tc-top .tc-dots { display: flex; gap: 6px; }
.terminal-card .tc-top .tc-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.terminal-card .tc-top .tc-dots i:first-child { background: var(--orange); }

.terminal-card pre {
  font-family: "Cascadia Code", "JetBrains Mono", Consolas, monospace;
  font-size: 13px;
  line-height: 1.85;
  color: var(--on-dark-muted);
  overflow-x: auto;
  white-space: pre;
}
.terminal-card pre .k { color: #f0a23c; }
.terminal-card pre .v { color: #9cc3e8; }
.terminal-card pre .ok { color: #5fd38a; }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  box-shadow: var(--shadow);
  z-index: 2;
}
.float-chip small { display: block; font-weight: 500; color: var(--muted); }
.float-chip.chip-1 { top: -46px; left: -34px; }
.float-chip.chip-2 { bottom: -22px; right: -18px; }
.float-chip .ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  font-size: 17px;
}

/* --------------------------------------------------------------------------
   Page hero (inner pages — navy band)
   -------------------------------------------------------------------------- */

.page-hero {
  padding: calc(var(--header-h) + 76px) 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 50% -20%, rgba(216, 132, 25, 0.16) 0%, transparent 60%),
    linear-gradient(168deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.page-hero h1 { font-size: clamp(32px, 4.6vw, 48px); margin-bottom: 18px; color: #ffffff; position: relative; }
.page-hero p { color: var(--on-dark-muted); font-size: 17px; max-width: 680px; margin: 0 auto; position: relative; }
.page-hero .crumbs { position: relative; margin-bottom: 18px; font-size: 13.5px; color: var(--on-dark-muted); }
.page-hero .crumbs a { color: var(--on-dark-muted); }
.page-hero .crumbs a:hover { color: #ffffff; }

/* --------------------------------------------------------------------------
   Terminal brands strip
   -------------------------------------------------------------------------- */

.brands { padding: 38px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.brands p {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.brand-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
.brand-row span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #7c8fa3;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.brand-row span:hover { color: var(--navy); border-color: var(--orange); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(216, 132, 25, 0.5); box-shadow: var(--shadow); }
.card.featured {
  background: linear-gradient(160deg, rgba(216, 132, 25, 0.07) 0%, #ffffff 55%);
  border-color: rgba(216, 132, 25, 0.35);
}

.card .icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--orange-dark);
}
.card .icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }

.card .tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.card .tag.navy { background: rgba(35, 62, 89, 0.08); color: var(--navy); }

.card ul { margin-top: 16px; }
.card ul li {
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  padding: 5px 0 5px 24px;
  position: relative;
}
.card ul li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 700; }

/* --------------------------------------------------------------------------
   Stats (navy band)
   -------------------------------------------------------------------------- */

.stats { padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(34px, 4vw, 48px); font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.stat .label { color: var(--on-dark-muted); font-size: 14px; font-weight: 500; margin-top: 6px; }

.stats.on-light .stat .label { color: var(--muted); }
.stats.on-light .stat .num { color: var(--orange); }

/* --------------------------------------------------------------------------
   Split sections
   -------------------------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }

.check-list { margin: 22px 0 30px; }
.check-list li {
  list-style: none;
  padding: 8px 0 8px 36px;
  position: relative;
  color: var(--heading);
  font-weight: 600;
  font-size: 15.5px;
}
.check-list li small { display: block; color: var(--muted); font-weight: 400; font-size: 14px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 23px; height: 23px;
  border-radius: 7px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.panel .terminal-card { background: var(--navy-deep); border-color: transparent; box-shadow: none; }

/* --------------------------------------------------------------------------
   "How we build" — AI section
   -------------------------------------------------------------------------- */

.howwe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 8px; }
.howwe {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.howwe .num {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.howwe h3 { font-size: 17.5px; margin-bottom: 10px; color: #ffffff; }
.howwe p { color: var(--on-dark-muted); font-size: 14px; }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}
.step .num { font-size: 13px; font-weight: 800; color: var(--orange); letter-spacing: 0.12em; margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; }

/* --------------------------------------------------------------------------
   Industries / pills
   -------------------------------------------------------------------------- */

.pill-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pill:hover { border-color: var(--orange); transform: translateY(-2px); }
.pill .em { color: var(--orange); font-size: 18px; }

/* --------------------------------------------------------------------------
   Tech chips
   -------------------------------------------------------------------------- */

.tech-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tech-group { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.tech-group h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-dark); margin-bottom: 16px; }
.tech-group .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-group .chips span {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Portfolio cards
   -------------------------------------------------------------------------- */

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(216, 132, 25, 0.45); }
.work-card .wc-head {
  padding: 22px 26px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.work-card .wc-head h3 { color: #ffffff; font-size: 18px; }
.work-card .wc-head .wc-type {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd9a3;
  background: rgba(216, 132, 25, 0.22);
  padding: 4px 12px;
  border-radius: 999px;
}
.work-card .wc-body { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.work-card .wc-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.work-card .wc-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.work-card .wc-meta span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 7px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.quote-card[data-link]:not([data-link=""]) { cursor: pointer; }
.quote-card[data-link]:not([data-link=""]):hover {
  transform: translateY(-4px);
  border-color: rgba(216, 132, 25, 0.45);
  box-shadow: var(--shadow);
}
.quote-card .stars { color: #e9a23b; letter-spacing: 3px; margin-bottom: 16px; }
.quote-card blockquote { color: var(--text); font-size: 15px; margin-bottom: 16px; }
.quote-card blockquote.clamp {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quote-card .read-more {
  display: none;
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin: -6px 0 18px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange-dark);
  cursor: pointer;
}
.quote-card .read-more:hover { color: var(--orange); }
.quote-card .read-more.show { display: inline-block; }
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card .who .avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  overflow: hidden;
}
.quote-card .who .avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-card .who strong { display: block; color: var(--heading); font-size: 15px; }
.quote-card .who small { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

/* Testimonial slider */
.quote-slider { position: relative; }
.quote-slider .quote-viewport { overflow: hidden; }
.quote-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}
.quote-track .quote-card { flex: 0 0 calc((100% - 48px) / 3); }

.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.slider-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #cdd8e4;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dots button.active { background: var(--orange); transform: scale(1.3); }

@media (max-width: 1024px) {
  .quote-track .quote-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
  .quote-track .quote-card { flex-basis: 100%; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: #ffffff; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--heading);
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 600; color: var(--orange); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */

.cta-banner {
  position: relative;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(216, 132, 25, 0.22) 0%, transparent 60%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 22px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 16px; color: #ffffff; }
.cta-banner p { color: var(--on-dark-muted); max-width: 600px; margin: 0 auto 32px; }

/* --------------------------------------------------------------------------
   Service detail blocks
   -------------------------------------------------------------------------- */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.service-block.rev .sb-text { order: 2; }
.service-block.rev .sb-panel { order: 1; }
.service-block h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.service-block p { color: var(--muted); margin-bottom: 14px; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }

.contact-info .info-card {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-info .info-card .icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  font-size: 19px;
}
.contact-info .info-card h3 { font-size: 16px; margin-bottom: 6px; }
.contact-info .info-card p, .contact-info .info-card a { font-size: 14px; color: var(--muted); }
.contact-info .info-card a:hover { color: var(--orange-dark); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.contact-form h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cdd8e4;
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--heading);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(216, 132, 25, 0.16);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 16px; font-size: 14px; font-weight: 600; display: none; }
.form-status.ok { display: block; color: #1d7a3f; }
.form-status.err { display: block; color: #c43d3d; }

/* --------------------------------------------------------------------------
   Footer (navy)
   -------------------------------------------------------------------------- */

.site-footer { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deeper) 100%); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: #ffffff; margin-bottom: 20px; }
.footer-grid p { color: var(--on-dark-muted); font-size: 14px; margin-top: 18px; max-width: 300px; }
.footer-grid ul li { list-style: none; margin-bottom: 11px; }
.footer-grid ul a { color: var(--on-dark-muted); font-size: 14px; transition: color 0.18s ease; }
.footer-grid ul a:hover { color: #f0a23c; }
.footer-grid address { font-style: normal; color: var(--on-dark-muted); font-size: 14px; line-height: 1.8; }
.footer-grid address strong { color: #ffffff; display: block; margin-top: 14px; }
.footer-grid address strong:first-child { margin-top: 0; }
.footer-grid address a { color: var(--on-dark-muted); }
.footer-grid address a:hover { color: #f0a23c; }

.footer-logo { display: inline-block; background: #ffffff; border-radius: 12px; padding: 10px 16px; }
.footer-logo img { height: 40px; width: auto; }

.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: var(--on-dark-muted);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.social-row a:hover { color: #f0a23c; border-color: var(--orange); }
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--on-dark-muted);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Cookie consent banner (injected by JS)
   -------------------------------------------------------------------------- */

.consent-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.consent-banner p { font-size: 13.5px; color: var(--text); flex: 1 1 280px; margin: 0; }
.consent-banner .consent-actions { display: flex; gap: 10px; }
.consent-banner .btn { padding: 9px 18px; font-size: 13.5px; }

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .card-grid, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .tech-groups { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .howwe-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 12px 24px 20px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav > a, .main-nav .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .main-nav > a:last-child { border-bottom: none; }

  .has-dropdown { width: 100%; }
  .dropdown {
    position: static;
    min-width: 0;
    border: none;
    box-shadow: none;
    padding: 0 0 6px 10px;
    opacity: 1;
    transform: none;
    visibility: visible;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }

  .logo img { height: 38px; }

  .split, .service-block, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-block.rev .sb-text { order: 1; }
  .service-block.rev .sb-panel { order: 2; }
  .card-grid, .card-grid.two, .card-grid.four { grid-template-columns: 1fr; }
  .tech-groups { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .howwe-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .float-chip.chip-1 { left: 8px; top: -42px; }
  .float-chip.chip-2 { right: 8px; bottom: -20px; }
  .cta-banner { padding: 48px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
