/* ===================================================
   Capitol Storage Sales — style.css
   =================================================== */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #2c3e50;
  background: #fff;
  padding-bottom: 72px;
}

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

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

ul,
ol {
  list-style: none;
}

p {
  margin-bottom: 14px;
}

p:last-child {
  margin-bottom: 0;
}

/* ===================================================
   DESIGN TOKENS
   =================================================== */
:root {
  --navy: #1a3a6b;
  --orange: #f1592a;
  --light: #f4f7fb;
  --white: #ffffff;
  --text: #3a4a5c;
  --muted: #6b7a8d;
}

/* ===================================================
   LAYOUT
   =================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid #e2e8f0;
}

.bg-light {
  background: var(--light);
}

.bg-white {
  background: var(--white);
}

/* ===================================================
   TYPOGRAPHY HELPERS
   =================================================== */
.sec-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.sec-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 44px;
}

.orange {
  color: var(--orange);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.btn:hover {
  opacity: .86;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 8px 32px;
  font-size: 16px;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  background: #fff;
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-org {
    margin-bottom: 0px !important;
    color: #f1592a !important;
    font-size: clamp(2.75rem, 4vw, 3.35rem);
}

.center {
    text-align: center;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, .82) 0%,
    rgba(0, 0, 0, .70) 55%,
    rgba(0, 0, 0, .55) 100%
  );
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-body {
  color: #fff;
  padding: 56px 28px 52px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-left h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 26px;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .80);
  margin-bottom: 24px;
  letter-spacing: .2px;
}

/* Hero pills (vertical checkmark list) */
.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 26px;
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  padding: 4px 0;
}

.hero-pills li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

/* Delivery strip inside hero */
.hero-inner-strip {
  display: flex;
  align-items: center;
  background: rgba(10, 20, 50, .55);
  border: 1px solid rgba(255, 255, 255, .15);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  padding: 10px 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.his-item {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
}

.his-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.his-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.his-text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.his-text span {
  color: rgba(255, 255, 255, .70);
  font-size: .84rem;
  line-height: 1.45;
}

.his-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .18);
  margin: 0 10px;
  flex-shrink: 0;
}

/* Hero Form */
.hero-form-wrap {
  z-index: 2;
}

.hero-form {
  background: var(--orange);
  border-radius: 10px;
  padding: 18px 20px 22px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .35);
}

.hero-form h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 7px 10px;
  border: none;
  border-radius: 5px;
  font-size: .88rem;
  color: #2c3e50;
  background: #fff;
  outline: none;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .6);
}

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

.form-group select {
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: .4px;
  transition: background .2s;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--navy);
}

/* ===================================================
   TRUST BADGE SLIDER
   =================================================== */
.badge-slider-wrap {
  background: #fff;
  padding: 26px 0;
  overflow: hidden;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  position: relative;
}

.badge-track {
  display: flex;
  align-items: center;
  gap: 52px;
  padding: 0 20px;
  animation: badgePingPong 14s ease-in-out infinite alternate;
}

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

.badge-track img {
  width: 140px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(15%);
  opacity: .85;
  transition: filter .3s, opacity .3s;
}

.badge-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes badgePingPong {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-320px); }
}

/* ===================================================
   SECTION 1 — ABOUT
   =================================================== */
.about-body {
  /* max-width: 820px; */
  margin: 0 auto;
  text-align: center;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.85;
}

/* ===================================================
   SECTION 2 — CONTAINER TYPES
   =================================================== */
.types-intro {
  text-align: center;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 680px;
 margin: 0px auto 40px;
  line-height: 1.75;
}

.types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}

.type-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .13);
}

/* Colored card header */
.type-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  gap: 16px;
}

.type-top-orange { background: var(--orange); }
.type-top-navy   { background: var(--navy); }

.type-top-text {
  display: flex;
  flex-direction: column;
}

.type-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
  margin-bottom: 6px;
}

.type-card-top h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.type-head-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: rgba(255, 255, 255, .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card body */
.type-card-body {
  padding: 26px 28px 24px;
  flex: 1;
}

.type-card-body p {
  color: var(--text);
  font-size: .97rem;
  line-height: 1.78;
  margin-bottom: 0px;
}

.type-features {
  display: flex;
  flex-direction: column;
}

.type-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: .94rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f0f4f8;
}

.type-features li:last-child {
  border-bottom: none;
}

.type-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card footer */
.type-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--light);
  border-top: 1px solid #e8eef6;
}

.type-best-label {
  font-size: .73rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.type-best-val {
  font-size: .93rem;
  font-weight: 700;
  color: var(--navy);
}

/* Shared checkmarks below types */
.type-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.type-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  border: 1px solid #e8eef6;
  font-size: .94rem;
  font-weight: 600;
  color: var(--text);
  transition: box-shadow .2s, transform .2s;
}

.type-check-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .10);
  transform: translateY(-2px);
}

.type-check-mark {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===================================================
   SECTION 3 — CONTAINER SIZES
   =================================================== */
.sizes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.size-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  transition: transform .25s, box-shadow .25s;
}

.size-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .14);
}

.size-popular {
  border: 3px solid var(--orange);
  transform: scale(1.03);
}

.size-popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.size-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e8eef6;
}

.size-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.size-card:hover .size-photo img {
  transform: scale(1.04);
}

.size-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 5px;
}

.pop-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
}

.size-info {
  padding: 24px 26px 28px;
}

.size-info h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.size-info p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.sizes-cta {
  text-align: center;
}

/* ===================================================
   SECTION 4 — FEATURES
   =================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  border-left: 3px solid var(--orange);
  transition: box-shadow .2s, transform .2s;
}

.feature-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .11);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(241, 89, 42, .30);
}

.feature-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.68;
  margin: 0;
}

/* ===================================================
   CONTAINER FEATURES
   =================================================== */
.feat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}

.feat-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  padding: 24px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8eef6;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.feat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #f5833a);
}

.feat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
  border-color: rgba(241, 89, 42, .30);
}

.feat-item--center {
  grid-column: 2;
}

.feat-check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 58, 107, .28);
}

/* ===================================================
   SECTION 5 — WHY CHOOSE
   =================================================== */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  padding: 28px 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  transition: transform .25s, box-shadow .25s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .13);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .94rem;
  color: var(--text);
  line-height: 1.72;
  margin: 0;
}

/* ===================================================
   WHY CAPITOL STANDS APART
   =================================================== */
.why-list {
  margin-bottom: 22px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #e8eef6;
  font-size: .97rem;
  color: var(--text);
}

.why-check {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-note {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
}

/* ===================================================
   WHO USES
   =================================================== */
.use-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.use-card {
  background: #f4f7fb;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  padding: 36px 36px 32px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.use-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.use-list {
  display: flex;
  flex-direction: column;
}

.use-list li {
  position: relative;
  padding: 10px 0 10px 38px;
  font-size: .96rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.use-list li:last-child {
  border-bottom: none;
}

.use-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
  text-align: center;
}

.use-note {
  text-align: center;
  color: var(--muted);
  font-size: .97rem;
  margin-bottom: 24px !important;
}

.use-cta {
  text-align: center;
}

/* ===================================================
   SECTION 6 — REVIEWS
   =================================================== */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: var(--orange);
  font-size: 1.15rem;
  letter-spacing: 3px;
}

.review-card blockquote {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
}

.review-name {
  font-weight: 700;
  color: var(--navy);
  font-size: .94rem;
  margin: 0;
}

/* ===================================================
   SECTION 7 — FAQ (CSS-only accordion)
   =================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eef6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}

details:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, .09);
}

details[open] {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(241, 89, 42, .12);
}

summary {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  user-select: none;
  transition: color .2s;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--light);
  color: var(--orange);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 27px;
  text-align: center;
  transition: background .2s, color .2s;
}

details[open] > summary {
  color: var(--orange);
  border-bottom: 1px solid #e8eef6;
}

details[open] > summary::after {
  content: '−';
  background: var(--orange);
  color: #fff;
}

.faq-answer {
  padding: 10px 14px 14px;
}

.faq-answer p {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.78;
  margin: 0;
}

/* ===================================================
   SECTION 8 — GET STARTED (two-col layout)
   =================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.col-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .14);
  flex-shrink: 0;
}

.col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.col-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.28;
  margin-bottom: 24px;
}

.col-text p {
  color: var(--text);
  font-size: .97rem;
}

.get-steps {
  list-style: none;
  margin: 0 0 24px;
}

.get-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #e8eef6;
}

.get-steps li span {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 900;
  flex-shrink: 0;
}

.strong-line {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px !important;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #1e293b;
}

/* Map inside footer */
.footer-map-section {
  padding: 40px 28px 0;
}

.footer-map-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-map-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
  margin-bottom: 0;
}

.footer-map-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.footer-map-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 100%);
  pointer-events: none;
}

.footer-map-bar {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: .98rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  gap: 24px;
}

.fmb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer bottom */
.footer-bottom {
  padding: 28px 0;
  background: #1e293b;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-copy {
  color: rgba(255, 255, 255, .32);
  font-size: .82rem;
  margin: 0;
}

/* ===================================================
   STICKY CTA BAR
   =================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border-top: 2px solid #e8eef6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 28px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .10);
}

.btn-sticky-call {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-sticky-call:hover {
  background: var(--navy);
  color: #fff;
}

/* ===================================================
   RESPONSIVE — 960px
   =================================================== */
@media (max-width: 1060px) {
  .hero-body {
    grid-template-columns: 1fr 380px;
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding: 48px 28px;
  }

  .hero-form-wrap {
    max-width: 520px;
  }

  .types-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .type-checks {
    grid-template-columns: 1fr 1fr;
  }

  .sizes-row {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 44px;
  }

  .size-popular {
    transform: none;
  }

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

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

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .use-cards {
    grid-template-columns: 1fr;
  }

  .reviews-row {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .col-img img {
    height: 320px;
  }

  .his-item {
    flex: unset;
  }

  .hero-inner-strip {
    flex-wrap: wrap;
    gap: 14px;
  }

  .his-divider {
    display: none;
  }

  .feat-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-item--center {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 10px);
  }
}

/* ===================================================
   RESPONSIVE — 640px
   =================================================== */
@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .type-checks {
    grid-template-columns: 1fr 1fr;
    padding: 22px 18px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-map-bar {
    font-size: .84rem;
    padding: 11px 22px;
    white-space: normal;
    text-align: center;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    justify-content: center;
  }

  .footer-map-img {
    height: 260px;
  }
  
    .feat-list {
      display: flex;
      flex-direction: column;
  }


  .feat-item--center {
    grid-column: auto;
    justify-self: auto;
    width: 100%;
  }

  .sticky-cta {
    gap: 10px;
    padding: 14px 20px;
  }

  body {
    padding-bottom: 136px;
  }

  .sticky-cta .btn-lg {
    width: 100%;
    text-align: center;
  }

  .container {
    padding: 0 18px;
  }
}

/* ===================================================
   RESPONSIVE — 480px
   =================================================== */
@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .hero-body {
    padding: 36px 18px;
  }
  
  .sticky-cta .btn {
      padding: 8px 10px;
    font-size: 14px;
  }

  .hero-form-wrap {
    padding: 0;
  }

  .type-checks {
    grid-template-columns: 1fr;
  }

  .sec-sub {
    font-size: .97rem;
    margin-bottom: 32px;
  }
}
