:root {
  --bg: #f4f7fb;
  --bg-dark: #0b1220;
  --surface: #ffffff;
  --surface-muted: #eef2f8;
  --text: #0f172a;
  --text-muted: #5b6478;
  --line: rgba(15, 23, 42, 0.08);
  --primary: #14b8a6;
  --primary-dark: #0d9488;
  --secondary: #2563eb;
  --accent: #f04f4c;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --header-h: 72px;
  --header-top-h: 36px;
  --container: 1180px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  color: #fff;
  border-radius: 999px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
}

.header-top {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top-inner {
  min-height: var(--header-top-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-location,
.header-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-top-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-top-link {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.header-top-link:hover {
  color: #5eead4;
}

.header-main {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: clamp(118px, 14vw, 148px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.site-nav-menu {
  min-width: 0;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.site-nav-menu a {
  display: block;
  padding: 0.45rem 0.72rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.site-nav-menu a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.site-nav-menu a.is-active {
  color: var(--primary-dark);
  background: rgba(20, 184, 166, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-phone-mobile {
  display: none;
}

.header-cta {
  padding-inline: 1.1rem;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.22);
}

@media (max-width: 1280px) {
  .site-nav-menu a {
    padding: 0.4rem 0.55rem;
    font-size: 0.8rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-cta {
    padding-inline: 0.95rem;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--text);
  transition: 0.2s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.65rem 1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 1.5rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #22d3ee);
  color: #042f2e;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.28);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-row,
.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.center-actions { justify-content: center; margin-top: 2rem; }

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 30%),
    var(--bg);
}

.hero-grid,
.feature-grid,
.contact-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1rem;
}

.eyebrow {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 58ch;
}

.hero-visual {
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 8% -6% -8% 8%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.25), rgba(37, 99, 235, 0.18));
  border-radius: 32px;
  z-index: -1;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-muted { background: var(--surface-muted); }
.section-dark {
  background: linear-gradient(180deg, #0b1220 0%, #111827 100%);
  color: #e5eef8;
}
.section-dark .section-head p { color: rgba(229, 238, 248, 0.72); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.about-panel {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.about-panel-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1220 0%, #111827 52%, #0f172a 100%);
  color: #e5eef8;
  box-shadow: 0 28px 70px rgba(11, 18, 32, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-panel-content {
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.about-panel-tag {
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5eead4;
}

.about-panel-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-panel-lead {
  margin: 0;
  max-width: 58ch;
  color: rgba(229, 238, 248, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-panel-lead a {
  color: #99f6e4;
  font-weight: 700;
}

.about-panel-list {
  margin: 1.35rem 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about-panel-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(229, 238, 248, 0.88);
  font-size: 0.94rem;
}

.about-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.about-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-panel-stats {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.about-panel-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-panel-stat:last-child {
  border-bottom: 0;
}

.about-panel-stat strong {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.about-panel-stat span {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(229, 238, 248, 0.62);
}

.about-panel-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.about-link-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.35);
}

.about-link-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--surface-muted);
  padding: 0.45rem;
  flex-shrink: 0;
}

.about-link-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.about-link-card span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-strip {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 2rem;
  align-items: start;
}

.split-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.split-label span { color: var(--text-muted); font-weight: 600; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.solution-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.solution-card:hover { transform: translateY(-4px); }
.solution-card img { margin: 0 auto 0.75rem; width: 64px; }
.solution-card span { font-weight: 700; font-size: 0.95rem; }

.feature-copy h2,
.about-main h2,
.contact-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin-top: 0;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.partner-logos img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: var(--surface);
  border-radius: 18px;
  padding: 0.75rem;
  border: 1px solid var(--line);
}

.stats {
  display: grid;
  gap: 1rem;
}

.stats-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.service-grid,
.project-grid,
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.project-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.project-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-dark .service-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-card {
  padding: 1.5rem;
}

.service-card img {
  width: 56px;
  margin-bottom: 1rem;
}

.service-card h3,
.project-meta h3,
.info-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.service-card p,
.info-card p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.service-card a,
.project-meta a {
  color: var(--primary-dark);
  font-weight: 700;
}

.project-thumb img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.project-meta { padding: 1rem 1.1rem 1.25rem; }
.project-meta p { color: var(--text-muted); margin: 0 0 0.75rem; font-size: 0.92rem; }

.cta-banner {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.72)), var(--banner-image) center/cover;
}

.cta-banner-inner {
  max-width: 760px;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-top: 0;
}

/* Page hero variants */
.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  background: linear-gradient(180deg, #fff, var(--bg));
}

.page-hero-accent {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.page-hero-commerce {
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.page-hero-order {
  background: linear-gradient(135deg, #fef2f2, #fff1f2);
}

.page-hero-custom {
  background: linear-gradient(135deg, #eef2ff, #ecfeff);
}

.prose,
.prose-grid .prose {
  max-width: 760px;
}

.prose h2 { margin-top: 0; }

.prose-grid {
  display: grid;
  gap: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-card { padding: 1.5rem; }

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

/* Contact */
.contact-chips,
.contact-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.contact-chips a,
.contact-list a {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-form {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #22d3ee, var(--secondary));
}

.contact-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.contact-form-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.contact-form-head h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.contact-form-note {
  margin: 0;
  max-width: 18ch;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.25rem 1.5rem 1.5rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span,
.field legend {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.field span em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: var(--surface-muted);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
}

.field input:hover,
.field textarea:hover {
  background: #e9eef5;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 112px;
}

.field-full { grid-column: 1 / -1; }

.interest-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.interest-field legend {
  margin-bottom: 0.15rem;
}

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.interest-chip {
  cursor: pointer;
}

.interest-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-chip span {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: 0.2s ease;
}

.interest-chip:hover span {
  border-color: rgba(20, 184, 166, 0.35);
  color: var(--text);
}

.interest-chip input:checked + span,
.interest-chip input:focus-visible + span {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(34, 211, 238, 0.12));
  border-color: rgba(20, 184, 166, 0.45);
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.08);
}

.form-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.form-submit {
  width: 100%;
  justify-content: center;
  gap: 0.65rem;
}

.form-privacy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  margin: 0;
  min-height: 1.25rem;
  font-weight: 600;
  text-align: center;
  font-size: 0.92rem;
}

.form-status.is-success { color: var(--primary-dark); }
.form-status.is-error { color: var(--accent); }

.map-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-sitemap {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.sitemap-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.sitemap-count {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.sitemap-count strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.sitemap-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem;
}

.sitemap-grid a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.sitemap-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.35);
}

.sitemap-grid span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.sitemap-grid code {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sitemap-grid em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #dbe7f5;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand p {
  color: rgba(219, 231, 245, 0.72);
  max-width: 36ch;
}

.footer-grid h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(219, 231, 245, 0.82);
}

.footer-links a:hover,
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(219, 231, 245, 0.55);
  font-size: 0.92rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .header-top {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav-menu a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 14px;
  }

  .header-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .header-phone-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: var(--surface-muted);
    font-weight: 700;
    color: var(--text);
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .contact-section,
  .split-section,
  .about-strip,
  .about-panel-shell,
  .about-panel-links,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-panel-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-panel-stat {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    padding: 1rem;
  }

  .about-panel-stat:last-child {
    border-right: 0;
  }

  .solution-grid,
  .service-grid,
  .project-grid,
  .project-grid-full,
  .stats-inline,
  .checklist-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-form-head {
    flex-direction: column;
    padding-top: 1.25rem;
  }

  .contact-form-note {
    max-width: none;
    text-align: left;
  }

  .form-grid {
    padding: 1rem 1.1rem 1.25rem;
  }

  .solution-grid,
  .service-grid,
  .project-grid,
  .project-grid-full,
  .stats-inline,
  .about-panel-links,
  .about-panel-stats,
  .checklist-grid,
  .two-col,
  .form-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-panel-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-panel-stat:last-child {
    border-bottom: 0;
  }

  .about-link-card {
    padding: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover { transform: none; }
  .error-404-orbit-a,
  .error-404-orbit-b {
    animation: none;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 0.85rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.45;
}

.breadcrumbs a:hover {
  color: var(--primary-dark);
}

/* FAQ */
.faq-section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.15rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

/* Landing */
.page-hero-landing .hero-grid {
  align-items: center;
}

.page-hero-landing .info-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Blog */
.blog-count {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.blog-list-section {
  padding-block: 2.5rem 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.blog-card time {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.blog-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}

.blog-card h2 a:hover {
  color: var(--primary-dark);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.blog-pagination-status {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.blog-tags span {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-muted);
}

.blog-read {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
}

.blog-article-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.blog-article-head time {
  display: block;
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-prose {
  max-width: 760px;
}

.blog-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.blog-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-prose p,
.blog-prose li {
  color: var(--text-muted);
}

.blog-prose ul,
.blog-prose ol {
  padding-left: 1.25rem;
}

.blog-prose a {
  color: var(--secondary);
  text-decoration: underline;
}

.blog-prose code {
  background: var(--surface-muted);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

/* 404 */
.error-404-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(20, 184, 166, 0.22), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(160deg, #0b1220 0%, #111827 48%, #0f172a 100%);
  color: #fff;
}

.error-404-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.error-404-copy {
  position: relative;
  z-index: 1;
}

.error-404-code {
  margin: 0 0 0.35rem;
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #5eead4, #22d3ee 45%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow-light {
  color: rgba(226, 232, 240, 0.72);
}

.error-404-copy h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  color: #fff;
}

.error-404-lead {
  max-width: 34rem;
  color: rgba(226, 232, 240, 0.78);
}

.error-404-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.error-404-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.error-404-orbit-a {
  width: min(100%, 340px);
  aspect-ratio: 1;
  animation: error404-spin 18s linear infinite;
}

.error-404-orbit-b {
  width: min(78%, 260px);
  aspect-ratio: 1;
  border-color: rgba(20, 184, 166, 0.22);
  animation: error404-spin 24s linear infinite reverse;
}

.error-404-card {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  text-align: center;
}

.error-404-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  color: #cbd5e1;
}

.error-404-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-weight: 600;
}

.error-404-links-section .lead {
  max-width: 42rem;
  margin-bottom: 0;
}

.error-404-links-head {
  margin-bottom: 1.5rem;
}

.error-404-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.error-404-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.error-404-link:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.35);
}

.error-404-link-label {
  font-weight: 700;
  color: var(--text);
}

.error-404-link-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.error-404-solutions {
  margin-bottom: 0.5rem;
}

@keyframes error404-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .error-404-grid {
    grid-template-columns: 1fr;
  }

  .error-404-visual {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .error-404-links {
    grid-template-columns: 1fr;
  }
}
