/* =========================================
   CarCheck — Main Stylesheet
   Mobile-First | Clean White-Blue Design
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:      #06285B;
  --blue:      #2468F2;
  --sky:       #35A7E8;
  --white:     #FFFFFF;
  --bg-section:#F5F8FC;
  --yellow:    #FFC914;
  --green:     #20B34B;
  --text-main: #06285B;
  --text-sec:  #5F6E84;
  --border:    #D9E4F0;
  --shadow-card: 0 2px 16px rgba(6,40,91,0.07);
  --radius-card: 20px;
  --header-h:  86px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--text-sec);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-header { text-align: center; margin-bottom: 40px; }

/* --- Section spacing --- */
section { padding: 64px 0; }

section:nth-child(even) { background: var(--bg-section); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 14px;
  padding: 17px 28px;
  min-height: 56px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: #18a042; border-color: #18a042; }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: #1857d4; border-color: #1857d4; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: #e6b510; border-color: #e6b510; }

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
  min-height: 40px;
  border-radius: 10px;
}

/* WhatsApp icon SVG */
.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease;
}
.card:hover { box-shadow: 0 6px 28px rgba(36,104,242,0.12); }

/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(6,40,91,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 12px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.logo-name span { color: var(--blue); }
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-top: 2px;
}

/* Desktop nav */
.header-nav {
  display: none;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: color 0.15s;
}
.header-nav a:hover { color: var(--blue); }

/* Header right controls */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-section);
  border-radius: 8px;
  padding: 3px;
  border: 1px solid var(--border);
}

.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--text-sec);
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  background: transparent;
}
.lang-btn.active {
  background: var(--blue);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hamburger:hover { background: var(--bg-section); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .hamburger { display: none; }
}

/* Mobile menu dropdown */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(6,40,91,0.1);
  z-index: 999;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.15s;
  display: block;
}
.mobile-nav a:hover { background: var(--bg-section); color: var(--blue); }

/* Push main content below fixed header */
main { padding-top: var(--header-h); }

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%; /* Shifted down on mobile to avoid overlapping the button */
}

@media (min-width: 900px) {
  .hero-bg img {
    object-position: center 30%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,40,91,0.6) 0%,
    rgba(6,40,91,0.35) 50%,
    rgba(36,104,242,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px 0 80px;
}

.hero-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(25px, 8.5vw, 84px);
  margin-bottom: 24px;
  max-width: 900px;
  line-height: 1.05;
}

.hero-desc {
  color: rgba(255,255,255,0.95);
  font-size: clamp(17px, 3.5vw, 20px);
  max-width: 580px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero-price-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 3.5vw, 24px);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-features-line {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4AA4FF;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 100%;
}

@media (min-width: 640px) {
  .hero-btns {
    max-width: 400px;
  }
}

.hero-btns .btn { width: 100%; font-size: 16px; min-height: 60px; }

.btn-link-white {
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 16px;
  padding: 10px;
  min-height: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-link-white:hover { color: rgba(255,255,255,0.8); }

.hero-trust {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

/* Make package buttons smaller */
.pkg-btns .btn {
  font-size: 14px;
  min-height: 48px;
  padding: 12px 20px;
}

/* ===========================================
   BENEFITS (3 cards after hero)
   =========================================== */
#benefits { background: var(--white); padding: 56px 0; }

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 700px) {
  .benefits-grid { flex-direction: row; gap: 20px; }
}

.benefit-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 22px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.benefit-card p { font-size: 15px; color: var(--text-sec); line-height: 1.55; }

/* ===========================================
   PACKAGES
   =========================================== */
#packages { background: var(--bg-section); }

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .packages-grid {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1100px;
  }

  .packages-grid .pkg-card {
    flex: 1;
  }

  /* Make the featured card slightly taller visually */
  .packages-grid .pkg-card.featured {
    margin-top: -12px;
  }
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  position: relative;
  overflow: visible;
}

.pkg-card.featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 4px 28px rgba(36,104,242,0.14);
  background: #F0F5FF;
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.pkg-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}
.pkg-price sup { font-size: 22px; vertical-align: super; }

.pkg-desc {
  font-size: 15px;
  color: var(--text-sec);
  margin-bottom: 22px;
  line-height: 1.55;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.5;
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg { width: 11px; height: 11px; fill: white; }

.pkg-note {
  font-size: 13px;
  color: var(--text-sec);
  font-style: italic;
  margin-bottom: 24px;
}

.pkg-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-btns .btn { width: 100%; }

/* ===========================================
   FORMAT SECTION
   =========================================== */
#format { background: var(--white); }

.format-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
  line-height: 1.05;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .format-grid { flex-direction: row; gap: 20px; }
}

.format-card {
  flex: 1;
  padding: 30px 24px;
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.format-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.format-icon svg { width: 24px; height: 24px; fill: var(--blue); }

.format-card h3 { font-size: 18px; margin-bottom: 10px; }
.format-card p { font-size: 15px; color: var(--text-sec); line-height: 1.6; }
.format-note {
  font-size: 13px;
  color: var(--sky);
  font-weight: 600;
  margin-top: 10px;
}

/* ===========================================
   WHAT YOU GET
   =========================================== */
#what-you-get { background: var(--bg-section); }

.wyg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .wyg-grid { grid-template-columns: 1fr 1fr; }
}

.wyg-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 26px 22px;
}

.wyg-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}

.wyg-card h3 { font-size: 17px; margin-bottom: 8px; }
.wyg-card p { font-size: 15px; color: var(--text-sec); line-height: 1.55; }

.wyg-cta { text-align: center; }

/* ===========================================
   TOOLS / PROCESS SECTION
   =========================================== */
#tools { background: var(--white); }

.tools-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .tools-layout { flex-direction: row; gap: 56px; align-items: flex-start; }
}

.tools-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6,40,91,0.12);
  flex-shrink: 0;
}
.tools-img img { width: 100%; height: 320px; object-fit: cover; object-position: center; }

@media (min-width: 900px) {
  .tools-img { width: 50%; }
  .tools-img img { height: 420px; }
}

.tools-text { flex: 1; }

.tools-text p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 28px;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tools-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.tool-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ===========================================
   PHOTO SECTION
   =========================================== */
#photos { background: var(--bg-section); }

.photos-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .photos-layout { flex-direction: row; gap: 48px; }
}

.photos-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6,40,91,0.1);
  flex-shrink: 0;
}
.photos-img img { width: 100%; height: 280px; object-fit: cover; }

@media (min-width: 900px) {
  .photos-img { width: 46%; }
  .photos-img img { height: 360px; }
}

.photos-text { flex: 1; }
.photos-text h2 {
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.photos-text p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===========================================
   SAMPLE REPORT
   =========================================== */
#sample-report {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3a7a 100%);
  padding: 56px 0;
  text-align: center;
}

#sample-report .section-title { color: var(--white); }

#sample-report p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================
   REVIEWS
   =========================================== */
#reviews { background: var(--bg-section); text-align: center; }

.reviews-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--text-sec);
  font-size: 16px;
  line-height: 1.7;
}

/* ===========================================
   FAQ
   =========================================== */
#faq { background: var(--white); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--blue); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2.5vw, 16px);
  color: var(--navy);
  line-height: 1.4;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s;
}
.faq-chevron svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; transition: stroke 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue); }
.faq-item.open .faq-chevron svg { stroke: white; }

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===========================================
   FINAL CTA
   =========================================== */
#cta {
  background: linear-gradient(135deg, var(--navy), #0e3a80);
  padding: 72px 0;
  text-align: center;
}

#cta h2 {
  color: var(--white);
  font-size: clamp(24px, 5vw, 40px);
  margin-bottom: 14px;
}

#cta p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

@media (min-width: 480px) {
  .cta-btns { flex-direction: row; justify-content: center; }
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-logo-name span { color: var(--sky); }
.footer-tagline { font-size: 13px; line-height: 1.5; max-width: 260px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contacts a:hover { color: var(--white); }

.footer-contacts svg { width: 18px; height: 18px; fill: currentColor; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }

/* No horizontal scroll safeguard */
.overflow-x-hidden { overflow-x: hidden; }
 
 
.mobile-break { display: block; }

@media (min-width: 900px) {
  .hero {
    min-height: calc(100svh - var(--header-h));
  }
  .mobile-break { display: none; }
}

@media (max-width: 639px) {
  .hero-content {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
