:root {
  --base-font: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --heading-font: 'League Spartan', 'Manrope', system-ui, -apple-system, sans-serif;
  --bg: #f6f9ff;
  --surface: #ffffff;
  --accent: #3e7bfa;
  --accent-soft: rgba(62, 123, 250, 0.12);
  --mint: #4cd7c0;
  --text: #0f172a;
  --muted: #526487;
  --ring: rgba(62, 123, 250, 0.25);
  --shadow: 0 20px 60px -25px rgba(15, 23, 42, 0.3);
  --header-offset: 96px;
  scroll-behavior: smooth;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

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

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

a:hover {
  color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  margin: 0;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(246, 249, 255, 0.84);
  border-bottom: 1px solid rgba(82, 100, 135, 0.08);
}

.header-inner {
  margin: auto;
  max-width: 1180px;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__img {
  display: block;
  height: 44px;
  width: auto;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(82, 100, 135, 0.2);
  background: var(--surface);
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.language-flags {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(82, 100, 135, 0.16);
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.language-flag:hover,
.language-flag:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(62, 123, 250, 0.12);
  box-shadow: 0 10px 18px -16px rgba(62, 123, 250, 0.6);
}

.language-flag.is-active {
  background: rgba(62, 123, 250, 0.16);
  box-shadow: inset 0 0 0 1px rgba(62, 123, 250, 0.4);
}

.flag {
  width: 20px;
  height: 14px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.flag--en {
  background: linear-gradient(180deg, #b22234 0 33%, #fff 33% 66%, #b22234 66% 100%);
}

.flag--en::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: #3c3b6e;
}

.flag--vi {
  background: #da251d;
}

.flag--vi::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #ffde00;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.nav-toggle__bar {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

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

.hero {
  margin: 0 auto;
  max-width: 1180px;
  padding: 18px 32px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}
.hero__eyeBrow,
.hero__eyebrow {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 24px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 24px;
}

.hero__lead {
  font-size: 1.0rem;
  color: var(--muted);
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

/* Globe Image Styles */
.globe-container {
  width: min(520px, 75vw);
  height: min(520px, 75vw);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 20px 60px rgba(62, 123, 250, 0.3));
}

.globe-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero__stats {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.4);
}

.hero__stat {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

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

/* ========================================
   STAT ANIMATIONS - Choose one by adding class to .hero__stats
   ======================================== */

/* OPTION 1: Fade + Slide Up (Subtle & Professional) */
.hero__stats.anim-fade-slide > div {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero__stats.anim-fade-slide > div:nth-child(1) {
  animation-delay: 0.2s;
}

.hero__stats.anim-fade-slide > div:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* OPTION 2: Pulse/Scale Effect (Eye-catching) */
.hero__stats.anim-pulse > div {
  opacity: 0;
  transform: scale(0.8);
  animation: pulseIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero__stats.anim-pulse > div:nth-child(1) {
  animation-delay: 0.2s;
}

.hero__stats.anim-pulse > div:nth-child(2) {
  animation-delay: 0.35s;
}

.hero__stats.anim-pulse > div:hover {
  animation: pulse 1s ease infinite;
}

@keyframes pulseIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* OPTION 3: Typewriter Effect (Modern & Tech-y) */
.hero__stats.anim-typewriter .hero__stat {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--accent);
  width: 0;
  animation: typewriter 1s steps(20) forwards, blinkCaret 0.75s step-end infinite;
}

/* Labels appear instantly, no animation */
.hero__stats.anim-typewriter .hero__label {
  opacity: 1;
  width: auto;
}

/* First stat: Research-Grade */
.hero__stats.anim-typewriter > div:nth-child(1) .hero__stat {
  animation-delay: 0.3s;
}

/* Second stat: AI-Powered */
.hero__stats.anim-typewriter > div:nth-child(2) .hero__stat {
  animation-delay: 1.5s;
}

@keyframes typewriter {
  to {
    width: 100%;
    border-right: none;
  }
}

@keyframes blinkCaret {
  50% {
    border-color: transparent;
  }
}

/* OPTION 4: Staggered Reveal (Sophisticated) */
.hero__stats.anim-stagger > div {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: staggerReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__stats.anim-stagger > div:nth-child(1) {
  animation-delay: 0.2s;
}

.hero__stats.anim-stagger > div:nth-child(2) {
  animation-delay: 0.45s;
}

.hero__stats.anim-stagger > div:hover {
  transform: translateY(-4px) scale(1.02);
  transition: transform 0.3s ease;
}

@keyframes staggerReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* OPTION 5: Glow/Highlight Effect (Distinctive) */
.hero__stats.anim-glow > div {
  opacity: 0;
  animation: glowReveal 1s ease forwards;
  position: relative;
}

.hero__stats.anim-glow > div:nth-child(1) {
  animation-delay: 0.2s;
}

.hero__stats.anim-glow > div:nth-child(2) {
  animation-delay: 0.5s;
}

.hero__stats.anim-glow > div::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 8px;
  opacity: 0;
  animation: glowSweep 2s ease-in-out forwards;
  animation-delay: inherit;
  z-index: -1;
  filter: blur(8px);
}

@keyframes glowReveal {
  to {
    opacity: 1;
  }
}

@keyframes glowSweep {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__stats.anim-fade-slide > div,
  .hero__stats.anim-pulse > div,
  .hero__stats.anim-typewriter .hero__stat,
  .hero__stats.anim-typewriter .hero__label,
  .hero__stats.anim-stagger > div,
  .hero__stats.anim-glow > div {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__stats.anim-typewriter .hero__stat,
  .hero__stats.anim-typewriter .hero__label {
    width: auto;
    border-right: none;
    white-space: normal;
  }
}

.impact,
.values,
.customers,
.testimonials,
.team,
.faq,
.contact,
.cta {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px 48px;
}

.about__copy {
  margin: 0 auto 36px;
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
}

.about__highlights {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 30px 0;
}

.highlight {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(82, 100, 135, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.3);
  background: #ffffff;
}

.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.4);
  border-color: var(--accent);
}

.highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}

.highlight__icon svg,
.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight h3 {
  margin: 20px 0 14px;
  font-size: 1.35rem;
  color: var(--text);
}

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

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .about__highlights {
    gap: 28px;
    padding: 20px 0;
  }

  .highlight {
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.2);
  }

  .highlight:hover {
    transform: translateY(-6px);
  }
}

/* Impact Section (uses testimonials design) */
.testimonial-panel__inner .impact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  width: 100px;
  height: 100px;
}

.testimonial-panel__inner .impact__icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-panel__inner h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 600;
  text-align: center;
}

.testimonial-panel__inner .impact__subtitle {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}

.testimonial-panel__inner .impact__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-panel__inner .impact__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .testimonial-panel__inner h3 {
    font-size: 1.25rem;
  }

  .testimonial-panel__inner .impact__subtitle {
    font-size: 0.9rem;
  }

  .testimonial-panel__inner .impact__description {
    font-size: 0.9rem;
  }
}

.values--pillars .values__pillars {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-top: 30px;
  max-width: 1100px;
  margin-inline: auto;
}

.value-pillar {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.4s ease;
}

.value-pillar::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 88px);
  background: linear-gradient(180deg, var(--accent), var(--mint));
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.value-pillar:hover::before {
  opacity: 0.7;
}

.value-pillar:hover {
  transform: translateY(-8px);
}

.value-pillar__letter {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  box-shadow: 0 18px 36px -22px rgba(62, 123, 250, 0.7);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.value-pillar:hover .value-pillar__letter {
  transform: scale(1.1);
  box-shadow: 0 24px 48px -22px rgba(62, 123, 250, 0.8);
}

.value-pillar__content {
  margin-top: 20px;
  padding: 24px 18px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(82, 100, 135, 0.12);
  box-shadow: 0 18px 48px -40px rgba(15, 23, 42, 0.3);
  text-align: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
}

.value-pillar:hover .value-pillar__content {
  box-shadow: 0 24px 60px -30px rgba(62, 123, 250, 0.4);
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(246, 249, 255, 1));
}

.value-pillar__title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.value-pillar__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================
   RESPONSIVE STYLES FOR ALL VALUES DESIGNS
   ========================================== */

@media (max-width: 992px) {
  .value-panel {
    max-width: 260px;
    flex-basis: 220px;
    min-height: 260px;
  }

  .value-panel__inner {
    padding: 28px 24px;
  }

  .value-hex {
    flex-basis: 240px;
    max-width: 260px;
  }

  .value-pillar {
    min-width: 120px;
    max-width: 150px;
  }

  .value-pillar__letter {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .values--pillars .values__pillars {
    flex-wrap: wrap;
    gap: 12px;
  }

  .value-pillar {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 100px;
    max-width: none;
  }

  .value-pillar__content {
    padding: 20px 14px;
  }

  .value-pillar__title {
    font-size: 1.05rem;
  }

  .value-pillar__copy {
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  /* Design 1: Angled Cards - Mobile */
  .value-panel {
    flex: 1 1 100%;
    max-width: none;
    min-height: 240px;
    --tilt: 0deg;
    --scale: 1;
    transform: none;
  }

  .value-panel:hover,
  .value-panel:focus-within {
    transform: translateY(-8px);
  }

  .value-panel__inner {
    padding: 24px 20px;
  }

  .value-panel__letter {
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
  }

  .value-panel__title {
    font-size: 1.2rem;
  }

  .value-panel__copy {
    font-size: 0.92rem;
  }

  /* Design 2: Hexagonal - Mobile */
  .values--hexagon .values__hexagon {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .value-hex {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .value-hex__shape {
    padding-bottom: 0;
    height: auto;
  }

  .value-hex__inner {
    position: static;
    padding: 24px 20px;
  }

  .value-hex__letter {
    width: 56px;
    height: 56px;
    font-size: 1.9rem;
  }

  .value-hex__title {
    font-size: 1.15rem;
  }

  .value-hex__copy {
    font-size: 0.88rem;
  }

  /* Design 3: Pillars - Mobile (Clean Stacked Cards) */
  .values--pillars .values__pillars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
  }

  .value-pillar {
    flex: 1;
    max-width: 100%;
    min-width: 100%;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    border: 1px solid rgba(82, 100, 135, 0.12);
    box-shadow: 0 2px 8px -4px rgba(15, 23, 42, 0.15);
    position: relative;
    transform: none;
  }

  .value-pillar::before {
    display: none;
  }

  .value-pillar::after {
    display: none;
  }

  .value-pillar__letter {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--accent), var(--mint));
    box-shadow: 0 4px 12px -6px rgba(62, 123, 250, 0.4);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: white;
  }

  .value-pillar__content {
    margin-top: 0;
    padding: 0;
    text-align: left;
    flex: 1;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .value-pillar__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.1875rem;
    color: var(--text);
  }

  .value-pillar__copy {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--muted);
    margin: 0;
  }

  /* Remove hover effects on mobile */
  .value-pillar:hover {
    transform: none;
  }

  .value-pillar:hover .value-pillar__letter {
    transform: none;
  }

  .value-pillar:hover .value-pillar__content {
    box-shadow: none;
    border-color: transparent;
    background: transparent;
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .value-panel,
  .value-hex__inner,
  .value-pillar {
    transition: none;
  }

  .value-panel:hover,
  .value-panel:focus-within {
    transform: none;
  }

  .value-hex:hover .value-hex__inner {
    transform: none;
  }

  .value-pillar:hover {
    transform: none;
  }

  .value-pillar:hover .value-pillar__letter {
    transform: none;
  }
}

/* Legacy Values Grid (if needed) */
.values__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.value-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 24px 60px -40px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(82, 100, 135, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -40px rgba(62, 123, 250, 0.4);
  border-color: var(--accent);
}

.value-card__letter {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 12px 24px -16px rgba(62, 123, 250, 0.6);
}

.value-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

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

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

.service-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(82, 100, 135, 0.1);
  box-shadow: 0 24px 60px -45px rgba(15, 23, 42, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -40px rgba(62, 123, 250, 0.4);
  border-color: var(--accent);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

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

.customers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  align-items: center;
  justify-items: center;
}

.customer-logo {
  width: 100%;
  min-height: 100px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(62, 123, 250, 0.08), rgba(76, 215, 192, 0.18));
  border: 1px dashed rgba(82, 100, 135, 0.3);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--muted);
}

.cta {
  position: relative;
  padding: 84px 32px;
  border-radius: 40px;
  background: radial-gradient(circle at 20% 20%, rgba(76, 215, 192, 0.35), transparent 60%), radial-gradient(circle at 70% 50%, rgba(62, 123, 250, 0.45), transparent 55%), var(--accent);
  color: #f8fbff;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta__content {
  position: relative;
  max-width: 640px;
  display: grid;
  gap: 20px;
}

.cta__logo {
  height: 56px;
  width: auto;
  justify-self: start;
}

.cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.cta p {
  margin: 0;
  color: rgba(248, 251, 255, 0.9);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 30px -20px rgba(62, 123, 250, 0.8);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 50px -20px rgba(62, 123, 250, 0.5);
  color: #fff;
}

.button--secondary {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -25px rgba(12, 35, 68, 0.3);
  color: var(--accent);
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(82, 100, 135, 0.1);
  background: rgba(246, 249, 255, 0.9);
}

.footer-inner {
  max-width: 1180px;
  margin: auto;
  padding: 48px 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__tagline {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer__contact {
  display: grid;
  gap: 12px;
}

.footer__messaging {
  display: grid;
  gap: 8px;
}

.footer__messaging-label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__messaging-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__messaging-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__messaging-link svg {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer__messaging-link img {
  flex-shrink: 0;
  filter: none;
}

.footer__messaging-link:hover,
.footer__messaging-link:focus-visible {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 12px 24px -18px rgba(15, 23, 42, 0.45);
}

.footer__messaging-link--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.footer__messaging-link--zalo {
  background: transparent;
  padding: 0;
  width: auto;
  height: auto;
}

.footer__brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer__logo {
  height: 42px;
  width: auto;
}

.footer__meta {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

section[id] {
  scroll-margin-top: var(--header-offset);
}

#hero {
  scroll-margin-top: 0;
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(82, 100, 135, 0.1);
  box-shadow: 0 24px 60px -45px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial__rating {
  color: #ffb800;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial__quote {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  font-style: normal;
}

.testimonial__quote::before,
.testimonial-panel__quote::before {
  content: '\201C';
  display: block;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 0.85;
  font-weight: 700;
  color: var(--accent);
}

.testimonial__quote::after,
.testimonial-panel__quote::after {
  content: '\201D';
  display: block;
  margin-top: 0;
  font-size: 3rem;
  line-height: 0.85;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
}

@media (max-width: 640px) {
  .testimonial__quote::before,
  .testimonial-panel__quote::before {
    font-size: 2.4rem;
    margin-bottom: 0;
    line-height: 0.85;
  }

  .testimonial__quote::after,
  .testimonial-panel__quote::after {
    font-size: 2.4rem;
    margin-top: 0;
    line-height: 0.85;
  }
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial__name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial__role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonials--angled .testimonials__angled {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  perspective: 1600px;
  margin-top: 30px;
}

.testimonial-panel {
  --tilt: -10deg;
  --scale: 0.94;
  flex: 1 1 280px;
  max-width: 360px;
  background: linear-gradient(145deg, rgba(82, 100, 135, 0.08), rgba(82, 100, 135, 0.02));
  border-radius: 24px;
  border: 1px solid rgba(82, 100, 135, 0.2);
  transform: perspective(1200px) rotateY(var(--tilt)) scale(var(--scale));
  transform-origin: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 24px 60px -48px rgba(15, 23, 42, 0.35);
  display: flex;
  position: relative;
  z-index: 1;
}

.testimonial-panel:nth-child(2) {
  --tilt: -2deg;
  --scale: 1.05;
  z-index: 2;
}

.testimonial-panel:nth-child(3) {
  --tilt: 10deg;
}

.testimonial-panel:hover,
.testimonial-panel:focus-within {
  transform: perspective(1200px) rotateY(var(--tilt)) scale(calc(var(--scale) + 0.03)) translateY(-12px);
  box-shadow: 0 32px 70px -40px rgba(15, 23, 42, 0.45);
}

.testimonial-panel__inner {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-panel__quote {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  font-style: normal;
}

.testimonial-panel__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-panel__avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.testimonial-panel__name {
  margin: 0;
  font-weight: 600;
}

.testimonial-panel__role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonials--angled .testimonials__angled {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  perspective: 1600px;
  margin-top: 30px;
}

.testimonial-panel {
  --tilt: -10deg;
  --scale: 0.94;
  flex: 1 1 280px;
  max-width: 360px;
  background: linear-gradient(145deg, rgba(82, 100, 135, 0.08), rgba(82, 100, 135, 0.02));
  border-radius: 24px;
  border: 1px solid rgba(82, 100, 135, 0.2);
  transform: perspective(1200px) rotateY(var(--tilt)) scale(var(--scale));
  transform-origin: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 24px 60px -48px rgba(15, 23, 42, 0.35);
  display: flex;
  position: relative;
  z-index: 1;
}

.testimonial-panel:nth-child(2) {
  --tilt: -2deg;
  --scale: 1.05;
  z-index: 2;
}

.testimonial-panel:nth-child(3) {
  --tilt: 10deg;
}

.testimonial-panel:hover,
.testimonial-panel:focus-within {
  transform: perspective(1200px) rotateY(var(--tilt)) scale(calc(var(--scale) + 0.03)) translateY(-12px);
  box-shadow: 0 32px 70px -40px rgba(15, 23, 42, 0.45);
}

.testimonial-panel__inner {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-panel__quote {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  font-style: normal;
}

.testimonial-panel__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-panel__avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.testimonial-panel__name {
  margin: 0;
  font-weight: 600;
}

.testimonial-panel__role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 992px) {
  .testimonial-panel {
    max-width: 320px;
    flex-basis: 260px;
  }

  .testimonial-panel__inner {
    padding: 32px 28px;
  }
}

@media (max-width: 640px) {
  .testimonial-panel {
    flex: 1 1 100%;
    max-width: none;
    --tilt: 0deg;
    --scale: 1;
    transform: none;
  }

  .testimonial-panel:hover,
  .testimonial-panel:focus-within {
    transform: translateY(-10px);
  }

  .testimonial-panel__inner {
    padding: 28px 24px;
  }
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(82, 100, 135, 0.1);
  box-shadow: 0 24px 60px -45px rgba(15, 23, 42, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -40px rgba(62, 123, 250, 0.4);
}

.team__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(62, 123, 250, 0.15), rgba(76, 215, 192, 0.25));
  display: grid;
  place-items: center;
  color: var(--accent);
}

.team__avatar svg {
  width: 40px;
  height: 40px;
}

.team__name {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.team__role {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.team__bio {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* FAQ */
.faq__container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(82, 100, 135, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 40px -30px rgba(62, 123, 250, 0.3);
}

.faq__question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__question[aria-expanded="true"] + .faq__answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

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

/* Contact Form */
.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(82, 100, 135, 0.2);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  font-size: 0.85rem;
  color: #e03e3e;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e03e3e;
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 16px;
  background: rgba(76, 215, 192, 0.15);
  color: #0d9488;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.contact__form.submitted .form-success {
  display: block;
}

.contact__form button[type="submit"] {
  grid-column: 1 / -1;
  cursor: pointer;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__card {
  padding: 24px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(82, 100, 135, 0.1);
  box-shadow: 0 12px 40px -30px rgba(15, 23, 42, 0.2);
}

.contact__card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
}

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

.contact__card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact__card a {
  color: var(--accent);
  font-weight: 500;
}

.contact__card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  :root {
    --header-offset: 84px;
  }

  main {
    gap: 48px;
  }

  .brand__img {
    height: 36px;
  }

  .cta__logo {
    height: 44px;
  }

  .footer__logo {
    height: 36px;
  }

  .site-nav {
    position: absolute;
    inset: 72px 24px auto;
    flex-direction: column;
    padding: 24px;
    background: var(--surface);
    border-radius: 18px;
    box-shadow: 0 18px 36px -24px rgba(15, 23, 42, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

  .header-controls {
    gap: 16px;
  }

  .language-flags {
    padding: 4px 6px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    padding: 14px 24px;
  }

  .hero {
    padding-block: 36px 48px;
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 640px) {
  :root {
    --header-offset: 64px;
  }

  body {
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-x: hidden;
  }

  main {
    gap: 36px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px 20px 40px;
    overflow: visible;
  }

  .brand__img {
    height: 28px;
  }

  .cta__logo {
    height: 34px;
  }

  .footer__logo {
    height: 28px;
  }

  .header-inner {
    padding: 12px 20px;
  }

  .header-controls {
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
  }

  .site-nav {
    inset: 64px 20px auto;
    padding: 20px;
    font-size: 0.9rem;
  }

  .language-flags {
    padding: 3px;
    gap: 6px;
  }

  .language-flag {
    width: 32px;
    height: 32px;
  }

  .section-heading {
    margin-bottom: 21px;
  }

  .section-heading h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
  }

  .section-label {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .hero__eyebrow {
    font-size: clamp(1.6rem, 5.5vw, 2.3rem);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero__lead {
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .svg-globe {
    width: min(280px, 80vw);
    height: min(280px, 80vw);
    margin: 0 auto;
    filter: drop-shadow(0 12px 40px rgba(62, 123, 250, 0.3));
  }

  .hero__stats.hero-mobile-option-4 {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-top: 8px;
  }

  .hero__stats.hero-mobile-option-4 > div {
    text-align: left;
    padding: 6px 10px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    background: var(--accent-soft);
    border-radius: 999px;
    box-shadow: none;
    border: 1px solid rgba(62, 123, 250, 0.2);
    flex-shrink: 1;
    min-width: 0;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .hero__stats.hero-mobile-option-4 > div:nth-child(2) {
    background: rgba(76, 215, 192, 0.12);
    border-color: rgba(76, 215, 192, 0.3);
  }

  .hero__stats.hero-mobile-option-4 > div:active {
    transform: scale(0.96);
  }

  .hero__stats.hero-mobile-option-4 > div::before {
    content: '✦';
    font-size: min(0.7rem, 3vw);
    color: var(--accent);
    display: inline-block;
  }

  .hero__stats.hero-mobile-option-4 > div:nth-child(2)::before {
    color: var(--mint);
  }

  .hero__stats.hero-mobile-option-4 .hero__stat {
    font-size: min(0.75rem, 3.5vw);
    font-weight: 700;
    display: inline;
    margin: 0;
    white-space: nowrap;
    color: var(--accent);
  }

  .hero__stats.hero-mobile-option-4 > div:nth-child(2) .hero__stat {
    color: #0d9488;
  }

  .hero__stats.hero-mobile-option-4 .hero__label {
    font-size: min(0.75rem, 3.5vw);
    line-height: 1.2;
    color: var(--muted);
    white-space: nowrap;
    display: inline;
    margin: 0;
  }

  

  /* Disable typewriter animation on mobile */
  .hero__stats.anim-typewriter .hero__stat {
    width: auto;
    border-right: none;
    white-space: normal;
    animation: none;
    overflow: visible;
  }

  .hero__stats.anim-typewriter .hero__label {
    white-space: normal;
  }

  .about,
  .values,
  .services,
  .customers,
  .testimonials,
  .team,
  .faq,
  .contact,
  .cta {
    padding: 0 20px 0;
  }

  .about__copy {
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .about__highlights {
    gap: 15px;
    grid-template-columns: 1fr;
  }

  .highlight {
    padding: 20px;
  }

  .highlight__icon {
    width: 38px;
    height: 38px;
  }

  .highlight__icon svg {
    width: 22px;
    height: 22px;
  }

  .highlight h3 {
    margin: 12px 0 8px;
    font-size: 1.1rem;
  }

  .highlight p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 24px;
  }

  .value-card__letter {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .value-card h3 {
    font-size: 1.15rem;
  }

  .value-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 24px;
  }

  .service-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .service-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

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

  .customer-logo {
    min-height: 80px;
    font-size: 0.9rem;
  }

  .team__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 24px;
  }

  .team__avatar {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .team__avatar svg {
    width: 32px;
    height: 32px;
  }

  .team__name {
    font-size: 1.1rem;
  }

  .team__role {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .team__bio {
    font-size: 0.9rem;
  }

  .faq__container {
    gap: 12px;
  }

  .faq__question {
    padding: 16px 20px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .faq__question[aria-expanded="true"] + .faq__answer {
    padding: 0 20px 16px;
    max-height: 600px;
  }

  .faq__answer p {
    font-size: 0.9rem;
  }

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

  .contact__form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .contact__card {
    padding: 20px;
  }

  .contact__card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

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

  .contact__card a {
    font-size: 0.9rem;
  }

  .button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .cta {
    padding: 48px 20px;
    border-radius: 24px;
  }

  .cta h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

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

  .site-footer {
    margin-top: 80px;
  }

  .footer-inner {
    padding: 32px 20px;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .footer__tagline {
    font-size: 0.9rem;
  }

  .footer__messaging-label {
    font-size: 0.85rem;
  }

  .footer__messaging-link {
    padding: 7px 14px;
    font-size: 0.85rem;
  }

  .footer__meta {
    font-size: 0.8rem;
  }

  .testimonials__angled {
    gap: 20px;
    margin-top: 21px;
  }

  .testimonial-panel__quote {
    font-size: 1rem;
    line-height: 1.6;
  }

  .testimonial-panel__avatar {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .testimonial-panel__name {
    font-size: 0.95rem;
  }

  .testimonial-panel__role {
    font-size: 0.8rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }
}
