/* Coastal Portable Storage — site styles
   Brand colors sampled from logo:
   Orange #F27825 | Teal #189FB2 | Text #212121
*/
:root {
  --orange: #F27825;
  --orange-hover: #d96518;
  --teal: #189FB2;
  --teal-dark: #127a8a;
  --teal-deep: #0e5f6b;
  --teal-light: #5ec4d4;
  --navy: #127a8a;          /* primary dark = logo teal family */
  --navy-dark: #0e5f6b;     /* footer / deep band */
  --text: #212121;
  --muted: #5a6d7d;
  --border: #e2e8f0;
  --bg: #f3fafb;
  --white: #ffffff;
  --max: 1100px;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(24, 159, 178, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
ul { list-style: none; }

/* Header */
.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
}
.topbar strong { color: #fff3e8; }

header.site-header {
  background: var(--white);
  border-bottom: 1px solid #dde4ea;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .logo img { height: 48px; max-width: 160px; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--navy);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: #3d5161;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--navy); }

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary.light {
  color: #fff;
  border-color: #fff;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-block { display: block; width: 100%; }
.btn-nav {
  padding: 8px 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}
/* Commercial page section cards */
.commercial-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 12px;
}
.commercial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.commercial-card h2 {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--orange);
}
.commercial-card p {
  color: var(--muted);
  font-size: 0.98rem;
}
.commercial-card .coming {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-style: italic;
}

/* Schools flyer content (from Baldwin County Schools Flyer) */
.school-flyer {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.school-flyer > h2.section-title {
  margin: 0;
  padding: 24px 28px 0;
  border-bottom: none;
}
.school-flyer-banner {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark) 45%, var(--teal));
  color: #fff;
  padding: 28px;
  margin-top: 16px;
}
.school-flyer-banner .top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.school-flyer-banner .logo-box {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.school-flyer-banner .logo-box img {
  max-height: 80px;
  width: auto;
}
.school-flyer-banner .photo-box {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.4);
  width: 420px;
  max-width: 100%;
  height: 280px;
  flex: 1 1 420px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.school-flyer-banner .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
}
@media (max-width: 700px) {
  .school-flyer-banner .photo-box {
    width: 100%;
    height: 220px;
    flex: 1 1 100%;
  }
}
.school-flyer-banner h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
}
.school-flyer-banner .sub {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  max-width: 720px;
}
.school-flyer-body {
  padding: 28px;
}
.school-flyer-body .lead {
  color: #334155;
  margin-bottom: 22px;
  max-width: 800px;
}
.school-uses {
  background: var(--teal-deep);
  color: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 22px;
}
.school-uses h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-light);
  margin-bottom: 12px;
}
.school-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.school-use-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
}
.school-use-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 0.92rem;
}
.school-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.school-info-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  background: #f8fbfd;
}
.school-info-card h3 {
  font-size: 1rem;
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.school-info-card ul {
  margin-left: 18px;
  list-style: disc;
  color: #475569;
  font-size: 0.92rem;
}
.school-info-card li { margin-bottom: 6px; }
.school-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.school-pricing.three {
  grid-template-columns: 1fr 1fr 1fr;
}
.job-pitch {
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}
.school-contractor-box {
  background: linear-gradient(180deg, #eef4ff 0%, #dbeafe 100%);
  border: 2px solid var(--teal-deep);
  border-radius: 12px;
  padding: 18px 20px;
}
.school-contractor-box h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.school-contractor-box .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.school-contractor-box .price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.school-contractor-box .note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #64748b;
}
.school-price-box {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 18px 20px;
}
.school-price-box h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9a3412;
  margin-bottom: 8px;
}
.school-price-box .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}
.school-price-box .price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.school-price-box .note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #64748b;
}
.school-promo-box {
  background: linear-gradient(180deg, #e8fbf9 0%, #d4f4f0 100%);
  border: 2px solid var(--teal);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.school-promo-box h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.school-promo-box p {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}
.school-timeline {
  border-left: 4px solid var(--teal);
  padding: 4px 0 4px 18px;
  margin-bottom: 22px;
}
.school-timeline h3 {
  font-size: 1.05rem;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.school-timeline p { color: var(--muted); font-size: 0.95rem; }
.school-cta-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.school-cta-main {
  background: var(--teal);
  color: #fff;
  border-radius: 12px;
  padding: 20px 22px;
}
.school-cta-main h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
}
.school-cta-main p { color: #e8f9fc; font-size: 0.92rem; }
.school-cta-contact {
  background: var(--teal-deep);
  color: #fff;
  border-radius: 12px;
  padding: 20px 22px;
}
.school-cta-contact .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 6px;
}
.school-cta-contact .phone {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.school-cta-contact .phone a { color: #fff; text-decoration: none; }
.school-cta-contact .detail {
  font-size: 0.9rem;
  color: #cfe6ff;
  margin-bottom: 2px;
}
.school-cta-contact .detail a { color: #cfe6ff; }
@media (max-width: 900px) {
  .school-pricing.three {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .school-flyer-banner .top,
  .school-use-grid,
  .school-two-col,
  .school-pricing,
  .school-cta-row {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark) 45%, var(--teal));
  color: #fff;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
/* Watermark: logo outline feel on home hero */
.hero::before {
  content: "";
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  background: url("images/logo.jpg") center / contain no-repeat;
  opacity: 0.1;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-block;
  background: var(--orange);
  border: 1px solid var(--orange-hover);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero .badge {
  font-size: 0.92rem;
  padding: 7px 16px;
}
.badge .badge-stars {
  color: #7fd4e8;
  font-size: 0.75em;
  vertical-align: middle;
  margin: 0 2px;
  text-shadow: 0 0 4px rgba(127, 212, 232, 0.6);
}
.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
}
.hero h1 .hero-brand {
  color: #ffe8d6;
  font-weight: 800;
  font-size: 1.32em;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.25);
  border-bottom: 4px solid var(--orange);
  padding-bottom: 2px;
  display: inline-block;
}
/* Color pulse on brand name */
.hero h1 .hero-name-pulse {
  animation: coastalNamePulse 3s ease-in-out infinite;
}
@keyframes coastalNamePulse {
  0%, 100% {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.35);
    border-bottom-color: var(--orange);
  }
  33% {
    color: #7fd4e8;
    text-shadow: 0 0 16px rgba(24,159,178,0.65);
    border-bottom-color: var(--teal-light);
  }
  66% {
    color: #ffc89a;
    text-shadow: 0 0 16px rgba(242,120,37,0.55);
    border-bottom-color: var(--orange);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .hero-name-pulse { animation: none; }
}
.hero .lead {
  font-size: 1.08rem;
  opacity: 0.95;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-meta {
  font-size: 0.88rem;
  opacity: 0.88;
}
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-visual {
  border-radius: 16px;
  min-height: 280px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border: 3px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.15);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 92%;
  margin: 0 auto;
}
.hero-thumb {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.15);
  aspect-ratio: 16 / 9;
}
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Tall/portrait photos: show full image inside the box */
.hero-thumb-fit {
  background: #0a1a1f;
}
.hero-thumb-fit img {
  object-fit: contain;
  object-position: center center;
}
/* Brighten selected hero thumb photos */
.hero-thumb img.img-bright {
  filter: brightness(1.22) contrast(1.05);
}
@media (max-width: 900px) {
  .hero-thumbs {
    max-width: 100%;
  }
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}
.page-hero h1 { font-size: 2rem; margin-bottom: 8px; }
.page-hero p { opacity: 0.92; max-width: 560px; margin: 0 auto; }

/* Sections */
section { padding: 56px 24px; }
.container { max-width: var(--max); margin: 0 auto; }
.bg-white { background: var(--white); }
h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.intro {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 640px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 12px;
}
.card-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.step {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.step p { font-size: 0.92rem; color: #3d5161; }

/* Table */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e8edf2;
}
th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}
tr:last-child td { border-bottom: none; }
.price-callout {
  text-align: center;
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.price-callout .big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}
.price-callout p { color: var(--muted); margin-top: 6px; }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.why ul { margin-top: 12px; }
.why li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #3d5161;
}
.why li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.photo-ph {
  background: #e6f6f8;
  border: 2px dashed var(--teal-light);
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  text-align: center;
  padding: 20px;
}

/* CTA / form sections */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 520px;
  margin: 20px auto 0;
  text-align: left;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.form-card.wide { max-width: 720px; }
.form-card h2 { font-size: 1.25rem; margin-bottom: 6px; }
.form-card .sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 12px 0 4px;
  color: #3d5161;
}
label .req { color: var(--orange); }
.netlify-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #c5d0db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fafbfc;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--teal);
  border-color: var(--teal);
  background: #fff;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.option-list {
  list-style: none;
  margin: 8px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  background: #f3fafb;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}
.option-item:hover {
  border-color: var(--teal);
  background: #e6f6f8;
}
.option-item input[type="radio"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--orange);
  flex-shrink: 0;
}
.option-item span {
  line-height: 1.35;
}
textarea { min-height: 90px; resize: vertical; }
.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}
.trust span {
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
}
.side-info {
  margin-top: 20px;
  padding: 18px;
  background: #e6f6f8;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--teal-deep);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.side-info-top {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}
.side-info strong { color: var(--teal-dark); }

/* Quote page layout */
.quote-wrap {
  max-width: 720px;
  margin: -32px auto 48px;
  padding: 0 20px;
}

/* Content pages */
.prose {
  max-width: 720px;
}
.prose p { margin-bottom: 14px; color: #3d5161; }
.prose h3 {
  color: var(--navy);
  margin: 28px 0 10px;
  font-size: 1.15rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-item h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.faq-item p { color: var(--muted); font-size: 0.95rem; }

/* Footer */
footer {
  background: var(--navy-dark);
  color: #c8d6e5;
  padding: 40px 24px;
}
.fgrid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
footer h4 { color: #fff; margin-bottom: 12px; }
footer a { color: #c8d6e5; text-decoration: none; }
footer a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  text-align: center;
}

/* Mobile call bar */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  text-decoration: none;
  z-index: 200;
}

@media (max-width: 900px) {
  .hero-grid, .cards, .steps, .why-grid, .fgrid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.85rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 8px;
  }
  nav.main-nav.open { display: flex; }
  .mobile-call { display: block; }
  body { padding-bottom: 56px; }
}

@media (max-width: 600px) {
  .row-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
