:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --ink: #101c30;
  --muted: #54627a;
  --line: #d7e1f2;
  --primary: #0f8a75;
  --primary-dark: #0c6e5d;
  --accent: #2f7df4;
  --accent-soft: #e7f0ff;
  --radius: 18px;
  --shadow: 0 16px 38px rgba(15, 29, 58, 0.08);
  --max-width: 1260px;
  --focus-ring: rgba(47, 125, 244, 0.28);
  --space-section: clamp(2.2rem, 4vw, 3.2rem);
  --space-section-mobile: 1.9rem;
  --space-hero-top: clamp(2.5rem, 5vw, 3.8rem);
  --space-hero-bottom: clamp(1.9rem, 4vw, 2.9rem);
  --space-page-hero-top: clamp(1.8rem, 3.8vw, 2.8rem);
  --space-page-hero-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
  --header-offset: 5.8rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-offset);
  background:
    radial-gradient(700px 400px at 10% -10%, rgba(19, 196, 162, 0.15), rgba(19, 196, 162, 0)),
    radial-gradient(620px 360px at 100% 0%, rgba(68, 129, 255, 0.14), rgba(68, 129, 255, 0)),
    linear-gradient(180deg, #f5f9ff 0%, #f1f5fe 100%);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

p {
  margin-top: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

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

.section {
  position: relative;
  padding: var(--space-section) 0;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(234, 244, 255, 0.9) 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0d6e5d;
  font-weight: 700;
}

.subtext {
  color: var(--muted);
  max-width: 56ch;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.2rem;
  border: 1px solid rgba(9, 102, 86, 0.22);
  border-radius: 12px;
  background: linear-gradient(135deg, #109d83 0%, #0e7f6b 100%);
  box-shadow: 0 10px 22px rgba(15, 138, 117, 0.24);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0e8f78 0%, #0c7461 100%);
}

.button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.button-light {
  border: 1px solid #c7d9f5;
  background: #ffffff;
  color: #184173;
  box-shadow: 0 8px 18px rgba(31, 58, 102, 0.12);
}

.button-light:hover {
  background: #f2f7ff;
}

.button-small {
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 160;
  padding: 0.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #d8e4f5;
  box-shadow: 0 6px 16px rgba(13, 33, 64, 0.06);
}

.site-header .container {
  width: min(1240px, calc(100% - 1.8rem));
  max-width: 1220px;
  margin-inline: auto;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 140;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: #0d352b;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 0.4rem;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.08rem;
  margin: 0;
  padding: 0.92rem 0.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand img {
  width: 2.28rem;
  height: 2.28rem;
  border-radius: 0.6rem;
}

.main-nav {
  display: inline-flex;
  gap: 0.34rem;
  align-items: center;
  margin-inline: auto;
}

.main-nav a {
  padding: 0.5rem 0.88rem;
  border-radius: 10px;
  color: #4f5f79;
  font-size: 0.98rem;
  font-weight: 600;
  transition: background 0.22s ease, color 0.22s ease;
}

.main-nav a:hover {
  background: #eef4ff;
  color: #16253d;
}

.main-nav a.nav-current {
  background: #e2f3ed;
  color: #0a6d5b;
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 2.54rem;
  height: 2.54rem;
  padding: 0.44rem;
  border: 1px solid #cfdcf0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: var(--space-hero-top);
  padding-bottom: var(--space-hero-bottom);
}

.page-hero {
  padding-top: var(--space-page-hero-top);
  padding-bottom: var(--space-page-hero-bottom);
}

.hero .container,
.page-hero .container {
  border: 1px solid #dbe5f6;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 251, 255, 0.94) 100%);
  box-shadow: var(--shadow);
}

.hero .container {
  padding: clamp(1.2rem, 2.2vw, 2.1rem);
}

.page-hero .container {
  padding: clamp(1.2rem, 2vw, 1.9rem);
  text-align: center;
}

.hero h1 {
  margin-bottom: 0.9rem;
  font-size: 55px;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
  font-size: 55px;
}

.page-hero .subtext {
  max-width: min(86ch, 100%);
  margin-inline: auto;
  margin-bottom: 0;
}

.contact-page .page-hero {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.contact-page #contact.section {
  padding-top: 1.1rem;
  padding-bottom: 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.hero-actions-compact {
  margin-top: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.hero-tags span {
  padding: 0.35rem 0.6rem;
  border: 1px solid #cae0ff;
  border-radius: 999px;
  background: #e7f4ff;
  color: #1a4978;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel-card {
  padding: 1.05rem;
  border: 1px solid #dce6f7;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 10px 22px rgba(18, 34, 64, 0.06);
}

.panel-highlight {
  border-color: transparent;
  background: linear-gradient(130deg, #109d83 0%, #2674d6 100%);
  color: #f5fffd;
}

.panel-card .number {
  margin: 0.35rem 0;
  font-size: 2rem;
  font-weight: 800;
}

.panel-highlight .muted {
  color: #d8ecff;
}

.strip {
  padding: 1rem 0;
  border: 1px solid #dbe6f8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.strip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.logo-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.logo-list span {
  padding: 0.5rem 0.7rem;
  border: 1px solid #d7e4f8;
  border-radius: 999px;
  background: #f6f9ff;
  color: #2a3f60;
  font-size: 0.85rem;
}

.section-head {
  margin-bottom: 0.9rem;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

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

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

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
}

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

.service-card,
.solution-card,
.timeline-item,
.case-card,
.stat-card,
.testimonial,
.faq-item,
.contact-form,
.office-card {
  border: 1px solid #dbe5f6;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 22px rgba(18, 34, 64, 0.06);
}

.service-card,
.solution-card,
.case-card {
  padding: 1rem;
}

.timeline-item,
.stat-card,
.office-card {
  padding: 0.9rem;
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(19, 36, 70, 0.11);
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  margin: 0;
  padding-left: 1rem;
}

.service-card li {
  margin: 0.35rem 0;
}

.case-card .result {
  margin-bottom: 0;
  color: #0f5f4b;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-item span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: #eaf2ff;
  color: #25508d;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 0.85rem;
  border: 1px solid #cbdcf6;
  border-radius: 999px;
  background: #f8fbff;
  color: #23426b;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active {
  border-color: transparent;
  background: linear-gradient(130deg, #1a8f79 0%, #226ac2 100%);
  color: #fff;
}

.stat-number {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #0f6f58;
}

.stat-label {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-track {
  position: relative;
  min-height: 160px;
}

.testimonial {
  display: none;
  padding: 1rem;
}

.testimonial.active {
  display: block;
}

.testimonial h3 {
  margin: 1rem 0 0;
}

.testimonial span {
  color: var(--muted);
}

.carousel-btn {
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid #d1dff3;
  border-radius: 50%;
  background: #ffffff;
  color: #29456d;
  cursor: pointer;
}

.carousel-btn:hover {
  background: #eef4ff;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.9rem;
  border: 0;
  text-align: left;
  background: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0.9rem 0.9rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-page .contact-grid {
  gap: 1.2rem;
  align-items: start;
}

.contact-copy ul {
  padding-left: 1.1rem;
}

.contact-page .contact-copy > p,
.contact-page .contact-copy ul {
  margin-bottom: 0.75rem;
}

.contact-page .office-card {
  padding: 0.9rem;
}

.contact-page .office-card h3 {
  margin-bottom: 0.45rem;
}

.office-card-spaced {
  margin-top: 0.62rem;
}

.office-card ul {
  margin: 0;
  padding-left: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem;
}

.contact-page .contact-form {
  gap: 0.42rem;
  padding: 1rem;
}

.required-note {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.required-mark {
  margin-left: 0.2rem;
  color: #c63636;
  font-weight: 700;
}

.contact-form label {
  margin-top: 0.22rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-page .contact-form label {
  margin-top: 0.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.62rem;
  border: 1px solid #cfdcf0;
  border-radius: 10px;
  background: #fdfefe;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  padding: 0.66rem 0.74rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #8fc6ff;
  outline: 3px solid rgba(94, 150, 232, 0.2);
}

.contact-form input:invalid:focus,
.contact-form textarea:invalid:focus {
  border-color: #c63636;
  outline: 2px solid rgba(198, 54, 54, 0.2);
}

.hidden-field {
  display: none !important;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.trust-note {
  margin-top: 0.22rem;
  padding: 0.85rem 0.85rem 0.85rem 1rem;
  border: 1px solid #d4e5f8;
  border-left: 5px solid var(--accent);
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f9ff 0%, #edf7f5 100%);
}

.contact-page .trust-note {
  margin-top: 0.28rem;
  padding: 0.82rem 0.9rem 0.82rem 0.98rem;
}

.trust-note-title {
  margin: 0 0 0.25rem;
  color: #1f4c82;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-note ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.45;
}

.contact-page .trust-note ul {
  padding-left: 1.05rem;
}

.trust-note li {
  margin: 0.28rem 0;
  color: var(--muted);
}

.contact-page .trust-note li {
  margin: 0.3rem 0;
}

.trust-note li::marker {
  color: #1f4c82;
}

.trust-note strong {
  color: #1f4c82;
}

.form-message {
  margin: 0.35rem 0 0;
  font-weight: 600;
}

.contact-page .form-message {
  margin-top: 0.32rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.95rem;
  border: 1px solid rgba(208, 226, 255, 0.35);
  border-radius: 20px;
  background: linear-gradient(125deg, #0f7a67 0%, #2a6bc5 100%);
  box-shadow: 0 18px 40px rgba(21, 46, 89, 0.24);
  color: #ecfff7;
}

.cta-banner h3 {
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
}

.cta-banner p {
  margin: 0;
  color: #d3e7ff;
}

.site-footer {
  padding-top: 1.4rem;
  background: linear-gradient(180deg, #0f1f36 0%, #0c1b2f 100%);
  color: #d9e8fd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.8rem;
}

.site-footer h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: #cfe1fb;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer-contact a {
  cursor: pointer;
}

.footer-bottom {
  margin-top: 0.65rem;
  padding: 0.72rem 0 0.95rem;
  border-top: 1px solid rgba(178, 206, 247, 0.25);
}

.footer-bottom p {
  margin: 0;
  color: #bdd4f4;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(130deg, #0e8b75 0%, #2a6dc8 100%);
  box-shadow: 0 10px 20px rgba(20, 59, 120, 0.28);
  color: #fff;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.app-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 160;
  min-width: 240px;
  max-width: 340px;
  padding: 0.72rem 0.9rem;
  border: 1px solid #9fd8c5;
  border-radius: 12px;
  background: #e9f8f1;
  color: #165845;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(17, 41, 31, 0.18);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.app-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.app-toast.error {
  border-color: #e0a7a7;
  background: #faecec;
  color: #8d2626;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(2px);
  opacity: 0.6;
}

.bg-shape-one {
  top: -100px;
  left: -90px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at center, rgba(46, 198, 168, 0.26) 0%, rgba(46, 198, 168, 0) 72%);
}

.bg-shape-two {
  right: -100px;
  bottom: -120px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle at center, rgba(83, 136, 255, 0.24) 0%, rgba(83, 136, 255, 0) 72%);
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.active,
.reveal-delay.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-offset: 5.25rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(11, 24, 43, 0.36);
    backdrop-filter: blur(2px);
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.6rem));
  }

  .site-header .container {
    width: min(1220px, calc(100% - 1rem));
    padding: 0;
  }

  .nav-wrap {
    margin: 0;
    padding: 0.76rem 0.56rem;
    gap: 0.5rem;
  }

  .brand {
    font-size: 1.16rem;
  }

  .brand img {
    width: 2.04rem;
    height: 2.04rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(330px, 86vw);
    height: 100dvh;
    max-height: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.22rem;
    padding: 4.8rem 0.8rem 1rem;
    border-left: 1px solid #d2dff4;
    border-radius: 0;
    background: #ffffff;
    box-shadow: -10px 0 28px rgba(20, 34, 63, 0.18);
    transform: translateX(106%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
    z-index: 150;
  }

  .main-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 0.7rem 0.76rem;
    border-radius: 9px;
    font-size: 1rem;
    line-height: 1.25;
  }

  .menu-toggle {
    display: inline-block;
    width: 2.48rem;
    height: 2.48rem;
    padding: 0.4rem;
    border-radius: 9px;
    z-index: 155;
  }

  .nav-wrap > .button-small {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .hero .container,
  .page-hero .container {
    border-radius: 18px;
    padding: 1rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 4.85rem;
  }

  .container {
    width: min(var(--max-width), calc(100% - 0.85rem));
  }

  .site-header .container {
    width: calc(100% - 0.85rem);
    padding: 0;
  }

  .nav-wrap {
    margin: 0;
    padding: 0.62rem 0.42rem;
    gap: 0.42rem;
  }

  .brand {
    font-size: 1.06rem;
  }

  .brand img {
    width: 1.94rem;
    height: 1.94rem;
  }

  .menu-toggle {
    width: 2.36rem;
    height: 2.36rem;
    padding: 0.36rem;
  }

  .main-nav {
    width: min(300px, 88vw);
    padding: 4.55rem 0.68rem 0.9rem;
    gap: 0.18rem;
  }

  .main-nav a {
    padding: 0.64rem 0.7rem;
    font-size: 0.98rem;
  }

  .section {
    padding: var(--space-section-mobile) 0;
  }

  .hero {
    padding-top: 2.1rem;
    padding-bottom: 1.5rem;
  }

  .page-hero {
    padding-top: 1.5rem;
    padding-bottom: 0.95rem;
  }

  .contact-page #contact.section {
    padding-top: 0.8rem;
    padding-bottom: 1.5rem;
  }

  .card-grid,
  .case-grid,
  .footer-grid,
  .stats-grid,
  .panel-row {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .hero .container,
  .page-hero .container {
    padding: 0.92rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cta-banner {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .app-toast {
    left: 1rem;
    right: 1rem;
    min-width: 0;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
