/* ============================================================
   AWM SOLUTIONS — DESIGN SYSTEM
   Premium service-business website
   Inspired by Rooftiq design language (original implementation)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors (preserved from AWM) */
  --brand: #ff3838;
  --brand-rgb: 255, 56, 56;
  --brand-dark: #e02a2a;
  --brand-light: #ff7070;

  /* Neutrals */
  --ink: #181818;
  --ink-rgb: 24, 24, 24;
  --ink-soft: #343434;
  --charcoal: #101010;
  --paper: #ffffff;
  --mist: #f7f7f5;
  --fog: #efefec;
  --line: #e6e6e2;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Accent */
  --accent: #ff6e2f;
  --accent-rgb: 255, 110, 47;

  /* Text */
  --text: #1c1c1c;
  --text-soft: #5c5c5c;
  --text-mute: #8a8a8a;
  --text-on-dark: #f5f5f3;
  --text-on-dark-soft: #b8b8b4;

  /* Typography */
  --font-head: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --space-10: 6rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Section spacing */
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --section-pad-sm: clamp(3rem, 6vw, 4.5rem);

  /* Radius */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(24, 24, 24, 0.06);
  --shadow: 0 12px 40px rgba(24, 24, 24, 0.08);
  --shadow-lg: 0 24px 60px rgba(24, 24, 24, 0.12);
  --shadow-brand: 0 12px 30px rgba(255, 56, 56, 0.28);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms var(--ease);
  --t: 320ms var(--ease);
  --t-slow: 500ms var(--ease);

  /* Header */
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

::selection {
  background: var(--brand);
  color: #fff;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.display {
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.05rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn .ico {
  width: 18px;
  height: 18px;
  transition: transform var(--t);
}

.btn:hover .ico {
  transform: translateX(4px);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 56, 56, 0.36);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--ink);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--sm {
  padding: 0.75rem 1.4rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.2rem 2.4rem;
  font-size: 1rem;
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color var(--t), gap var(--t);
}

.link-arrow .ico {
  width: 18px;
  height: 18px;
  transition: transform var(--t);
}

.link-arrow:hover {
  color: var(--brand);
  gap: 0.75rem;
}

.link-arrow:hover .ico {
  transform: translateX(3px);
}

.link-arrow--light {
  color: #fff;
}

.link-arrow--light:hover {
  color: var(--brand-light);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(24, 24, 24, 0.05);
  height: 72px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.brand__name span {
  color: var(--brand);
}

.brand__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 0.2rem;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  transition: color var(--t), background var(--t);
  position: relative;
}

.nav a:hover {
  color: var(--ink);
  background: var(--fog);
}

.nav a[aria-current="page"] {
  color: var(--brand);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1102;
}

.nav-toggle .ico {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu nav a {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--brand);
}

.mobile-menu nav a .ico {
  width: 22px;
  height: 22px;
  color: var(--text-mute);
}

.mobile-menu__cta {
  margin-top: 2rem;
}

.mobile-menu__contact {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.mobile-menu__contact .ico {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

body.menu-open {
  overflow: hidden;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: var(--mist);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin: 1.25rem 0 1.5rem;
}

.hero__text {
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero__trust-avatars {
  display: flex;
}

.hero__trust-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--fog);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
  margin-left: -10px;
}

.hero__trust-avatars span:first-child {
  margin-left: 0;
}

.hero__trust-avatars span:nth-child(1) { background: #ffe3e3; color: var(--brand); }
.hero__trust-avatars span:nth-child(2) { background: #e8f0ff; color: #2b6fd4; }
.hero__trust-avatars span:nth-child(3) { background: #e6f7ec; color: #1f9d55; }

.hero__trust-text {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero__trust-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 16, 16, 0.35));
}

/* Floating card */
.hero__card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.hero__card--top {
  top: 1.5rem;
  left: -1.5rem;
}

.hero__card--bottom {
  bottom: 1.5rem;
  right: -1.5rem;
  animation-delay: 3s;
}

.hero__card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero__card-icon .ico {
  width: 22px;
  height: 22px;
}

.hero__card-icon--brand { background: #ffe3e3; color: var(--brand); }
.hero__card-icon--dark { background: var(--ink); color: #fff; }

.hero__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__card-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.2;
}

/* Decorative blob */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero__blob--1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 56, 56, 0.18);
  top: -80px;
  right: -80px;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 110, 47, 0.14);
  bottom: -100px;
  left: -60px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--ink);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.trust-bar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--brand-light);
}

.trust-bar__icon .ico {
  width: 24px;
  height: 24px;
}

.trust-bar__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
}

.trust-bar__sub {
  font-size: 0.85rem;
  color: var(--text-on-dark-soft);
  margin-top: 0.15rem;
}

/* ---------- Section base ---------- */
.section {
  padding-block: var(--section-pad);
}

.section--sm {
  padding-block: var(--section-pad-sm);
}

.section--mist {
  background: var(--mist);
}

.section--dark {
  background: var(--ink);
  color: var(--text-on-dark);
}

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: #fff;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head__title {
  margin: 1rem 0 1.1rem;
}

.section-head__text {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section--dark .section-head__text {
  color: var(--text-on-dark-soft);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-brand);
  z-index: 2;
}

.about__badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about__badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.about__content .section-head {
  margin-bottom: 1.5rem;
}

.about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2.25rem;
}

.about__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t), transform var(--t);
}

.about__point:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.about__point .ico {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about__point strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.about__point span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-card__num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--mist);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: background var(--t), color var(--t), transform var(--t);
}

.service-card__icon .ico {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-card__icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: color var(--t), gap var(--t);
}

.service-card__link .ico {
  width: 16px;
  height: 16px;
  transition: transform var(--t);
}

.service-card:hover .service-card__link {
  color: var(--brand);
  gap: 0.75rem;
}

.service-card:hover .service-card__link .ico {
  transform: translateX(3px);
}

/* ---------- Mission / Vision / Value ---------- */
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform var(--t), box-shadow var(--t);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mvv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}

.mvv-card__icon .ico {
  width: 26px;
  height: 26px;
}

.mvv-card__icon--1 { background: #ffe3e3; color: var(--brand); }
.mvv-card__icon--2 { background: #e8f0ff; color: #2b6fd4; }
.mvv-card__icon--3 { background: #e6f7ec; color: #1f9d55; }

.mvv-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.mvv-card__text {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.mvv-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mvv-card__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.mvv-card__list .ico {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

/* ---------- Process ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process__grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.process-step__num {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  position: relative;
}

.process-step:hover .process-step__num {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.06);
}

.process-step__title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ---------- Why AWM ---------- */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.why__item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brand);
}

.why__item-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.why__item-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.why__item-text {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.why__visual {
  position: relative;
}

.why__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
}

.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__stat {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.1rem 1.6rem;
  box-shadow: var(--shadow);
  text-align: center;
  white-space: nowrap;
}

.why__stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.why__stat-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding-block: var(--section-pad);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 56, 56, 0.15);
  filter: blur(80px);
  top: -150px;
  right: -100px;
}

.cta::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 110, 47, 0.1);
  filter: blur(80px);
  bottom: -150px;
  left: -100px;
}

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.cta__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin: 1.25rem 0 1.25rem;
  letter-spacing: -0.03em;
}

.cta__text {
  color: var(--text-on-dark-soft);
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t), box-shadow var(--t);
}

.contact__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact__card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--mist);
  display: grid;
  place-items: center;
  color: var(--brand);
  flex-shrink: 0;
}

.contact__card-icon .ico {
  width: 22px;
  height: 22px;
}

.contact__card-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

.contact__card-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.contact__card-value a:hover {
  color: var(--brand);
}

/* Form */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}

.form__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form__sub {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__field--full {
  grid-column: 1 / -1;
}

.form__label {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.form__label .req {
  color: var(--brand);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mist);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-mute);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 56, 56, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__error {
  font-size: 0.82rem;
  color: var(--brand);
  display: none;
}

.form__field.has-error .form__input,
.form__field.has-error .form__select,
.form__field.has-error .form__textarea {
  border-color: var(--brand);
}

.form__field.has-error .form__error {
  display: block;
}

.form__submit {
  margin-top: 1.5rem;
  width: 100%;
}

.form__status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
}

.form__status--success {
  display: block;
  background: #e6f7ec;
  color: #1f9d55;
  border: 1px solid #b8e6c8;
}

.form__status--error {
  display: block;
  background: #ffe3e3;
  color: var(--brand);
  border: 1px solid #ffc4c4;
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-item.is-open {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--brand);
  transition: transform var(--t), background var(--t), color var(--t);
}

.faq-item__icon .ico {
  width: 16px;
  height: 16px;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.faq-item__panel-inner {
  padding: 0 1.6rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem));
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  background: linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Dotted grid overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(24, 24, 24, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 75% 25%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 25%, #000 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.09);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
  animation: hero-fade-up 0.7s var(--ease) both;
  animation-delay: 0.1s;
}

.page-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.page-hero__title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800;
  margin: 0 0 1.1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  animation: hero-fade-up 0.7s var(--ease) both;
  animation-delay: 0.25s;
}

.page-hero__text {
  color: var(--text-soft);
  font-size: 1.1rem;
  max-width: 36rem;
  animation: hero-fade-up 0.7s var(--ease) both;
  animation-delay: 0.4s;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  animation: hero-fade-up 0.7s var(--ease) both;
  animation-delay: 0.55s;
}

/* Hero visual panel */
.page-hero__visual {
  position: relative;
  animation: hero-visual-in 0.9s var(--ease) both;
  animation-delay: 0.35s;
}

.page-hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}

.page-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 24, 24, 0.22));
  pointer-events: none;
}

/* Floating accent cards on hero visual */
.page-hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: float 5s ease-in-out infinite;
  z-index: 2;
}

.page-hero__card--top {
  top: -1.4rem;
  right: 1.6rem;
  animation-delay: 0.6s;
}

.page-hero__card--bottom {
  bottom: -1.4rem;
  left: 1.6rem;
  animation-delay: 1.8s;
}

.page-hero__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.page-hero__card-icon--brand {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
}

.page-hero__card-icon--dark {
  background: var(--ink);
  color: #fff;
}

.page-hero__card-icon--accent {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
}

.page-hero__card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 0.15rem;
}

.page-hero__card-value {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

/* Animated blobs */
.page-hero .hero__blob {
  animation: blob-drift 14s ease-in-out infinite;
  opacity: 0.4;
}

.page-hero .hero__blob--1 {
  animation-delay: 0s;
}

.page-hero .hero__blob--2 {
  animation-delay: -7s;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: hero-fade-up 0.7s var(--ease) both;
  animation-delay: 0s;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb .sep {
  color: var(--line);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Hero entrance + visual keyframes ---------- */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(22px, -16px) scale(1.08); }
  66% { transform: translate(-12px, 14px) scale(0.94); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--text-on-dark-soft);
  padding-top: var(--section-pad);
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--section-pad-sm);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
}

.footer__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.footer__brand-name span {
  color: var(--brand);
}

.footer__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 22rem;
}

.footer__heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.95rem;
  color: var(--text-on-dark-soft);
  transition: color var(--t), padding-left var(--t);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__links a .ico {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity var(--t);
}

.footer__links a:hover {
  color: var(--brand-light);
  padding-left: 4px;
}

.footer__links a:hover .ico {
  opacity: 1;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.footer__contact-item .ico {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer__contact-item a:hover {
  color: var(--brand-light);
}

.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.875rem;
  color: var(--text-on-dark-soft);
  transition: color var(--t);
}

.footer__legal a:hover {
  color: var(--brand-light);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--brand);
  color: #fff;
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee__track .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 0.6rem;
  font-weight: 500;
}

/* ---------- Page intro ---------- */
.page-intro {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.page-intro__title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  margin: 1rem 0 1.1rem;
  letter-spacing: -0.025em;
}

.page-intro__text {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem var(--gutter) 4rem;
  background: var(--mist);
}

.error-page__code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-page__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 1rem 0 0.75rem;
}

.error-page__text {
  color: var(--text-soft);
  max-width: 30rem;
  margin: 0 auto 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .process__grid::before {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    max-width: 30rem;
    margin-inline: auto;
    width: 100%;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .page-hero__visual {
    max-width: 30rem;
    margin-inline: auto;
    width: 100%;
  }

  .page-hero__card--top {
    right: 0.5rem;
  }

  .page-hero__card--bottom {
    left: 0.5rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about__visual {
    max-width: 30rem;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .why__visual {
    max-width: 30rem;
    margin-inline: auto;
    order: -1;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mvv__grid {
    grid-template-columns: 1fr;
  }

  .hero__card--top {
    left: 0.5rem;
  }

  .hero__card--bottom {
    right: 0.5rem;
  }

  .about__badge {
    left: 0.5rem;
  }

  .about__img-accent {
    right: 0.5rem;
  }
}

@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about__points {
    grid-template-columns: 1fr;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .hero__card {
    padding: 0.9rem 1.1rem;
  }

  .hero__card-icon {
    width: 40px;
    height: 40px;
  }

  .hero__card-value {
    font-size: 0.95rem;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__actions .btn {
    width: 100%;
  }

  .page-hero__card {
    padding: 0.7rem 0.95rem;
  }

  .page-hero__card-icon {
    width: 36px;
    height: 36px;
  }

  .page-hero__card-value {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .brand__tag {
    display: none;
  }
}