:root {
  --bg: #ffffff;
  --bg-soft: #fbfdff;
  --bg-tint: #f4f8ff;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --muted: #5f6f89;
  --muted-2: #7a8aa4;
  --primary: #295dff;
  --primary-dark: #1c46d7;
  --primary-soft: rgba(41, 93, 255, 0.08);
  --cyan: #69d7ff;
  --sky: #9bc4ff;
  --shadow-xs: 0 6px 18px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 50px rgba(30, 41, 59, 0.09);
  --shadow-lg: 0 32px 80px rgba(37, 99, 235, 0.12);
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.05);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(132, 204, 255, 0.1) 0%, transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 45%, #ffffff 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.container-xl {
  max-width: 1240px;
}

.section-space {
  padding: 112px 0;
}

.section-tint {
  background:
    radial-gradient(circle at 10% 10%, rgba(157, 206, 255, 0.16) 0%, transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(111, 146, 255, 0.1) 0%, transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-xs);
  border: 1px solid #4b7cff;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.section-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.section-text-narrow {
  max-width: 760px;
}

.btn-pill {
  border-radius: var(--pill);
  padding: 0.92rem 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 0 !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4b7cff);
  box-shadow: 0 14px 30px rgba(41, 93, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-dark), #3e67eb);
  box-shadow: 0 16px 36px rgba(41, 93, 255, 0.28);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-xs);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
}

.btn-soft {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.btn-soft:hover,
.btn-soft:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  transition: 0.3s ease;
}

.site-header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.navbar {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar > .container-xl {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  flex: 0 1 auto;
  min-width: 0;
  max-width: 330px;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1.1;
}

.brand-text {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}

.brand-desc {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--muted);
  white-space: normal;
  max-width: 230px;
}

.navbar-collapse {
  flex-grow: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  border-radius: var(--pill);
  padding: 0.72rem 0.95rem !important;
  transition: color 0.2s ease, background 0.2s ease;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(41, 93, 255, 0.05) !important;
}

.nav-link.active,
.nav-link:focus,
.nav-link.show {
  color: var(--text);
  background: transparent !important;
  box-shadow: none !important;
}

.nav-item.dropdown .nav-link.dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.12em;
}

.dropdown-menu {
  margin-top: 12px;
  min-width: 240px;
  padding: 10px;
  border: 0 !important;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dropdown-item {
  border: 0 !important;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(41, 93, 255, 0.06);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-actions .btn {
  white-space: nowrap;
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  border: 0 !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xs);
  padding: 0;
  margin-left: auto;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(41, 93, 255, 0.12);
}

.navbar-toggler-icon {
  width: 1.2rem;
  height: 1.2rem;
}

/* =========================
   HOME
========================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(135, 210, 255, 0.18) 0%, transparent 18%),
    radial-gradient(circle at 86% 34%, rgba(89, 160, 255, 0.14) 0%, transparent 20%),
    radial-gradient(circle at 20% 22%, rgba(196, 222, 255, 0.1) 0%, transparent 20%),
    linear-gradient(180deg, #fafdff 0%, #f4f9ff 36%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  filter: blur(70px);
  border-radius: 50%;
  opacity: 0.95;
}

.hero-gradient-1 {
  width: 520px;
  height: 520px;
  top: -90px;
  right: -60px;
  background: radial-gradient(circle, rgba(113, 221, 255, 0.42) 0%, rgba(113, 221, 255, 0.14) 36%, rgba(113, 221, 255, 0) 70%);
}

.hero-gradient-2 {
  width: 760px;
  height: 420px;
  right: 12%;
  top: 60px;
  transform: rotate(-8deg);
  background: radial-gradient(ellipse at center, rgba(68, 121, 255, 0.18) 0%, rgba(68, 121, 255, 0.07) 34%, rgba(68, 121, 255, 0) 72%);
}

.hero-gradient-3 {
  width: 400px;
  height: 400px;
  left: 8%;
  top: 80px;
  background: radial-gradient(circle, rgba(186, 213, 255, 0.24) 0%, rgba(186, 213, 255, 0.08) 45%, rgba(186, 213, 255, 0) 72%);
}

.hero-gradient-4 {
  width: 720px;
  height: 300px;
  right: -100px;
  top: 180px;
  transform: rotate(12deg);
  background: radial-gradient(ellipse at center, rgba(82, 210, 255, 0.16) 0%, rgba(82, 210, 255, 0.06) 36%, rgba(82, 210, 255, 0) 72%);
}

.hero-rings {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    radial-gradient(circle at 85% 28%, transparent 0 80px, rgba(145, 201, 255, 0.16) 81px 82px, transparent 85px),
    radial-gradient(circle at 86% 28%, transparent 0 140px, rgba(145, 201, 255, 0.1) 141px 142px, transparent 145px),
    radial-gradient(circle at 84% 28%, transparent 0 220px, rgba(145, 201, 255, 0.06) 221px 222px, transparent 225px);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.2px),
    radial-gradient(circle at 74% 42%, rgba(129, 179, 255, 0.45) 0 1px, transparent 1.2px),
    radial-gradient(circle at 62% 10%, rgba(121, 220, 255, 0.45) 0 1px, transparent 1.2px),
    radial-gradient(circle at 8% 70%, rgba(177, 207, 255, 0.44) 0 1px, transparent 1.2px),
    radial-gradient(circle at 90% 64%, rgba(121, 220, 255, 0.42) 0 1px, transparent 1.2px);
  background-size: 320px 320px, 280px 280px, 360px 360px, 420px 420px, 320px 320px;
}

#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 28px;
}

.eyebrow-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 0 0 6px rgba(41, 93, 255, 0.08);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.65rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
  max-width: 980px;
  margin: 0 auto 24px;
}

.hero-title span {
  display: block;
  background: linear-gradient(180deg, #0b1326 0%, #23408f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto;
}

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

.hero-trust {
  margin-top: 54px;
}

.hero-trust-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-trust-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-trust-card span {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.glass-card,
.showcase-panel,
.feature-card,
.service-preview-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.glass-card {
  border-radius: var(--radius-xl);
}

.metric-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xs);
}

.metric-card h3 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 800;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 100%;
}

.showcase-surface {
  position: relative;
  min-height: 100%;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(85, 201, 255, 0.24) 0%, transparent 22%),
    radial-gradient(circle at 80% 34%, rgba(64, 116, 255, 0.18) 0%, transparent 20%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.showcase-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-a {
  width: 260px;
  height: 260px;
  right: -30px;
  top: -20px;
  background: rgba(92, 210, 255, 0.22);
}

.orb-b {
  width: 220px;
  height: 220px;
  right: 80px;
  top: 60px;
  background: rgba(68, 104, 255, 0.16);
}

.orb-c {
  width: 180px;
  height: 180px;
  left: -30px;
  bottom: -20px;
  background: rgba(173, 200, 255, 0.2);
}

.showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.showcase-box {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-xs);
}

.showcase-box h3,
.showcase-box p {
  margin: 0;
}

.showcase-box h3 {
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 800;
}

.showcase-box p {
  color: var(--muted);
  line-height: 1.75;
}

.box-lg {
  min-height: 220px;
}

.box-wide {
  grid-column: 1 / -1;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
}

.feature-card {
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(180deg, rgba(41, 93, 255, 0.1), rgba(105, 215, 255, 0.12));
}

.feature-icon .material-symbols-rounded {
  font-size: 26px;
  line-height: 1;
}

.feature-card h3,
.service-preview-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.feature-card p,
.service-preview-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.service-preview-card {
  padding: 30px;
  border-radius: 30px;
}

.client-section {
  overflow: hidden;
}

.client-section .section-text {
  margin-bottom: 0;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 56s linear infinite !important;
  will-change: transform;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  min-width: 240px;
  width: 240px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 175px;
  max-height: 78px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.96);
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.home-about-section {
  padding-top: 96px;
}

.home-about-shell {
  display: grid;
  gap: 34px;
}

.home-about-top {
  position: relative;
}

.home-about-copy {
  min-width: 0;
}

.home-about-title {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #233754;
  text-wrap: balance;
}

.home-about-lead {
  font-size: 1.06rem;
  line-height: 1.85;
  color: #41506c;
  margin-bottom: 14px;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.home-about-side {
  display: grid;
  gap: 18px;
}

.home-about-glance {
  display: grid;
  gap: 14px;
}

.home-about-glance-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xs);
}

.home-about-glance-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.home-about-glance-item strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text);
}

.home-about-quote {
  padding: 24px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 18%, rgba(117, 214, 255, 0.16) 0%, transparent 24%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.home-about-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.home-about-quote h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.32;
  font-weight: 800;
  color: var(--text);
}

.home-about-quote p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.home-about-bottom {
  padding-top: 4px;
}

.home-about-focus-card {
  height: 100%;
  padding: 28px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-about-focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.home-about-focus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(41, 93, 255, 0.10), rgba(105, 215, 255, 0.12));
  color: var(--primary);
}

.home-about-focus-icon .material-symbols-rounded {
  font-size: 27px;
  line-height: 1;
}

.home-about-focus-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.35;
}

.home-about-focus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* =========================
   ABOUT
========================= */
.about-page {
  overflow: hidden;
}

.about-page-main {
  padding-top: 18px;
  padding-bottom: 44px;
}

.about-hero {
  position: relative;
  padding: 164px 0 44px;
  background:
    radial-gradient(circle at 82% 14%, rgba(117, 214, 255, 0.16) 0%, transparent 22%),
    radial-gradient(circle at 18% 0%, rgba(115, 146, 255, 0.10) 0%, transparent 20%),
    linear-gradient(180deg, #fafdff 0%, #f6f9ff 100%);
}

.about-hero-inner {
  max-width: 760px;
}

.about-hero-title {
  margin: 18px 0 12px;
  font-size: clamp(2.35rem, 4.8vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #233754;
  text-wrap: balance;
  overflow-wrap: anywhere;
  max-width: 720px;
}

.about-hero-subtitle {
  margin: 0;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.85;
  color: #667487;
  overflow-wrap: anywhere;
}

.about-story,
.about-vision-mission,
.about-expertise,
.about-services-showcase,
.about-advantage-strip {
  margin-bottom: 52px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.about-story-copy {
  min-width: 0;
  padding-right: 8px;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-heading {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  color: var(--text);
  text-wrap: balance;
}

.about-heading.small {
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
}

.about-lead {
  font-size: 1.04rem;
  color: #41506c;
}

.about-story-copy .section-text,
.about-section-head .section-text,
.about-service-body p,
.about-mission-item p,
.about-advantage-item p,
.about-quote-block p {
  overflow-wrap: anywhere;
}

.about-story-side {
  display: grid;
  gap: 18px;
}

.about-glance {
  display: grid;
  gap: 14px;
}

.about-glance-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xs);
}

.about-glance-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.about-glance-item strong {
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text);
}

.about-quote-block {
  padding: 24px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 18%, rgba(117, 214, 255, 0.16) 0%, transparent 24%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.about-quote-block h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.32;
  font-weight: 800;
  color: var(--text);
}

.about-quote-block p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.about-soft-panel {
  height: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.about-mission-list {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.about-mission-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-mission-item .material-symbols-rounded {
  margin-top: 2px;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-mission-item h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.about-mission-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-section-head {
  margin-bottom: 26px;
  max-width: 820px;
}

.about-focus-card {
  height: 100%;
  padding: 28px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.about-focus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(41, 93, 255, 0.10), rgba(105, 215, 255, 0.12));
  color: var(--primary);
}

.about-focus-icon .material-symbols-rounded {
  font-size: 27px;
  line-height: 1;
}

.about-focus-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-focus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-service-list {
  display: grid;
  gap: 16px;
}

.about-service-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-service-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.about-service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(41, 93, 255, 0.10), rgba(105, 215, 255, 0.12));
  color: var(--primary);
}

.about-service-icon .material-symbols-rounded {
  font-size: 27px;
  line-height: 1;
}

.about-service-body {
  min-width: 0;
}

.about-service-body h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
}

.about-service-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-service-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

.about-advantage-strip {
  padding: 2px 0 0;
}

.about-advantage-list {
  display: grid;
  gap: 14px;
}

.about-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.about-advantage-item:last-child {
  border-bottom: 0;
}

.about-advantage-item .material-symbols-rounded {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-advantage-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.about-cta-section {
  padding-top: 8px;
  padding-bottom: 0;
  margin-top: 8px;
}

.about-cta-section .cta-panel {
  padding: 50px 28px;
}

/* =========================
   SERVICES
========================= */
.services-clean-page {
  overflow: hidden;
}

.services-hero {
  padding: 168px 0 54px;
  background:
    radial-gradient(circle at 82% 14%, rgba(117, 214, 255, 0.16) 0%, transparent 22%),
    radial-gradient(circle at 18% 0%, rgba(115, 146, 255, 0.1) 0%, transparent 20%),
    linear-gradient(180deg, #fafdff 0%, #f7faff 100%);
}

.services-hero-title {
  margin: 20px 0 14px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #233754;
}

.services-hero-line {
  width: 78px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(41, 93, 255, 0.15), #c9473d, rgba(41, 93, 255, 0.15));
}

.services-hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #6a7485;
}

.services-grid-section {
  padding: 0 0 54px;
}

.service-clean-card {
  height: 100%;
  padding: 34px 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-clean-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

.service-clean-media {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(149, 195, 255, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, rgba(244, 248, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), var(--shadow-xs);
}

.service-clean-media .material-symbols-rounded {
  font-size: 38px;
  line-height: 1;
  color: var(--primary);
}

.service-clean-card h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  line-height: 1.35;
  font-weight: 800;
  color: #263850;
}

.service-clean-card p {
  margin: 0 auto;
  max-width: 320px;
  color: #667487;
  line-height: 1.8;
}

.service-clean-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: #d62828;
  font-weight: 700;
  transition: 0.2s ease;
}

.service-clean-link .material-symbols-rounded {
  font-size: 18px;
  line-height: 1;
}

.service-clean-link:hover {
  color: #b51f1f;
  transform: translateX(2px);
}

.services-detail-section {
  padding: 12px 0 0;
}

.service-detail-block {
  padding: 34px 0;
}

.service-detail-block + .service-detail-block {
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.service-detail-side {
  max-width: 340px;
}

.service-detail-number {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-detail-side h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #233754;
}

.service-detail-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-detail-content {
  padding-top: 4px;
}

.service-detail-content .section-text + .section-text {
  margin-top: 10px;
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-detail-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

/* =========================
   CONTACT
========================= */
.contact-page {
  overflow: hidden;
}

.contact-hero {
  position: relative;
  padding: 168px 0 64px;
  background:
    radial-gradient(circle at 82% 14%, rgba(117, 214, 255, 0.16) 0%, transparent 22%),
    radial-gradient(circle at 18% 0%, rgba(115, 146, 255, 0.1) 0%, transparent 20%),
    linear-gradient(180deg, #fafdff 0%, #f6f9ff 100%);
}

.contact-hero-inner {
  max-width: 860px;
}

.contact-hero-title {
  margin: 20px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #233754;
  text-wrap: balance;
}

.contact-hero-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.9;
  color: #667487;
}

.contact-main-section {
  padding: 40px 0 50px;
}

.contact-shell {
  position: relative;
}

.contact-info-panel,
.contact-form-panel {
  height: 100%;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(30, 41, 59, 0.08);
}

.contact-info-panel {
  background:
    radial-gradient(circle at 90% 10%, rgba(105, 215, 255, 0.12) 0%, transparent 22%),
    radial-gradient(circle at 10% 100%, rgba(41, 93, 255, 0.08) 0%, transparent 24%),
    rgba(255, 255, 255, 0.88);
}

.contact-panel-top {
  margin-bottom: 28px;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-panel-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text);
  text-wrap: balance;
}

.contact-panel-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-info-list {
  display: grid;
  gap: 16px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(41, 93, 255, 0.1), rgba(105, 215, 255, 0.12));
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-icon .material-symbols-rounded {
  font-size: 25px;
  line-height: 1;
}

.contact-info-body {
  min-width: 0;
}

.contact-info-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-info-body p,
.contact-info-body a {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  word-break: break-word;
}

.contact-info-body a:hover {
  color: var(--primary);
}

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

.form-field {
  min-width: 0;
}

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

.contact-form-panel .form-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
}

.contact-input {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 18px;
  color: var(--text);
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-input::placeholder {
  color: #94a3b8;
}

.contact-input:focus {
  border-color: rgba(41, 93, 255, 0.34) !important;
  background: #ffffff;
  box-shadow: 0 0 0 0.22rem rgba(41, 93, 255, 0.08) !important;
}

.contact-textarea {
  min-height: 170px;
  resize: vertical;
  padding-top: 16px;
}

.contact-submit-btn {
  min-width: 180px;
  padding: 0.98rem 1.6rem;
}

select.contact-input {
  padding-right: 44px;
}

.contact-hero-title,
.contact-panel-title,
.contact-panel-text,
.contact-hero-subtitle,
.contact-info-body p {
  overflow-wrap: anywhere;
}

/* =========================
   FOOTER
========================= */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 58px 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(117, 214, 255, 0.2) 0%, transparent 22%),
    radial-gradient(circle at 22% 100%, rgba(110, 146, 255, 0.14) 0%, transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.site-footer {
  margin-top: 28px;
  padding: 0 0 28px;
  background: transparent;
}

.footer-inner {
  width: 100%;
  padding-top: 30px;
}

.footer-inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 30px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(41, 93, 255, 0.08) 12%,
    rgba(15, 23, 42, 0.08) 50%,
    rgba(41, 93, 255, 0.08) 88%,
    transparent 100%
  );
}

.footer-top {
  row-gap: 28px;
}

.footer-brand-block {
  max-width: 460px;
}

.footer-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.footer-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.footer-sub {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.footer-address {
  margin: 22px 0 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  transition: 0.2s ease;
}

.footer-contact-item:hover {
  transform: translateY(-1px);
  
}

.footer-contact-item .material-symbols-rounded {
  font-size: 18px;
  flex-shrink: 0;
}

.footer-column {
  padding-top: 4px;
}

.footer-heading {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 12px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social-text {
  margin: 0 0 16px;
  max-width: 320px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.social-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-list a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: 0.2s ease;
}

.social-list a .material-symbols-rounded {
  font-size: 20px;
  line-height: 1;
}

.social-list a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted-2);
  font-size: 0.92rem;
}
/* =========================
   RESPONSIVE
========================= */
@media (min-width: 1200px) {
  .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
  }
}

@media (max-width: 1366px) and (min-width: 1200px) {
  .hero-section {
    padding: 165px 0 96px;
  }

  .hero-trust {
    margin-top: 42px;
  }

  .hero-description {
    max-width: 760px;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar-brand {
    max-width: 300px;
  }

  .brand-logo-img {
    height: 56px;
  }

  .brand-desc {
    font-size: 0.76rem;
    max-width: 190px;
  }

  .nav-right {
    gap: 14px;
  }

  .nav-menu {
    gap: 2px;
  }

  .nav-link {
    padding: 0.68rem 0.8rem !important;
    font-size: 0.95rem;
  }

  .nav-actions .btn {
    padding: 0.82rem 1.1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar {
    padding: 13px 0;
  }

  .navbar-brand {
    max-width: calc(100% - 60px);
  }

  .brand-logo-img {
    height: 52px;
  }

  .brand-desc {
    font-size: 0.76rem;
    max-width: 210px;
  }

  .navbar-collapse {
    margin-top: 14px;
  }

  .nav-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.82rem 0 !important;
    border-radius: 0;
    background: transparent !important;
  }

  .nav-link:hover {
    background: transparent !important;
    color: var(--primary);
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    margin-top: 6px;
    min-width: 100%;
    padding: 8px 0 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .dropdown-item {
    padding: 10px 0 10px 16px;
    border-radius: 0;
    color: var(--muted);
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background: transparent;
    color: var(--primary);
  }

  .nav-actions {
    width: 100%;
    margin-top: 4px;
  }

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

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

  .box-wide {
    grid-column: auto;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 28px;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 84px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 148px 0 84px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4.2rem);
  }

  .service-preview-card,
  .cta-panel {
    padding: 24px;
  }

  .brand-logo-img {
    height: 50px;
  }

  .footer-logo-img {
    height: 46px;
  }

  .footer-inner {
    padding-top: 24px;
  }

  .footer-inner::before {
    margin-bottom: 24px;
  }

  .about-hero {
    padding: 144px 0 40px;
  }

  .about-page-main {
    padding-top: 12px;
    padding-bottom: 38px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-soft-panel,
  .about-focus-card,
  .about-service-row {
    padding: 24px;
  }

  .about-story,
  .about-vision-mission,
  .about-expertise,
  .about-services-showcase,
  .about-advantage-strip {
    margin-bottom: 40px;
  }

  .about-cta-section .cta-panel {
    padding: 42px 24px;
  }

  .services-hero {
    padding: 146px 0 48px;
  }

  .services-hero-title {
    font-size: clamp(2.3rem, 9vw, 3.7rem);
  }

  .service-clean-card {
    padding: 28px 24px 26px;
  }

  .service-detail-block {
    padding: 28px 0;
  }

  .contact-hero {
    padding: 144px 0 50px;
  }

  .contact-main-section {
    padding: 28px 0 64px;
  }

  .contact-info-panel,
  .contact-form-panel {
    border-radius: 28px;
  }

  .logo-item {
    min-width: 210px;
    width: 210px;
    height: 112px;
    padding: 16px 18px;
  }

  .logo-item img {
    max-width: 150px;
    max-height: 64px;
  }

  .home-about-section {
    padding-top: 72px;
  }

  .home-about-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .home-about-focus-card {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 72px 0;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar > .container-xl {
    gap: 12px;
  }

  .navbar-brand {
    max-width: calc(100% - 58px);
  }

  .brand-logo-img {
    height: 46px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .brand-desc {
    display: block;
    font-size: 0.72rem;
    line-height: 1.28;
    max-width: 155px;
    margin-top: 2px;
  }

  .nav-right {
    padding: 16px;
    border-radius: 20px;
    gap: 14px;
  }

  .hero-section {
    padding: 138px 0 74px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.3rem);
    line-height: 1.02;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

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

  .hero-trust {
    margin-top: 34px;
  }

  .eyebrow-pill {
    font-size: 0.78rem;
    padding: 10px 14px;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-preview-card {
    border-radius: 24px;
  }

  .about-hero {
    padding: 132px 0 30px;
  }

  .about-hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .about-hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .about-heading {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .about-lead {
    font-size: 1rem;
  }

  .about-story,
  .about-vision-mission,
  .about-expertise,
  .about-services-showcase,
  .about-advantage-strip {
    margin-bottom: 32px;
  }

  .about-service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-service-icon,
  .about-focus-icon {
    width: 52px;
    height: 52px;
  }

  .about-quote-block {
    padding: 22px 20px;
  }

  .about-glance-item {
    padding: 18px;
    border-radius: 20px;
  }

  .about-soft-panel,
  .about-focus-card,
  .about-service-row {
    border-radius: 24px;
  }

  .about-service-tags {
    gap: 8px;
  }

  .about-service-tags span {
    font-size: 0.86rem;
    padding: 9px 12px;
  }

  .about-cta-section .cta-panel {
    padding: 36px 20px;
  }

  .services-hero {
    padding: 132px 0 38px;
  }

  .services-hero-subtitle {
    font-size: 0.98rem;
  }

  .service-clean-media {
    width: 74px;
    height: 74px;
    margin-bottom: 20px;
  }

  .service-clean-media .material-symbols-rounded {
    font-size: 32px;
  }

  .service-clean-card h3 {
    font-size: 1.16rem;
  }

  .service-detail-side h2 {
    font-size: 1.8rem;
  }

  .service-detail-tags {
    gap: 8px;
  }

  .service-detail-tags span {
    font-size: 0.86rem;
    padding: 9px 12px;
  }

  .contact-hero {
    padding: 132px 0 38px;
  }

  .contact-hero-title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.04;
  }

  .contact-hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-panel-top {
    margin-bottom: 22px;
  }

  .contact-panel-title {
    font-size: 1.5rem;
  }

  .contact-info-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .contact-info-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-input {
    min-height: 54px;
    padding: 14px 16px;
  }

  .contact-textarea {
    min-height: 150px;
  }

  .contact-submit-btn {
    width: 100%;
    min-width: 0;
  }

  .contact-main-section {
    padding: 20px 0 56px;
  }

  .home-about-section {
    padding-top: 60px;
  }

  .home-about-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .home-about-lead {
    font-size: 1rem;
  }

  .home-about-actions {
    gap: 12px;
  }

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

  .home-about-glance-item,
  .home-about-quote,
  .home-about-focus-card {
    border-radius: 22px;
  }

  .logo-item {
    min-width: 180px;
    width: 180px;
    height: 96px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .logo-item img {
    max-width: 128px;
    max-height: 52px;
  }

  .footer-brand {
    font-size: 1.08rem;
  }

  .footer-sub {
    font-size: 0.9rem;
  }

  .footer-address,
  .footer-social-text {
    font-size: 0.94rem;
  }

  .footer-contact-list {
    gap: 10px;
  }

  .footer-contact-item {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    line-height: 1.4;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 575.98px) {
  .brand-logo-img {
    height: 42px;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .brand-desc {
    display: block;
    font-size: 0.68rem;
    line-height: 1.26;
    max-width: 138px;
  }

  .nav-right {
    padding: 14px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .feature-card,
  .btn-primary,
  .about-focus-card,
  .about-service-row,
  .service-clean-card {
    animation: none !important;
    transition: none !important;
  }
}