:root {
  --c-primary: #229EBD;
  --c-accent: #F78400;
  --c-deep: #053C55;
  --c-ink: #0f1c24;
  --c-soft: #f4f7f9;
  --c-white: #ffffff;
  --shadow: 0 20px 50px rgba(5, 60, 85, 0.18);
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #f8fbfd;
  color: var(--c-ink);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -10% -10% auto -10%;
  height: 120vh;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(34, 158, 189, 0.22), transparent 45%),
    radial-gradient(circle at calc(100% - var(--mx, 50%)) calc(60% - var(--my, 30%)), rgba(247, 132, 0, 0.16), transparent 40%);
  transition: background 0.25s ease;
  z-index: -2;
  pointer-events: none;
}

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

.bg-orbit {
  position: fixed;
  inset: -40% 0 auto 0;
  height: 80vh;
  background: radial-gradient(circle, rgba(34, 158, 189, 0.2), transparent 60%);
  filter: blur(0px);
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}

.page-home .bg-orbit {
  display: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8vw 10px;
  position: sticky;
  top: 0;
  background: rgba(248, 251, 253, 0.8);
  backdrop-filter: blur(14px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-logo {
  width: 60%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}

.page-inner .brand-logo {
  width: 60%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  max-width: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--c-deep);
  color: var(--c-white);
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-text {
  font-size: 1.1rem;
  color: var(--c-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(5, 60, 85, 0.2);
  background: var(--c-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-deep);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(34, 158, 189, 0.15);
  color: var(--c-deep);
}

.site-nav .cta {
  background: var(--c-accent);
  color: var(--c-white);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 8vw 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1.6rem, 4rem);
  line-height: 1.1;
  color: var(--c-deep);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn.primary {
  background: var(--c-deep);
  color: var(--c-white);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid rgba(5, 60, 85, 0.2);
  color: var(--c-deep);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.metric {
  padding: 16px;
  border-radius: 16px;
  background: var(--c-white);
  box-shadow: 0 15px 30px rgba(5, 60, 85, 0.08);
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-deep);
}

.metric-label {
  font-size: 0.85rem;
  color: rgba(15, 28, 36, 0.7);
}

.hero-panel {
  position: relative;
}

.panel-card {
  background: var(--c-white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.panel-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--c-deep);
}

.panel-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.panel-list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
}

.panel-glow {
  position: absolute;
  inset: 18% -10% -20% 20%;
  background: radial-gradient(circle, rgba(34, 158, 189, 0.2), transparent 60%);
  z-index: 1;
  filter: blur(0px);
}

.lottie-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.lottie-inline {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.lottie {
  width: 340px;
  height: 340px;
}

.section {
  padding: 60px 8vw;
}

.section-header {
  max-width: 520px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  color: var(--c-deep);
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.chips-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.chips-grid span {
  padding: 12px 16px;
  background: rgba(34, 158, 189, 0.12);
  border-radius: 14px;
  font-weight: 600;
  color: var(--c-deep);
  text-align: center;
  min-height: 48px;
  line-height: 48px;
}

.standards {
  background: rgba(5, 60, 85, 0.04);
  border-radius: 28px;
  margin: 0 8vw;
}

.standards .section-header {
  text-align: center;
  margin: 0 auto 32px;
}

.standards .chips-grid {
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  justify-items: center;
}

.standards .chips-grid span {
  width: 100%;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact-line span {
  display: block;
  font-weight: 600;
  color: var(--c-deep);
}

.contact-line a {
  color: inherit;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(5, 60, 85, 0.2);
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(5, 60, 85, 0.28);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--c-white);
  box-shadow: 0 12px 30px rgba(5, 60, 85, 0.08);
}

.metric-card h3 {
  color: var(--c-deep);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.metric-chart {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: end;
  height: 64px;
}

.metric-chart span {
  display: block;
  width: 100%;
  background: rgba(34, 158, 189, 0.25);
  border-radius: 10px 10px 6px 6px;
}

.metric-chart span:nth-child(1) { height: 20%; }
.metric-chart span:nth-child(2) { height: 40%; }
.metric-chart span:nth-child(3) { height: 60%; }
.metric-chart span:nth-child(4) { height: 80%; }
.metric-chart span:nth-child(5) { height: 100%; }

.chart-performance span:nth-child(5),
.chart-detection span:nth-child(5) {
  background: rgba(247, 132, 0, 0.65);
}

.chart-costs span {
  background: rgba(5, 60, 85, 0.2);
}

.chart-costs span:nth-child(4),
.chart-costs span:nth-child(5) {
  background: rgba(34, 158, 189, 0.65);
}

.chart-incidents span {
  background: rgba(5, 60, 85, 0.18);
}

.chart-incidents span:nth-child(1) { height: 80%; }
.chart-incidents span:nth-child(2) { height: 60%; }
.chart-incidents span:nth-child(3) { height: 35%; }
.chart-incidents span:nth-child(4) { height: 15%; }
.chart-incidents span:nth-child(5) { height: 6%; background: rgba(247, 132, 0, 0.65); }

.card {
  background: var(--c-white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(5, 60, 85, 0.08);
}

.card h3 {
  color: var(--c-deep);
  margin-bottom: 10px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(247, 132, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--c-accent);
}

.link {
  color: var(--c-accent);
  font-weight: 600;
  display: inline-flex;
  margin-top: 16px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.chips span {
  padding: 8px 14px;
  background: rgba(34, 158, 189, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: var(--c-white);
  box-shadow: 0 10px 30px rgba(5, 60, 85, 0.08);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--c-deep);
  color: var(--c-white);
  font-weight: 700;
}

.logos {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.logo-tile {
  padding: 18px 20px;
  background: rgba(5, 60, 85, 0.08);
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--c-deep);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.logo-tile img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.9);
}

/* ═══ Vulnerability cards ═══ */
.vuln-card {
  position: relative;
  padding-top: 36px !important;
}

.vuln-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--c-white);
}

.vuln-tag--critical {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.vuln-tag--high {
  background: linear-gradient(135deg, var(--c-accent), #ea580c);
}

.vuln-tag--medium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.vuln-card h3 {
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: var(--c-deep);
  margin-bottom: 6px;
}

.vuln-card p {
  font-size: 0.85rem;
  color: rgba(15, 28, 36, 0.6);
}

/* ═══ Result cards ═══ */
.result-card {
  text-align: center;
}

.result-chart {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 auto 12px;
}

.result-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.result-card p {
  font-size: 0.88rem;
  color: rgba(15, 28, 36, 0.6);
}

/* ═══ Use-case cards ═══ */
.usecase-card {
  text-align: center;
}

.usecase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34, 158, 189, 0.15), rgba(5, 60, 85, 0.06));
  color: var(--c-primary);
}

.usecase-icon svg {
  width: 24px;
  height: 24px;
}

.usecase-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.usecase-card p {
  font-size: 0.88rem;
  color: rgba(15, 28, 36, 0.6);
}

.section-note {
  margin-top: 24px;
  padding: 0 8vw;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(15, 28, 36, 0.6);
  font-style: italic;
}

.cta-section {
  margin: 40px 8vw 80px;
  padding: 36px 40px;
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(34, 158, 189, 0.2), rgba(247, 132, 0, 0.18));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 8vw;
}

.inline-cta p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-deep);
}

.site-footer {
  padding: 30px 8vw 50px;
  display: grid;
  gap: 20px;
  border-top: 1px solid rgba(5, 60, 85, 0.08);
  color: rgba(15, 28, 36, 0.7);
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--c-ink);
}

.footer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  min-width: 120px;
  max-width: 180px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(15, 28, 36, 0.7);
}

.footer-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-columns h4 {
  color: var(--c-deep);
  margin-bottom: 10px;
}

.footer-columns a {
  display: block;
  color: rgba(15, 28, 36, 0.7);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-note {
  font-size: 0.9rem;
  font-family: "Consolas", monospace;
}

.page-hero {
  padding: 80px 8vw 40px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
  color: var(--c-deep);
  margin-bottom: 10px;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(240px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding-top: 90px;
}

.services-hero .hero-copy p {
  max-width: 560px;
}

.services-hero .hero-copy p + p {
  margin-top: 12px;
}

.services-hero .hero-visual {
  display: flex;
  justify-content: center;
}

.services-hero .lottie {
  width: 320px;
  height: 320px;
}

/* ═══ Service sections (open layout) ═══ */

/* Title row: icon + heading inline */
.svc-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.svc-title-row h2 {
  white-space: normal;
  word-break: break-word;
}

.svc-section-header {
  max-width: 680px;
}

.svc-section-header p + p {
  margin-top: 6px;
}

.svc-subtitle {
  color: rgba(15, 28, 36, 0.55);
  font-size: 0.92rem;
  font-style: italic;
}

/* Icon badge in title */
.svc-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(247, 132, 0, 0.15), rgba(247, 132, 0, 0.05));
  display: grid;
  place-items: center;
  color: var(--c-accent);
  transition: transform 0.3s ease;
}

.svc-icon svg {
  width: 26px;
  height: 26px;
}

.svc-icon:hover {
  transform: scale(1.08) rotate(-3deg);
}

.svc-icon--alt {
  background: linear-gradient(135deg, rgba(34, 158, 189, 0.18), rgba(5, 60, 85, 0.08));
  color: var(--c-primary);
}

/* List items with animated bullets */
.svc-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(15, 28, 36, 0.82);
}

.svc-list li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
  transition: transform 0.2s ease;
}

.svc-list li:hover {
  transform: translateX(4px);
}

.svc-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--c-accent);
  position: absolute;
  left: 0;
  top: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.svc-list li:hover::before {
  transform: scale(1.3);
  background: var(--c-primary);
}

.architecture {
  padding: 60px 8vw;
}

.architecture-flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 0 10px;
}

.flow-item {
  padding: 12px 18px;
  border-radius: 16px;
  background: var(--c-white);
  box-shadow: 0 10px 24px rgba(5, 60, 85, 0.08);
  font-weight: 600;
  color: var(--c-deep);
  position: relative;
  text-align: center;
}

.flow-item::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-accent);
  font-weight: 700;
}

.flow-item:last-child::after {
  content: "";
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form input,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(5, 60, 85, 0.2);
  font-family: "Consolas", monospace;
}

.form textarea {
  resize: vertical;
}

.form button {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 16px 5vw 10px;
  }

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

  .brand-logo,
  .page-inner .brand-logo {
    max-width: 100%;
  }

  .nav-toggle {
    display: flex;
    margin-top: 4px;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: var(--c-white);
    box-shadow: 0 12px 30px rgba(5, 60, 85, 0.08);
    display: none;
    margin-top: 12px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Hero stacks vertically */
  .services-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 70px;
  }

  .services-hero .hero-visual {
    order: -1;
  }

  .services-hero .lottie {
    width: 240px;
    height: 240px;
  }

  /* Split layouts stack */
  .split {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* Footer stacks */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Architecture flow goes vertical */
  .architecture-flow {
    grid-auto-flow: row;
    grid-auto-columns: unset;
  }

  .flow-item::after {
    content: "↓";
    position: static;
    transform: none;
    display: block;
    margin-top: 8px;
    text-align: center;
  }

  /* Titles wrap properly */
  .svc-title-row {
    flex-wrap: wrap;
  }

  .svc-title-row h2 {
    white-space: normal;
    word-break: break-word;
  }

  /* CTA section stacks */
  .cta-section {
    flex-direction: column;
    text-align: center;
    margin: 20px 5vw 60px;
    padding: 28px 24px;
  }

  .cta-actions {
    justify-content: center;
  }

  /* Inline CTA stacks */
  .inline-cta {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 24px 5vw;
  }
}

@media (max-width: 600px) {
  /* Reduce general padding */
  .hero {
    padding: 50px 5vw 40px;
  }

  .page-hero {
    padding: 60px 5vw 30px;
  }

  .section {
    padding: 40px 5vw;
  }

  .site-footer {
    padding: 24px 5vw 40px;
  }

  /* Smaller hero text */
  .page-hero h1,
  .hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .section h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  /* Lottie sizes */
  .lottie {
    width: 220px;
    height: 220px;
  }

  .services-hero .lottie {
    width: 200px;
    height: 200px;
  }

  /* Cards single column */
  .cards {
    grid-template-columns: 1fr;
  }

  /* Chips wrap better */
  .chips-grid {
    grid-template-columns: 1fr;
  }

  /* CTA section */
  .cta-section {
    margin: 16px 4vw 40px;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  /* Inline CTA */
  .inline-cta {
    padding: 20px 5vw;
  }

  .inline-cta p {
    font-size: 0.95rem;
  }

  /* Section note */
  .section-note {
    padding: 0;
  }

  /* Buttons full width on mobile */
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

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

  /* Footer columns */
  .footer-columns {
    grid-template-columns: 1fr;
  }

  /* Metrics grid */
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Result chart size */
  .result-chart {
    width: 70px;
  }

  /* Vuln tag */
  .vuln-card {
    padding-top: 40px !important;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline items */
  .timeline-item {
    padding: 12px;
    gap: 12px;
  }

  /* Svc icon smaller */
  .svc-icon {
    width: 42px;
    height: 42px;
  }

  .svc-icon svg {
    width: 22px;
    height: 22px;
  }

  .svc-title-row {
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .hero h1 {
    font-size: 1.5rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .lottie {
    width: 180px;
    height: 180px;
  }

  .services-hero .lottie {
    width: 160px;
    height: 160px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
