/* ===================================================
   Capitol Storage Rental — 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;
}

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

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

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

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

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

.sec-title span {
    color: #f1592a;
}

/* Section title */
.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: .97rem;
  margin-bottom: 44px;
}

/* Colour helpers */
.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;
}

.mb-20 {
    margin-bottom: 40px !important;
}

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

.containers-sec {
    text-align: center;
    margin-top: 30px;
}

.containers-sec .sec-sub {
    margin-bottom: 20px !important;
}

.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);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .75);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
}

.mt {
  margin-top: 8px;
}

/* ===================================================
   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);
}
h2.sub-title {
    font-size: 1.75rem;
    margin-bottom:20px;
}

/* ===================================================
   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;
}

.header-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.header-phone:hover {
  color: var(--orange);
}

/* ===================================================
   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-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 14px;
}

.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, 3.125rem);
  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;
}

/* Pills + badge side by side */
.hero-features {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.hero-pills {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.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-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* --- Veteran Badge image --- */
.vet-badge-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
  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;
}

.form-submit:hover {
  background: #1a3a6b;
}

/* --- Hero Delivery Strip --- */
.hero-delivery-strip {
  position: relative;
  z-index: 2;
  background: rgba(8, 18, 42, .88);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
}

.hds-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hds-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 56px;
}

.hds-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
}

.hds-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

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

.hds-text span {
  color: rgba(255, 255, 255, .6);
  font-size: .84rem;
}

.hds-divider {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* ===================================================
   VETERANS BAR
   =================================================== */
.vets-bar {
  background: var(--orange);
  padding: 14px 0;
}

.vets-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.star-icon {
  font-size: 1.15rem;
}

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

.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;
}

/* ===================================================
   TWO-COLUMN SPLIT
   =================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-rev {
  direction: rtl;
}

.two-col-rev>* {
  direction: ltr;
}

.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;
}

/* Tick list */
.tick-list {
  margin-bottom: 20px;
}

.tick-list li {
  position: relative;
  padding: 9px 0 9px 32px;
  font-size: .97rem;
  color: var(--text);
  border-bottom: 1px solid #e8eef6;
}

.tick-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
}

/* Sub-heading */
.sub-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 22px 0 8px;
}

/* Numbered steps (RTO process) */
.steps-ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.steps-ol li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: none;
  border-top: 3px solid var(--orange);
}

.steps-ol li .step-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26, 58, 107, .32);
  margin-bottom: 4px;
}

.steps-ol li .step-icon svg {
  display: block;
}

.italic-note {
  font-style: italic;
  color: var(--muted);
  margin-top: 14px;
}

/* Why list */
.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: #fff;
  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;
  gap: 0;
}

.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;
}

/* ===================================================
   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;
}

/* ===================================================
   GET STARTED
   =================================================== */
.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;
}

.get-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================
   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;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #1e293b;
    padding-top: 50px;
}

/* Map section */
.map-section {
  padding: 56px 28px;
  border-bottom: 1px solid #e2e8f0;
}


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

.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: 180px;
  background: linear-gradient(to top, rgba(0, 0, 0, .6) 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;
}

.fmb-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .45);
  flex-shrink: 0;
}

/* 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-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: .86rem;
}

.footer-dot {
  color: var(--orange);
  font-size: .6rem;
}

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

/* ===================================================
   TRUST BADGE SLIDER
   =================================================== */
/*
  6 logos × 140px + 5 gaps × 52px = 840 + 260 = 1100px track
  Visible container = 780px
  Scroll distance   = 1100 - 780 = 320px  →  translateX(-320px)
*/
.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: 160px;
    height: 80px;
  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);
  }
}

/* (delivery-section removed — strip is now inside hero) */

.full-width {
  grid-column: 1 / -1;
}

.container-fluid {
  max-width: 1300px !important;
  margin: 0 auto;
  max-width: none;
  padding: 0 28px;
  padding-top: 30px;
}

/* ===================================================
   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;
}

/* ===================================================
   RESPONSIVEssss
   =================================================== */
@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-inner-strip {
        flex-wrap: wrap;
        gap: 14px;
    }
    
    .his-item {
        flex: unset;
    }
    
    .his-divider {
        display: none;
    }

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

  .hds-row {
    flex-direction: column;
    gap: 0;
  }
  
  .feat-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hds-item {
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }

  .hds-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }

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

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

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

  .size-popular {
    transform: none;
  }

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

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

  .two-col-rev {
    direction: ltr;
  }

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

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

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
  }
  
  .hero-features {
      flex-direction: column;
  }

  .hero-btns {
    flex-direction: column;
  }

  .get-btns {
    flex-direction: column;
  }
  
  .feat-list {
    grid-template-columns: 1fr;
      display: flex;
      flex-direction: column;
  }

  .header-phone {
    display: none;
  }

  .footer-bottom-row {
    justify-content: center;
    text-align: center;
  }

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

  .steps-ol {
    grid-template-columns: 1fr;
  }

  .hds-item {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .sticky-cta .btn {
    padding: 8px 10px;
    font-size: 14px;
  }
}