:root {
  --color-white: #ffffff;
  --color-ink: #071331;
  --color-muted: #5b6b86;
  --color-soft: #f6f9ff;
  --color-soft-2: #eef5ff;
  --color-line: #dbe7f8;
  --color-blue: #2563eb;
  --color-blue-2: #3b82f6;
  --color-cyan: #22d3ee;
  --color-violet: #8b5cf6;
  --color-navy: #050b2d;
  --color-navy-2: #0b1746;
  --color-card: rgba(255, 255, 255, 0.86);
  --shadow-soft: 0 18px 50px rgba(37, 99, 235, 0.12);
  --shadow-card: 0 12px 30px rgba(9, 25, 66, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --header-height: 88px;
  --font-sans: -apple-system, "Noto Sans TC", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-white);
  letter-spacing: 0;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--color-blue);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(219, 231, 248, 0.7);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 100%;
}

.brand-logo-footer {
  height: 50px;
  /* dark navy footer: render the logo (dark text + colour mark) as a clean white mark */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  min-width: 40px;
  place-items: center;
}

.brand-mark img {
  width: auto;
  height: 100%;
  max-height: 40px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand-text strong {
  color: #253456;
  font-size: 13px;
  font-weight: 800;
}

.brand-text span {
  color: #10224f;
  font-size: 12px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links,
.nav-actions,
.footer-grid ul,
.contact-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #17264c;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-blue);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.lang-switch span:first-child {
  color: var(--color-blue);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--color-blue);
  color: #fff;
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.24);
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  border-color: rgba(37, 99, 235, 0.38);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-blue);
}

.btn-secondary:hover {
  border-color: var(--color-blue);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.nav-cta {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-soft-2);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--color-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 64px 0 64px;
  background:
    radial-gradient(circle at 78% 18%, rgba(139, 92, 246, 0.17), transparent 32%),
    radial-gradient(circle at 21% 30%, rgba(34, 211, 238, 0.20), transparent 34%),
    linear-gradient(180deg, #f9fcff 0%, #eef6ff 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 54% 45%, rgba(37, 99, 235, 0.12), transparent 30%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 62px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.1vw, 72px);
  line-height: 1.09;
  letter-spacing: 0;
}

/* Keep the English hero headline compact so the EN and ZH heroes match height */
html[lang="en"] .hero-copy h1 {
  max-width: 600px;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.15;
}

.hero-subhead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #32405f;
  font-size: 18px;
}

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

.hero-dashboard {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.hero-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-panel-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at 60% 40%, rgba(99,102,241,.18) 0%, rgba(59,130,246,.10) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-panel-card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 28px 72px rgba(30,64,175,.18), 0 8px 22px rgba(15,23,42,.07);
  max-width: 560px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.hero-panel-card img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.hero-panel-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(14px,1.8vw,22px);
}

.hero-panel-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  flex: none;
}

.hero-panel-title {
  font-size: .95rem;
  font-weight: 600;
  color: #1e3a5f;
  flex: 1;
}

.hero-panel-bell {
  color: #64748b;
  flex: none;
  width: 16px;
  height: 16px;
}

.hero-panel-bar svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px,1vw,14px);
}

.hero-stat {
  background: #f5f7ff;
  border-radius: 12px;
  padding: clamp(10px,1.4vw,16px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-stat-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #64748b;
}

.hero-stat-value {
  font-size: clamp(1.1rem,1.8vw,1.6rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}

.hero-stat svg {
  width: 56px;
  height: 18px;
  flex: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.16;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 17px;
}

.challenge-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.soft-card,
.service-card,
.help-card {
  border: 1px solid rgba(219, 231, 248, 0.82);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.78));
  box-shadow: var(--shadow-card);
}

.soft-card {
  position: relative;
  min-height: 205px;
  padding: 0;
  overflow: hidden;
}

.challenge-visual {
  display: grid;
  height: 168px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: transparent;
  padding: 18px;
}

.challenge-visual img {
  width: 100%;
  height: 100%;
  max-height: 132px;
  object-fit: contain;
}

.challenge-content {
  padding: 24px;
}

.icon-shell {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 20px;
}

.icon-shell svg {
  width: 54px;
  height: 54px;
}

.soft-card h3,
.service-card h3,
.dark-card h3,
.help-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.soft-card p,
.service-card p,
.dark-card p,
.help-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.services {
  background: linear-gradient(180deg, #fff 0%, #f6faff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -35px -50px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 68%);
}

.service-visual {
  display: grid;
  height: 160px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: transparent;
  padding: 18px;
}

.service-visual img {
  width: 100%;
  height: 100%;
  max-height: 124px;
  object-fit: contain;
}

.service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px 28px;
}

.service-content p {
  flex: 1;
}

.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 900;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.28), transparent 30%),
    radial-gradient(circle at 78% 46%, rgba(139, 92, 246, 0.20), transparent 34%),
    linear-gradient(135deg, var(--color-navy), var(--color-navy-2));
  color: #fff;
}

.section-heading-dark p {
  color: #c7d2fe;
}

.dark-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: var(--radius-md);
  background: rgba(21, 38, 92, 0.72);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.why-visual {
  display: grid;
  height: 150px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: rgba(96, 165, 250, 0.08);
  padding: 18px;
}

.why-visual img {
  width: 100%;
  height: 100%;
  max-height: 114px;
  object-fit: contain;
}

.why-content {
  flex: 1;
  padding: 24px;
}

.dark-card p {
  color: #d8e2ff;
}

.dark-icon {
  border-radius: var(--radius-sm);
  background: rgba(96, 165, 250, 0.12);
}

.stats-band {
  background: #fff;
  padding: 48px 0;
}

.deployment-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #eef6ff 100%);
}

.deployment-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 48px;
}

.deployment-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.15;
}

.deployment-copy p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: #33415f;
  font-size: 17px;
}

.deployment-map {
  overflow: hidden;
  border: 1px solid rgba(219, 231, 248, 0.9);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 52% 46%, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 244, 255, 0.78));
  box-shadow: var(--shadow-soft);
}

.deployment-map img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 460px;
  height: auto;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  min-height: 160px;
  padding: 18px 30px;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--color-line);
}

.stat-item strong {
  display: block;
  color: #06b6d4;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin: 12px 0 8px;
  color: #0891b2;
  font-size: 20px;
  font-weight: 900;
}

.stat-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.help-section {
  padding-top: 70px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.help-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  min-height: 202px;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
}

.mini-graphic {
  min-width: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: transparent;
}

.mini-graphic img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.contact-section {
  padding-top: 38px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 7% 21%, rgba(34, 211, 238, 0.18), transparent 32%),
    radial-gradient(circle at 95% 8%, rgba(139, 92, 246, 0.22), transparent 28%),
    linear-gradient(135deg, #eaf4ff 0%, #f7f9ff 100%);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.contact-info {
  position: relative;
}

.contact-info::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -58px;
  width: 230px;
  height: 150px;
  opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(37, 99, 235, 0.35) 2px, transparent 2px),
    linear-gradient(45deg, transparent 48%, rgba(37, 99, 235, 0.16) 49%, rgba(37, 99, 235, 0.16) 51%, transparent 52%);
  background-size: 32px 32px, 36px 36px;
}

.contact-info h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.18;
}

.contact-info p {
  max-width: 510px;
  color: #33415f;
}

.contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #19315e;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #42516f;
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-ink);
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--color-blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.submit-btn {
  width: 100%;
  margin-top: 2px;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 15%, rgba(37, 99, 235, 0.30), transparent 28%),
    linear-gradient(135deg, var(--color-navy), var(--color-navy-2));
  color: #dbeafe;
  padding: 58px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1.1fr;
  gap: 42px;
}

.brand-footer .brand-text strong,
.brand-footer .brand-text span {
  color: #fff;
}

.brand-footer .brand-mark {
  width: 42px;
  height: 42px;
  min-width: 42px;
}

.brand-footer .brand-mark img {
  max-height: 42px;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: #bfcbec;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer-grid a,
.footer-grid li {
  color: #c9d5f0;
  font-size: 14px;
}

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

.footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(219, 234, 254, 0.12);
  padding: 22px 24px;
  color: #b5c3e4;
  font-size: 13px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-inner,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    max-width: 760px;
    margin-inline: auto;
  }

  .deployment-shell {
    grid-template-columns: 1fr;
  }

  .challenge-grid,
  .why-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(3) {
    border-left: 0;
  }

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

  .help-card {
    grid-template-columns: 1fr;
  }

  .mini-graphic {
    max-width: 260px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .shell {
    width: min(100% - 32px, 680px);
  }

  .brand-logo {
    height: 48px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .brand-mark img {
    max-height: 38px;
  }

  .brand-text strong {
    max-width: 210px;
    font-size: 11px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 24px;
    max-height: calc(100svh - var(--header-height));
    overflow: auto;
    border-bottom: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.98);
    padding: 24px 16px 28px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links,
  .nav-actions {
    display: grid;
    gap: 14px;
  }

  .nav-links a,
  .nav-actions a {
    width: 100%;
  }

  .lang-switch {
    justify-content: center;
    min-height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 42px;
  }

  .hero-inner {
    gap: 36px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-subhead {
    font-size: 16px;
  }

  .section {
    padding: 66px 0;
  }

  .challenge-grid,
  .why-grid,
  .service-grid,
  .help-grid,
  .stats-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item + .stat-item,
  .stat-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .stat-item:first-child {
    border-top: 0;
  }

  .service-card {
    min-height: auto;
  }

  .service-visual {
    height: 146px;
  }

  .challenge-visual {
    height: 156px;
  }

  .why-visual {
    height: 150px;
  }

  .contact-card {
    padding: 26px;
  }

  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .brand-text strong {
    max-width: 160px;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-info .btn {
    width: 100%;
  }

  .deployment-copy p:last-child {
    font-size: 16px;
  }

  .soft-card,
  .service-card,
  .dark-card,
  .help-card,
  .contact-card {
    border-radius: 12px;
  }

}

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