/* ============================================================
   cms.css  –  Vizag Florist · CMS / Static Pages (Winni-level)
   About · Contact · FAQ · Policies · Generic content
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.cms-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4145a 0%, #a50f45 55%, #7c1d3f 100%);
  color: #fff;
  padding: 54px 0 60px;
  text-align: center;
}
.cms-hero::before,
.cms-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}
.cms-hero::before { width: 340px; height: 340px; top: -150px; right: -90px; }
.cms-hero::after  { width: 260px; height: 260px; bottom: -160px; left: -80px; }
.cms-hero .container { position: relative; z-index: 1; }

.cms-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 18px;
}
.cms-crumb a { color: rgba(255, 255, 255, .75); transition: color .2s; }
.cms-crumb a:hover { color: #fff; }
.cms-crumb i { font-size: 9px; opacity: .6; }
.cms-crumb .cms-crumb-cur { color: #fff; font-weight: 600; }

.cms-hero-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(4px);
}
.cms-hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 0;
  color: #fff;
}
.cms-hero-sub {
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}

/* ── BODY SHELL ──────────────────────────────────────────── */
.cms-wrap {
  background: var(--gray-50);
  padding: 48px 0 64px;
}
.cms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.cms-layout.cms-single { grid-template-columns: minmax(0, 1fr); max-width: 880px; margin: 0 auto; }

.cms-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 44px;
}

/* ── PROSE TYPOGRAPHY ────────────────────────────────────── */
.cms-prose { color: var(--gray-700); font-size: 15px; line-height: 1.85; }
.cms-prose > *:first-child { margin-top: 0; }
.cms-prose > *:last-child  { margin-bottom: 0; }

.cms-prose h2 {
  position: relative;
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 38px 0 16px;
  padding-left: 16px;
}
.cms-prose h2::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pink), var(--gold));
}
.cms-prose h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 30px 0 12px;
}
.cms-prose h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 24px 0 8px;
}
.cms-prose p { margin: 0 0 16px; }
.cms-prose a { color: var(--pink); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.cms-prose a:hover { border-bottom-color: var(--pink); }
.cms-prose strong { color: var(--gray-900); font-weight: 600; }

.cms-prose ul, .cms-prose ol { margin: 0 0 18px; padding: 0; }
.cms-prose ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  list-style: none;
}
.cms-prose ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 1px;
  font-size: 11px;
  color: var(--green);
  width: 19px; height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-lt);
  border-radius: 50%;
}
.cms-prose ol { counter-reset: cms-ol; padding-left: 4px; }
.cms-prose ol li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 11px;
  list-style: none;
  counter-increment: cms-ol;
}
.cms-prose ol li::before {
  content: counter(cms-ol);
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-50);
  border-radius: 50%;
}
.cms-prose table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 14px; }
.cms-prose th, .cms-prose td { border: 1px solid var(--gray-200); padding: 10px 14px; text-align: left; }
.cms-prose th { background: var(--gray-50); font-weight: 600; color: var(--gray-800); }
.cms-prose img { border-radius: var(--r-md); margin: 8px 0 20px; }
.cms-prose blockquote {
  margin: 0 0 20px;
  padding: 14px 20px;
  background: var(--pink-50);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--gray-700);
  font-style: italic;
}
.cms-updated {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px dashed var(--gray-200);
  font-size: 13px;
  color: var(--gray-400);
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.cms-aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }

.cms-help {
  background: linear-gradient(160deg, #fff, var(--pink-50));
  border: 1px solid var(--pink-light);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.cms-help-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: var(--shadow-pink);
  margin-bottom: 14px;
}
.cms-help h4 { font-family: var(--font-head); font-size: 19px; color: var(--gray-900); margin: 0 0 6px; }
.cms-help p  { font-size: 13.5px; color: var(--gray-500); margin: 0 0 18px; line-height: 1.6; }
.cms-help-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--gray-200);
  margin-bottom: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cms-help-row:last-child { margin-bottom: 0; }
.cms-help-row:hover { border-color: var(--pink-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cms-help-row i {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 15px;
  background: var(--pink-50); color: var(--pink);
}
.cms-help-row.is-wa i { background: #e7f9ee; color: #25d366; }
.cms-help-row span { font-size: 11px; color: var(--gray-400); display: block; line-height: 1.3; }
.cms-help-row strong { font-size: 13.5px; color: var(--gray-800); display: block; font-weight: 600; }

.cms-side-links {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.cms-side-links h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); margin: 0 0 14px;
}
.cms-side-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  font-size: 14px; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color .2s, padding-left .2s;
}
.cms-side-links a:last-child { border-bottom: none; }
.cms-side-links a i { font-size: 11px; color: var(--gray-300); transition: transform .2s, color .2s; }
.cms-side-links a:hover { color: var(--pink); padding-left: 5px; }
.cms-side-links a:hover i { color: var(--pink); transform: translateX(3px); }
.cms-side-links a.is-active { color: var(--pink); font-weight: 600; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-story-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--pink-50), var(--gold-lt));
  box-shadow: var(--shadow-lg);
}
.about-story-media img { width: 100%; height: 100%; object-fit: cover; }
.about-story-media .about-media-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px; color: var(--pink-light);
}
.about-badge-float {
  position: absolute; left: 18px; bottom: 18px;
  background: #fff; border-radius: var(--r-md);
  padding: 12px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.about-badge-float .ab-num { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--pink); line-height: 1; }
.about-badge-float .ab-lbl { font-size: 12px; color: var(--gray-500); }

.about-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 10px;
}
.about-story-text h2 {
  font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 32px); font-weight: 700;
  color: var(--gray-900); margin: 0 0 16px; line-height: 1.25;
}
.about-story-text p { color: var(--gray-600); line-height: 1.85; margin: 0 0 14px; font-size: 15px; }

/* Stats band */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.about-stat {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-stat i {
  font-size: 24px; color: var(--pink); margin-bottom: 10px;
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pink-50);
}
.about-stat .as-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--gray-900); line-height: 1.1; }
.about-stat .as-lbl { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* Values / promise grid */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--pink-light); }
.value-card .vc-ico {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}
.value-card:nth-child(2) .vc-ico { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.value-card:nth-child(3) .vc-ico { background: linear-gradient(135deg, var(--green), #0f7a39); }
.value-card:nth-child(4) .vc-ico { background: linear-gradient(135deg, var(--purple), #5b21b6); }
.value-card:nth-child(5) .vc-ico { background: linear-gradient(135deg, var(--blue), #1e40af); }
.value-card:nth-child(6) .vc-ico { background: linear-gradient(135deg, #ec4899, #be185d); }
.value-card h4 { font-family: var(--font-head); font-size: 18px; color: var(--gray-900); margin: 0 0 8px; }
.value-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin: 0; }

/* CTA band */
.about-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-900), #2b1620);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.about-cta::before {
  content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: rgba(212,20,90,.25); top: -120px; right: -60px; filter: blur(10px);
}
.about-cta-inner { position: relative; z-index: 1; }
.about-cta h3 { font-family: var(--font-head); font-size: clamp(22px, 3.5vw, 30px); color: #fff; margin: 0 0 10px; }
.about-cta p { color: rgba(255,255,255,.8); margin: 0 0 22px; font-size: 15px; }
.about-cta .btn { box-shadow: var(--shadow-pink); }

/* Shared section heading for custom layouts */
.cms-sec-head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.cms-sec-head .cms-sec-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 8px;
}
.cms-sec-head h2 { font-family: var(--font-head); font-size: clamp(24px, 4vw, 34px); font-weight: 700; color: var(--gray-900); margin: 0; }
.cms-sec-head p { color: var(--gray-500); margin: 12px 0 0; font-size: 15px; line-height: 1.7; }

.cms-block { margin-bottom: 56px; }
.cms-block:last-child { margin-bottom: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--pink-light); }
.contact-card .cc-ico {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--pink); background: var(--pink-50);
}
.contact-card.is-wa .cc-ico { color: #25d366; background: #e7f9ee; }
.contact-card.is-mail .cc-ico { color: var(--blue); background: #eff6ff; }
.contact-card.is-loc .cc-ico { color: var(--gold); background: var(--gold-lt); }
.contact-card h4 { font-family: var(--font-head); font-size: 18px; color: var(--gray-900); margin: 0 0 6px; }
.contact-card .cc-val { font-size: 14px; font-weight: 600; color: var(--gray-800); word-break: break-word; }
.contact-card .cc-sub { font-size: 12.5px; color: var(--gray-400); margin-top: 4px; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 34px 36px;
  box-shadow: var(--shadow-card);
}
.contact-form-card h3 { font-family: var(--font-head); font-size: 24px; color: var(--gray-900); margin: 0 0 6px; }
.contact-form-card > p { color: var(--gray-500); font-size: 14px; margin: 0 0 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.cf-group input, .cf-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cf-group input:focus, .cf-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 3px var(--pink-50);
}
.cf-group textarea { resize: vertical; min-height: 110px; }
.contact-form-card .btn { width: 100%; }

.contact-aside-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.contact-map { width: 100%; height: 230px; border: 0; display: block; flex-shrink: 0; filter: grayscale(.15); }
.contact-hours { background: #fff; padding: 26px 28px; flex: 1; }
.contact-hours h4 { font-family: var(--font-head); font-size: 19px; color: var(--gray-900); margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.contact-hours h4 i { color: var(--pink); }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--gray-500); }
.hours-row strong { color: var(--gray-800); font-weight: 600; }
.hours-open { color: var(--green) !important; font-weight: 600; }

/* ── FAQ PAGE ────────────────────────────────────────────── */
.faq-accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--pink-light); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  padding: 20px 22px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15.5px; font-weight: 600; color: var(--gray-900);
}
.faq-q .faq-num {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: var(--pink-50); color: var(--pink);
  transition: background .2s, color .2s;
}
.faq-q .faq-chev { margin-left: auto; color: var(--gray-400); font-size: 14px; transition: transform .3s, color .2s; }
.faq-item.open .faq-q .faq-num { background: var(--pink); color: #fff; }
.faq-item.open .faq-q .faq-chev { transform: rotate(180deg); color: var(--pink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px 64px; color: var(--gray-600); font-size: 14.5px; line-height: 1.8; }
.faq-a-inner a { color: var(--pink); font-weight: 600; }

.faq-cta {
  max-width: 820px; margin: 36px auto 0;
  background: linear-gradient(135deg, var(--pink-50), var(--gold-lt));
  border: 1px solid var(--pink-light);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.faq-cta-text h4 { font-family: var(--font-head); font-size: 20px; color: var(--gray-900); margin: 0 0 4px; }
.faq-cta-text p { color: var(--gray-500); font-size: 14px; margin: 0; }
.faq-cta .faq-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── CORPORATE: HOW IT WORKS STEPS ───────────────────────── */
.cms-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cms-step { position: relative; text-align: center; padding: 0 6px; }
.cms-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--pink-light) 0 7px, transparent 7px 14px);
}
.cms-step-num {
  position: relative; z-index: 1;
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 24px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: var(--shadow-pink);
}
.cms-step h4 { font-family: var(--font-head); font-size: 18px; color: var(--gray-900); margin: 0 0 6px; }
.cms-step p  { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ── CORPORATE: ENQUIRY BENEFITS PANEL ───────────────────── */
.corp-side {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--gray-900), #2b1620);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px 34px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.corp-side::before {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(212,20,90,.22); top: -110px; right: -70px; filter: blur(8px);
}
.corp-side-inner { position: relative; z-index: 1; }
.corp-side h3 { font-family: var(--font-head); font-size: 24px; color: #fff; margin: 0 0 8px; }
.corp-side > .corp-side-inner > p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0 0 24px; line-height: 1.6; }
.corp-benefit { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.corp-benefit:last-child { margin-bottom: 0; }
.corp-benefit i {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold);
  background: rgba(245,158,11,.14); border: 1px solid rgba(245,158,11,.3);
}
.corp-benefit strong { display: block; color: #fff; font-size: 15px; margin-bottom: 3px; font-weight: 600; }
.corp-benefit span { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.55; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .cms-steps { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .cms-step:not(:last-child)::after { display: none; }
  .cms-layout { grid-template-columns: 1fr; }
  .cms-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .cms-aside > * { flex: 1; min-width: 260px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .cms-hero { padding: 40px 0 46px; }
  .cms-wrap { padding: 32px 0 48px; }
  .cms-card { padding: 28px 22px; }
  .about-story { grid-template-columns: 1fr; gap: 28px; }
  .about-story-media { order: -1; }
  .contact-split { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .cms-block { margin-bottom: 44px; }
  .cms-steps { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 479px) {
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats  { grid-template-columns: 1fr; }
  .cms-card { padding: 24px 18px; }
  .cms-prose h2 { font-size: 22px; }
}
