/* ============================================================
   QUALITY DESIGNS ENGINEERING — SHARED STYLESHEET
   60 % Cloud Dancer  #F4F5F0
   30 % Navy          #1C3070
   10 % Vivid Pink    #E8185C   (replaces dull logo mauve)
   Text only → Black  #0D0D0D
   ============================================================ */

/* ---- Google Fonts (fetched in browser) ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ---- Custom Properties ---- */
:root {
  --cd:        #F4F5F0;   /* cloud dancer */
  --navy:      #1C3070;
  --navy-dk:   #111E4A;
  --accent:    #E8185C;
  --accent-hv: #C51151;
  --black:     #0D0D0D;
  --white:     #FFFFFF;
  --gray:      #5C6170;
  --gray-lt:   #DFE0DA;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-full: 999px;

  --ease:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sh:     0 4px 24px rgba(28,48,112,.10);
  --sh-lg:  0 8px 48px rgba(28,48,112,.18);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cd);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; line-height: 1.12; color: var(--black); }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray); line-height: 1.78; }

/* ---- Layout Utilities ---- */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.divider-accent {
  width: 52px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1.25rem 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.75rem;
  border-radius: var(--r-full);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--navy);  color: var(--white); }
.btn-primary:hover { background: var(--navy-dk); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-accent  { background: var(--accent); color: var(--white); }
.btn-accent:hover  { background: var(--accent-hv); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* Pill + icon CTA (like frame_1 orange pill) */
.btn-pill {
  display: inline-flex;
  align-items: center;
}
.btn-pill .pill-label {
  background: var(--accent);
  color: var(--white);
  padding: 0.78rem 1.4rem;
  border-radius: var(--r-full) 0 0 var(--r-full);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--ease);
}
.btn-pill:hover .pill-label { background: var(--accent-hv); }
.btn-pill .pill-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--ease);
}
.btn-pill:hover .pill-icon { background: var(--navy-dk); transform: scale(1.08); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--cd);
  border-bottom: 1px solid var(--gray-lt);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: var(--sh); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--black);
  transition: color var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--navy); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-offset { padding-top: 72px; }

/* ============================================================
   HERO  (index only)
   ============================================================ */
.hero {
  background: var(--cd);
  padding: 3.5rem 0 0;
  overflow: hidden;
}
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.75rem;
}
.hero-tag {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--navy);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  transition: var(--ease);
}
.hero-tag:hover { background: var(--navy); color: var(--white); }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 3.5rem;
  position: relative;
}
.hero-right > p { font-size: 1rem; max-width: 380px; }
.hero-cta-row { margin-top: 1.75rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Rotating circular badge */
.rotating-wrap {
  position: absolute;
  top: 0; right: 0;
  width: 128px; height: 128px;
}
.rotating-wrap a { display: block; position: relative; width: 100%; height: 100%; }
.rotating-wrap svg { animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
}

/* Hero image strip */
.hero-bottom { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-md) var(--r-md) 0 0;
  overflow: hidden;
  height: 460px;
}
.hero-img-wrap img { width: 100%; height: 100%; }
.hero-stats {
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 1.5rem;
  min-width: 175px;
}
.stat-num  { font-family: 'Montserrat',sans-serif; font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.stat-lbl  { font-size: 0.78rem; color: rgba(255,255,255,.65); margin-top: .2rem; display: block; }

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy-dk);
  padding: 5rem 0 4rem;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.65); margin-top: 1rem; max-width: 580px; }
.page-hero .section-label { color: var(--accent); }
.page-hero .section-label::before { background: var(--accent); }

.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; margin-bottom: 1.75rem;
  color: rgba(255,255,255,.45);
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .35; }

/* ============================================================
   ABOUT TEASER  (home)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 440px;
  border-radius: var(--r-md);
}
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--accent); color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem; line-height: 1.3;
}
.about-badge small { display: block; font-size: .75rem; font-weight: 400; }
.about-content { display: flex; flex-direction: column; gap: 1.5rem; }
.dark-card {
  background: var(--navy-dk);
  padding: 1.75rem;
  border-radius: var(--r-md);
}
.dark-card p { color: rgba(255,255,255,.7); font-size: .9rem; }
.dark-card h3 { color: var(--white); margin-bottom: .6rem; }
.dark-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--accent); font-weight: 700; font-size: .85rem;
  margin-top: 1rem; font-family: 'Montserrat', sans-serif;
  transition: gap var(--ease);
}
.dark-cta:hover { gap: .75rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform var(--ease), box-shadow var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.svc-img { position: relative; height: 210px; }
.svc-img img { width: 100%; height: 100%; }
.svc-icon {
  position: absolute; bottom: -22px; left: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  border: 3px solid var(--white);
  z-index: 1;
}
.svc-body { padding: 2.5rem 1.5rem 1.75rem; }
.svc-body h3 { font-size: 1.05rem; color: var(--black); margin-bottom: .5rem; }
.svc-learn {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--accent); font-weight: 700; font-size: .82rem;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: gap var(--ease);
}
.svc-learn:hover { gap: .7rem; }

/* Full service card (services.html) */
.svc-full { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh); }
.svc-full-img { height: 290px; }
.svc-full-img img { width: 100%; height: 100%; }
.svc-full-body { padding: 2rem; }
.svc-full-body h3 { color: var(--navy); margin-bottom: .75rem; }
.feature-list { display: flex; flex-direction: column; gap: .55rem; margin-top: 1.25rem; }
.feature-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--black); font-weight: 500;
}
.feature-item svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: flex; gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-lt);
  cursor: default;
  transition: var(--ease);
}
.process-item:last-child { border-bottom: none; }
.process-item:hover .p-num { background: var(--navy); color: var(--white); }
.p-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .88rem;
  color: var(--navy); flex-shrink: 0;
  transition: var(--ease);
}
.p-text h3 { margin-bottom: .3rem; font-size: .98rem; }
.process-img img { width: 100%; height: 520px; border-radius: var(--r-md); }

/* Steps mini-strip (home teaser) */
.steps-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}
.step-circle {
  width: 54px; height: 54px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: var(--white);
  transition: var(--ease);
}
.step-circle.active { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   VALUES  (about.html)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.val-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh);
  transition: transform var(--ease);
}
.val-card:hover { transform: translateY(-4px); }
.val-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--white);
}
.val-card h3 { font-size: .98rem; margin-bottom: .4rem; }

/* ============================================================
   MISSION / VISION  (about.html)
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.mv-img img { width: 100%; height: 480px; border-radius: var(--r-md); }
.mv-content { display: flex; flex-direction: column; gap: 2.5rem; }
.mv-block h3 { color: var(--navy); margin-bottom: .65rem; }

/* ============================================================
   USP  (about.html)
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.usp-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.usp-item { display: flex; align-items: flex-start; gap: .75rem; }
.usp-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white); margin-top: 2px;
}
.usp-item p { color: var(--black); font-weight: 500; font-size: .93rem; }

/* ============================================================
   CONTACT  (contact.html — Miros style)
   ============================================================ */
.contact-wrap { min-height: calc(100vh - 72px); background: var(--cd); padding: 4rem 0 6rem; }
.contact-heading {
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  line-height: .92;
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 3rem;
}
.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Form */
.c-form { display: flex; flex-direction: column; gap: 2.25rem; }
.c-field {
  display: flex; flex-direction: column;
  border-bottom: 1.5px solid #B8BAB4;
  padding-bottom: .65rem;
  transition: border-color var(--ease);
}
.c-field:focus-within { border-color: var(--navy); }
.c-field label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray); font-family: 'Montserrat', sans-serif;
  margin-bottom: .45rem;
}
.c-field input,
.c-field textarea {
  background: transparent; border: none; outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; color: var(--black); resize: none;
}
.c-field textarea { min-height: 96px; }

/* Contact info card */
.contact-card-wrap { display: flex; flex-direction: column; }
.c-dark {
  background: var(--navy-dk);
  color: var(--white);
  padding: 2rem 2rem 1.75rem;
  border-radius: var(--r-md) var(--r-md) 0 0;
  text-align: center;
  position: relative;
}
.c-dark h3 { color: var(--white); font-size: 1.05rem; }
.c-dark p  { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: .35rem; }
/* Corner dots like Miros */
.c-dot {
  position: absolute; bottom: -5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
}
.c-dot.left  { left:  2rem; }
.c-dot.right { right: 2rem; }

.c-light {
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 1.5rem;
  box-shadow: var(--sh);
}
.c-info-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--gray-lt);
}
.c-info-row:last-child { border-bottom: none; }
.c-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-dk);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.c-info-row span { font-size: .9rem; color: var(--black); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--accent);
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.cta-inner h2 { color: var(--white); margin-bottom: .4rem; font-size: clamp(1.5rem,3vw,2.2rem); }
.cta-inner p  { color: rgba(255,255,255,.85); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dk);
  color: var(--white);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: var(--ease);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

footer h4 { color: var(--white); margin-bottom: 1.25rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { display: block; color: rgba(255,255,255,.55); font-size: .88rem; padding: .28rem 0; transition: color var(--ease); }
.footer-links a:hover { color: var(--white); }

.f-contact-row { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .85rem; color: rgba(255,255,255,.55); font-size: .88rem; }
.f-contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-full);
  padding: .72rem 1.25rem;
  color: var(--white);
  font-family: inherit; font-size: .88rem;
  outline: none; margin-bottom: .7rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.35); }

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-base p { color: rgba(255,255,255,.4); font-size: .82rem; }

/* ============================================================
   SECTION VARIANTS
   ============================================================ */
.bg-white  { background: var(--white); }
.bg-cd     { background: var(--cd); }
.bg-navy   { background: var(--navy); }
.bg-dark   { background: var(--navy-dk); }

.dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section p  { color: rgba(255,255,255,.7); }
.dark-section .section-label { color: var(--accent); }
.dark-section .section-label::before { background: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .values-grid  { grid-template-columns: repeat(2,1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--cd);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--gray-lt);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu .btn { width: 100%; justify-content: center; }

  .hero-top    { grid-template-columns: 1fr; }
  .hero-right  { padding-top: 0; }
  .rotating-wrap { position: static; margin: 1.5rem 0 0; }
  .hero-img-wrap { height: 260px; }
  .hero-stats  { position: static; margin-top: 1rem; flex-direction: row; flex-wrap: wrap; gap: 1.25rem; border-radius: var(--r-md); }

  .about-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .mv-grid     { grid-template-columns: 1fr; }
  .usp-grid    { grid-template-columns: 1fr; }
  .contact-cols { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner   { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-base { flex-direction: column; gap: .5rem; text-align: center; }

  .steps-strip { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .steps-strip .step-circle:nth-child(4),
  .steps-strip .step-circle:nth-child(5) { margin-top: 0; }
}

@media (max-width: 480px) {
  .values-grid  { grid-template-columns: 1fr; }
  .steps-strip  { grid-template-columns: repeat(2,1fr); }
  .contact-heading { font-size: clamp(3.5rem,16vw,6rem); }
  .hero-stats   { flex-direction: column; }
}
