/* ===================== ReservZs Marketing Site ===================== */
:root {
  --navy: #102033;
  --navy-light: #16324a;
  --teal: #ff616a;
  --teal-light: #1fc7c1;
  --orange: #ff9f43;
  --ink: #1c2b3a;
  --muted: #5c7086;
  --bg: #f6f9fc;
  --card: #ffffff;
  --border: #e2e9f0;
  --green: #1f9d55;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(16, 32, 51, 0.09);
  --shadow-lg: 0 24px 60px rgba(16, 32, 51, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section.tight { padding: 56px 0; }
.section.alt { background: #eef4f9; }
.section.dark { background: var(--navy); color: #dce7f0; }
.section.dark h2, .section.dark h3 { color: #fff; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
  display: inline-block;
}

h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 14px; font-weight: 800; }
h1 { font-size: 44px; letter-spacing: -0.01em; }
h2 { font-size: 32px; letter-spacing: -0.01em; }
h3 { font-size: 21px; }
p { color: var(--muted); margin: 0 0 14px; }
.section.dark p { color: #b6c9da; }

.text-center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 16px 32px rgba(16, 32, 51, 0.24); }
.btn.primary { background: var(--teal); }
.btn.orange { background: linear-gradient(135deg, var(--orange), #ffb066); color: #402400; }
.btn.outline { background: transparent; color: var(--navy); border: 2px solid var(--border); box-shadow: none; }
.btn.outline:hover { border-color: var(--teal); color: var(--teal); }
.btn.block { width: 100%; justify-content: center; }
.btn.small { padding: 10px 18px; font-size: 13px; }
.section.dark .btn.outline { color: #fff; border-color: rgba(255,255,255,0.3); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(178, 207, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; color: var(--navy); }
.brand-logo { height: 50px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; }

/* ---------- Nav dropdown (Features) ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle .caret { font-size: 11px; transition: transform 0.15s ease; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: -14px; min-width: 210px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown:hover .nav-dropdown-toggle .caret { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: block; padding: 10px 12px; border-radius: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--teal); text-decoration: none; }
.nav-dropdown-menu a.active { color: var(--teal); }

@media (max-width: 860px) {
  .nav-links { position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta .btn.outline { display: none; }
  .nav-cta .btn.primary { display: none; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 0 12px; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-toggle .caret { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero { padding: 70px 0 90px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy p.lead { font-size: 19px; color: var(--muted); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin: 26px 0 22px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: var(--muted); font-weight: 600; }
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-media { position: relative; }
.hero-media img { border-radius: 22px; box-shadow: var(--shadow-lg); }

/* ---------- Detail page banner images ---------- */
.detail-banner-wrap { padding: 6px 0 58px; }
.detail-banner-wrap.tight-top { padding-top: 0; }
.detail-banner {
  margin: 0; position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.detail-banner img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.detail-banner:hover img { transform: scale(1.03); }
.detail-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,34,0) 45%, rgba(8,20,34,0.55) 100%);
}
.detail-banner figcaption {
  position: absolute; left: 26px; bottom: 22px; right: 26px;
  color: #fff; font-weight: 800; font-size: 17px; letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
@media (max-width: 720px) {
  .detail-banner img { height: 220px; }
  .detail-banner figcaption { font-size: 15px; }
}
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,157,85,0.18); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  h1 { font-size: 34px; }
}

/* ---------- Logos strip ---------- */
.logo-strip { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.logo-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.logo-strip span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; white-space: nowrap; }
.logo-strip-inner { align-items: center; }
.logo-strip .photo-chips { display: flex; gap: 14px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.logo-strip .photo-chip { position: relative; width: 228px; height: 300px; border-radius: 12px; overflow: hidden; margin: 0; box-shadow: 0 4px 12px rgba(15, 42, 67, 0.12); flex-shrink: 0; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.logo-strip .photo-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(15, 42, 67, 0.2); }
.logo-strip .photo-chip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-strip .photo-chip figcaption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(9, 22, 38, 0) 0%, rgba(9, 22, 38, 0.82) 100%); color: #fff; font-size: 11px; font-weight: 700; text-align: center; padding: 16px 6px 6px; letter-spacing: 0.02em; }
@media (max-width: 900px) {
  .logo-strip .photo-chips { justify-content: center; }
  .logo-strip .photo-chip { width: 104px; height: 76px; }
}
@media (max-width: 600px) {
  .logo-strip-inner { flex-direction: column; align-items: flex-start; }
  .logo-strip .photo-chips { justify-content: flex-start; }
  .logo-strip .photo-chip { width: calc(33.333% - 10px); height: 78px; }
}

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 26px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(11,132,216,0.14), rgba(31,199,193,0.16));
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 14.5px; }

/* ---------- Audience / persona chips ---------- */
.persona-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.persona-chip {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 50px;
  padding: 10px 20px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow);
}
.persona-chip .emoji { font-size: 20px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step-card { position: relative; background: #fff; border-radius: var(--radius); padding: 26px 22px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px;
}

/* ---------- Screenshot / mockup panel ---------- */
.mockup-panel {
  background: linear-gradient(135deg, #0e2338, #143a57);
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.mockup-panel img { border-radius: 18px; }

/* ---------- Pricing ---------- */
.pricing-toggle { display: flex; justify-content: center; gap: 10px; margin: 6px 0 40px; }
.pricing-toggle button {
  border: 1px solid var(--border); background: #fff; padding: 10px 22px;
  border-radius: 50px; font-weight: 700; cursor: pointer; font-size: 14px; color: var(--muted);
}
.pricing-toggle button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.price-card {
  background: #fff; border-radius: 22px; border: 1px solid var(--border);
  padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured { border: 2px solid var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.price-card .ribbon {
  position: absolute; top: -14px; right: 24px; background: var(--orange); color: #402400;
  font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 50px; letter-spacing: 0.03em;
}
.price-card h3 { margin-bottom: 4px; }
.price-card .price { font-size: 58px; font-weight: 900; color: var(--navy); margin: 14px 0 4px; line-height: 1; display: flex; align-items: baseline; gap: 6px; }
.price-card .price .price-amount { font-size: 58px; font-weight: 900; color: var(--navy); line-height: 1; }
.price-card .price span:not(.price-amount) { font-size: 16px; color: var(--muted); font-weight: 600; }
.price-card .desc { font-size: 14px; margin-bottom: 22px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); margin-bottom: 12px; }
.price-card li .check { color: var(--green); font-weight: 900; margin-top: 1px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 28px 26px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.testimonial-card .stars { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800;
}
.testimonial-card .who strong { display: block; font-size: 14px; }
.testimonial-card .who small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary { font-weight: 800; cursor: pointer; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--teal); }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 12px; margin-bottom: 0; }

/* ---------- Booking Fees selling section ---------- */
.fees-hero {
  background: linear-gradient(160deg, #0c1c2e 0%, #102033 40%, #16324a 100%);
  color: #dce7f0;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.fees-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,199,193,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.fees-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,159,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.fees-hero .container { position: relative; z-index: 1; }
.fees-hero h2 { color: #fff; font-size: 36px; line-height: 1.15; }
.fees-hero p { color: #b6c9da; }
.fees-hero strong { color: #fff; }

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

.fees-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.fees-hero-lead { font-size: 17.5px; line-height: 1.65; max-width: 540px; }
.fees-hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.fees-hero-media {
  position: relative;
}
.fees-hero-media img {
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.btn.outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: none;
}
.btn.outline-light:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  background: rgba(31,199,193,0.08);
}

/* ---- Comparison bar ---- */
.fees-comparison-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 64px;
}
.comparison-col { text-align: center; }
.comparison-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #8aa4be;
  margin-bottom: 8px;
}
.comparison-pct {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.comparison-col.bad .comparison-pct { color: var(--teal); }
.comparison-col.good .comparison-pct { color: var(--green); }
.comparison-desc { font-size: 13.5px; color: #9fb5cc; margin-bottom: 18px; }
.comparison-bar-fill {
  height: 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.comparison-bar-fill span { display: block; height: 100%; border-radius: 50px; }
.comparison-bar-fill.bad span {
  width: 20%;
  background: linear-gradient(90deg, var(--teal), #ff8a90);
  animation: fillBar 1.2s ease-out forwards;
}
.comparison-bar-fill.good span {
  width: 100%;
  background: linear-gradient(90deg, var(--green), #2eb672);
  animation: fillBarFull 1.2s ease-out forwards;
}
@keyframes fillBar { from { width: 0; } to { width: 20%; } }
@keyframes fillBarFull { from { width: 0; } to { width: 100%; } }

.comparison-vs {
  font-size: 18px;
  font-weight: 900;
  color: #5d7a96;
  letter-spacing: 0.05em;
  padding: 0 8px;
}

/* ---- Benefits grid ---- */
.fees-benefits-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.fees-benefits-head h3 { color: #fff; font-size: 24px; }

.fees-benefits .benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px 22px;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.fees-benefits .benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}
.benefit-card h4 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.benefit-card p { color: #9fb5cc; font-size: 13.8px; line-height: 1.6; margin: 0; }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg { width: 30px; height: 30px; }
.benefit-icon-red { background: rgba(255,97,106,0.16); color: #ff616a; }
.benefit-icon-teal { background: rgba(31,199,193,0.16); color: #1fc7c1; }
.benefit-icon-green { background: rgba(31,157,85,0.16); color: #2eb672; }
.benefit-icon-orange { background: rgba(255,159,67,0.16); color: #ff9f43; }

/* ---- Fees CTA ---- */
.fees-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(255,159,67,0.08);
  border: 1px solid rgba(255,159,67,0.22);
  border-radius: 20px;
  padding: 36px 40px;
  margin-top: 56px;
}
.fees-cta-text { flex: 1; min-width: 280px; }
.fees-cta-text h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.fees-cta-text p { color: #b6c9da; font-size: 15px; margin: 0; max-width: 560px; }
.fees-cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .fees-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .fees-hero-media { order: -1; }
  .fees-hero-media img { max-width: 380px; }
  .fees-hero h2 { font-size: 30px; }
  .fees-cta { flex-direction: column; text-align: center; align-items: center; }
  .fees-cta-actions { justify-content: center; }
}
@media (max-width: 620px) {
  .fees-comparison-bar { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .comparison-vs { padding: 4px 0; }
  .comparison-pct { font-size: 36px; }
  .fees-hero { padding: 64px 0; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  border-radius: 26px; padding: 56px 44px; color: #fff; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9cde0; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn.outline { background: #fff; color: var(--navy); border-color: #fff; }
.cta-band .btn.outline:hover { background: #eef4f9; color: var(--navy); border-color: #eef4f9; }

/* ---------- Forms (signup/contact) ---------- */
.form-shell {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 36px; max-width: 620px; margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field-group { margin-bottom: 16px; }
.field-group label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 7px; color: var(--ink); }
.field-group input, .field-group select, .field-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: inherit; background: #f9fbfd; color: var(--ink);
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { outline: 2px solid var(--teal); background: #fff; }
.field-group textarea { min-height: 130px; resize: vertical; }
.plan-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
@media (max-width: 560px) { .plan-picker { grid-template-columns: 1fr; } }
.plan-option { border: 2px solid var(--border); border-radius: 12px; padding: 12px; text-align: center; cursor: pointer; font-weight: 700; font-size: 13.5px; }
.plan-option input { display: none; }
.plan-option.selected { border-color: var(--teal); background: rgba(11,132,216,0.06); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* ---------- Checkboxes (signup / contact / general) ---------- */
/* Larger checkboxes (3x default ~16px → 48px) with proper label alignment */
input[type="checkbox"] {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--teal);
  border: 2px solid var(--border);
  border-radius: 8px;
  margin: 0;
}
/* Labels that wrap checkboxes use flex for vertical centering + consistent gap */
.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: left;
}
.checkbox-label span { flex: 1; }
/* Fallback for any label wrapping a checkbox without the .checkbox-label class */
.field-group label:has(input[type="checkbox"]),
.form-row label:has(input[type="checkbox"]) {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: left;
}
/* The "What do you rent?" grid — keep items neatly aligned in columns */
.checkbox-grid {
  gap: 12px 20px;
  align-items: start;
}
.g-recaptcha-wrap { margin-bottom: 20px; }
.g-recaptcha-wrap .g-recaptcha { transform-origin: left top; }
@media (max-width: 400px) { .g-recaptcha-wrap .g-recaptcha { transform: scale(0.85); } }
.form-success, .form-error {
  border-radius: 12px; padding: 14px 16px; font-weight: 700; font-size: 14px; margin-bottom: 18px;
}
.form-success { background: rgba(31,157,85,0.1); color: #1a7c46; border: 1px solid rgba(31,157,85,0.3); }
.form-error { background: rgba(214,69,69,0.1); color: #b23a3a; border: 1px solid rgba(214,69,69,0.3); }

/* ---------- Contact page split ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: #fff; border-radius: 20px; padding: 30px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-info-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-card .icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(11,132,216,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex: none; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: #b6c9da; padding: 60px 0 30px; }
footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
@media (max-width: 760px) { footer .footer-grid { grid-template-columns: 1fr 1fr; } }
footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; font-size: 14px; }
footer a { color: #b6c9da; }
footer a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 19px; color: #fff; margin-bottom: 12px; }
.footer-logo { height: 80px; width: auto; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* ---------- Utility ---------- */
.badge-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(31,199,193,0.14); color: #0f7d78; font-weight: 800; font-size: 12px; padding: 6px 14px; border-radius: 50px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.page-hero { padding: 60px 0 50px; text-align: center; background: linear-gradient(180deg, #eef6fb, var(--bg)); }
.page-hero h1 { font-size: 38px; }

/* ===================== Industry SEO Pages ===================== */
.industry-hero { padding: 56px 0 48px; background: linear-gradient(165deg, #0f2e47 0%, #102033 55%, #143C5C 100%); color: #fff; position: relative; overflow: hidden; }
.industry-hero .container { position: relative; z-index: 2; }
.industry-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .industry-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.industry-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); background: rgba(255,97,106,0.12); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.industry-hero-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); display: inline-block; }
.industry-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); line-height: 1.1; margin: 0 0 16px; }
.industry-hero h1 .accent { color: var(--teal); }
.industry-hero .lead { color: rgba(255,255,255,0.78); font-size: 18px; line-height: 1.6; max-width: 580px; margin: 0 0 28px; }
.industry-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.industry-hero-stat { }
.industry-hero-stat .num { font-size: 32px; font-weight: 800; color: #fff; line-height: 1; }
.industry-hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.industry-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.industry-hero-media { }
.industry-hero-media img { width: 100%; border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }

.industry-section { padding: 60px 0; }
.industry-section.alt { background: #f0f5fa; }
.industry-section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.industry-section-head .kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.industry-section-head h2 { font-size: clamp(26px, 3.5vw, 36px); margin: 0 0 12px; color: var(--navy); }
.industry-section-head p { font-size: 17px; color: var(--muted); margin: 0; }

.industry-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .industry-features { grid-template-columns: 1fr; } }
.industry-feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.industry-feature-card .icon { font-size: 32px; margin-bottom: 14px; }
.industry-feature-card h3 { font-size: 19px; margin: 0 0 8px; color: var(--navy); }
.industry-feature-card p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

.industry-pain { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .industry-pain { grid-template-columns: 1fr; } }
.industry-pain-card { border-radius: 16px; padding: 30px; }
.industry-pain-card.problem { background: #fff5f5; border: 1px solid #ffd5d5; }
.industry-pain-card.solution { background: #f0fdf4; border: 1px solid #c6f6d5; }
.industry-pain-card h3 { font-size: 20px; margin: 0 0 14px; }
.industry-pain-card.problem h3 { color: #c53030; }
.industry-pain-card.solution h3 { color: #22543d; }
.industry-pain-card ul { list-style: none; padding: 0; margin: 0; }
.industry-pain-card li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; line-height: 1.5; }
.industry-pain-card.problem li::before { content: "✕"; position: absolute; left: 0; color: #c53030; font-weight: 800; }
.industry-pain-card.solution li::before { content: "✓"; position: absolute; left: 0; color: #22543d; font-weight: 800; }

.industry-cta-band { background: linear-gradient(135deg, var(--navy) 0%, #143C5C 100%); color: #fff; padding: 56px 0; text-align: center; }
.industry-cta-band h2 { color: #fff; font-size: clamp(26px, 3.5vw, 36px); margin: 0 0 12px; }
.industry-cta-band p { color: rgba(255,255,255,0.72); font-size: 17px; margin: 0 0 24px; }
.industry-cta-band .btn { font-size: 17px; padding: 16px 32px; }

/* ---------- ROI Commission Calculator ---------- */
.rz-calc-wrap { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.rz-calc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #2E6F9E; background: rgba(46,111,158,0.08); padding: 6px 12px; border-radius: 100px; margin-bottom: 18px; }
.rz-calc-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); display: inline-block; }
.rz-calc-title { font-size: clamp(28px, 4vw, 40px); line-height: 1.08; margin: 0 0 12px; color: var(--navy); font-weight: 800; }
.rz-calc-title .accent { color: var(--teal); }
.rz-calc-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 0 36px; line-height: 1.5; }
.rz-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .rz-calc-grid { grid-template-columns: 1fr; } }
.rz-calc-panel { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.rz-calc-panel h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 0 0 22px; font-weight: 700; }
.rz-calc-field { margin-bottom: 22px; }
.rz-calc-field:last-child { margin-bottom: 0; }
.rz-calc-field label { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.rz-calc-field label .val { font-family: 'IBM Plex Mono', monospace; font-weight: 600; color: var(--navy); font-size: 14px; }
.rz-calc-field input[type=range] { width: 100%; -webkit-appearance: none; height: 6px; border-radius: 3px; background: var(--border); outline: none; }
.rz-calc-field input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--teal); }
.rz-calc-field input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--teal); cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--teal); }
.rz-calc-result { background: linear-gradient(155deg, var(--navy) 0%, #0F2E47 100%); color: #fff; border-radius: 16px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.rz-calc-result h3 { color: rgba(255,255,255,0.6); }
.rz-calc-bars { margin: 6px 0 20px; }
.rz-calc-bar-row { margin-bottom: 16px; }
.rz-calc-bar-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: rgba(255,255,255,0.75); }
.rz-calc-bar-label b { font-family: 'IBM Plex Mono', monospace; color: #fff; font-weight: 600; }
.rz-calc-bar-track { height: 10px; background: rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }
.rz-calc-bar-fill { height: 100%; border-radius: 6px; transition: width 0.35s ease; }
.rz-calc-bar-fill.leak { background: var(--teal); }
.rz-calc-bar-fill.kept { background: #1E8C6E; }
.rz-calc-headline { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin: 0 0 6px; }
.rz-calc-big { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: clamp(34px, 5vw, 46px); line-height: 1; color: #fff; margin: 0 0 4px; }
.rz-calc-caption { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0 0 22px; }
.rz-calc-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--teal); color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; padding: 14px 20px; border-radius: 10px; transition: background 0.15s ease, transform 0.15s ease; }
.rz-calc-cta:hover { background: #E14F40; transform: translateY(-1px); }
.rz-calc-fine { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* Industry nav dropdown — wider for longer labels */
.nav-dropdown.industry-dropdown .nav-dropdown-menu { min-width: 290px; }

/* Rental type chips for ROI calculator */
.rz-chip { display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 100px; background: var(--bg); font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all 0.15s ease; }
.rz-chip:hover { border-color: var(--teal); color: var(--navy); }
.rz-chip.active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* SEO content block styling */
.industry-section .container > div[style*="max-width:820px"] p { margin: 0 0 18px; }
.industry-section .container > div[style*="max-width:820px"] p:first-child { margin-top: 24px; }
