/* solarcarwash.com / site.css */
/* ABC Solar Incorporated — Solar Car Wash */

:root {
  --ink: #101820;
  --ink-soft: #314252;
  --muted: #6b7a86;

  --paper: #ffffff;
  --wash: #f4fbff;
  --foam: #eaf7ff;
  --mist: #d7f0ff;

  --solar: #ffb703;
  --solar-deep: #fb8500;
  --water: #0096c7;
  --water-deep: #006d92;
  --green: #2a9d8f;

  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(0, 52, 89, 0.18);
  --shadow-soft: 0 14px 34px rgba(0, 52, 89, 0.12);

  --radius: 24px;
  --radius-lg: 36px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 150, 199, 0.16), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 46%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1.1rem;
}

strong {
  color: var(--ink);
}

.container,
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 28%, #fff7cb 0 18%, transparent 19%),
    linear-gradient(135deg, var(--solar), var(--water));
  box-shadow: 0 12px 26px rgba(0, 150, 199, 0.22);
  flex: 0 0 auto;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--foam);
  color: var(--water-deep);
}

.nav-cta,
.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--solar), var(--solar-deep));
  color: #1c1500;
  font-weight: 950;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(251, 133, 0, 0.25);
  border: 0;
  cursor: pointer;
}

.btn:hover,
.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(251, 133, 0, 0.31);
}

.btn.secondary,
.button.secondary {
  background: #ffffff;
  color: var(--water-deep);
  border: 1px solid rgba(0, 150, 199, 0.25);
  box-shadow: 0 10px 26px rgba(0, 52, 89, 0.08);
}

.btn.dark,
.button.dark {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 10vw, 132px) 0 clamp(58px, 8vw, 100px);
  background:
    linear-gradient(120deg, rgba(0, 30, 48, 0.78), rgba(0, 109, 146, 0.48)),
    var(--hero-image, linear-gradient(135deg, #003049, #0096c7));
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 183, 3, 0.42), transparent 21rem),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, transparent 0%, rgba(0, 18, 32, 0.38) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -92px;
  height: 170px;
  z-index: -1;
  background: #ffffff;
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff6d8;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow.dark {
  background: rgba(0, 150, 199, 0.1);
  border-color: rgba(0, 150, 199, 0.18);
  color: var(--water-deep);
}

.hero h1,
.page-title {
  margin: 0 0 20px;
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 1000;
}

.hero h1 span,
.text-gradient {
  background: linear-gradient(135deg, #ffffff, #d7f0ff 38%, #ffd166 72%, #ffb703);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede,
.lede {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.13rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  font-weight: 600;
}

.lede.dark {
  color: var(--ink-soft);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
}

.hero-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  font-size: 0.98rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
}

.hero-card h2,
.hero-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-card p {
  color: var(--ink-soft);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 22px;
}

.metric {
  padding: 16px 13px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fcff, #ffffff);
  border: 1px solid var(--line);
}

.metric b {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.section.tight {
  padding: clamp(42px, 6vw, 76px) 0;
}

.section.alt {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 183, 3, 0.18), transparent 22rem),
    linear-gradient(180deg, #f4fbff, #ffffff);
}

.section.water {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 22rem),
    linear-gradient(135deg, var(--water-deep), #003049);
  color: #ffffff;
}

.section-header {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--water-deep);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section.water .kicker {
  color: #ffd166;
}

h1,
h2,
h3,
h4 {
  color: inherit;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2.15rem, 5.2vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 1000;
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.35vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 950;
}

h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.section-header p,
.copy-lg {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.6;
}

.section.water .section-header p,
.section.water p {
  color: rgba(255, 255, 255, 0.82);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 150, 199, 0.12), transparent 15rem),
    radial-gradient(circle at 100% 100%, rgba(255, 183, 3, 0.14), transparent 13rem);
  pointer-events: none;
}

.card > * {
  position: relative;
}

.card h3 {
  color: var(--ink);
}

.card p {
  color: var(--ink-soft);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--foam), #fff6d8);
  color: var(--water-deep);
  font-weight: 1000;
  font-size: 1.35rem;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.feature.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(0, 150, 199, 0.28), rgba(255, 183, 3, 0.18)),
    var(--feature-image, linear-gradient(135deg, #eaf7ff, #ffffff));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 150, 199, 0.18);
}

.feature-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-panel p {
  color: var(--ink-soft);
}

.check-list,
.clean-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.clean-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list li::before,
.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--foam);
  color: var(--water-deep);
  font-size: 0.82rem;
  font-weight: 1000;
}

.band {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.28), transparent 16rem),
    linear-gradient(135deg, var(--water), var(--water-deep));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.band h2,
.band h3 {
  color: #ffffff;
}

.band p {
  color: rgba(255, 255, 255, 0.84);
}

.band .btn.secondary {
  background: rgba(255, 255, 255, 0.96);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat {
  padding: clamp(20px, 3vw, 30px);
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 900;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.step::before {
  content: counter(step);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--solar), var(--water));
  color: #ffffff;
  font-weight: 1000;
  font-size: 1.55rem;
  box-shadow: 0 16px 26px rgba(0, 150, 199, 0.18);
}

.step p {
  color: var(--ink-soft);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item,
details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 10px 22px rgba(0, 52, 89, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -0.02em;
}

details p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--foam);
  color: var(--water-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.form-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(0, 150, 199, 0.22);
  border-radius: 15px;
  background: #fbfeff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(255, 183, 3, 0.28);
  border-color: var(--water);
}

.site-footer {
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 150, 199, 0.2), transparent 21rem),
    linear-gradient(180deg, #07131c, #101820);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr;
  gap: 28px;
}

.footer-title {
  color: #ffffff;
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  font-weight: 1000;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #ffffff;
}

.abc-block {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.abc-logo {
  width: 180px;
  height: auto;
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--water-deep);
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 183, 3, 0.18), transparent 22rem),
    linear-gradient(135deg, #f4fbff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 1000;
}

.page-hero p {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  font-weight: 600;
}

.callout {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 183, 3, 0.18), rgba(0, 150, 199, 0.14)),
    #ffffff;
  border: 1px solid rgba(0, 150, 199, 0.18);
}

.callout h3 {
  color: var(--ink);
}

.callout p {
  color: var(--ink-soft);
}

.notice {
  padding: 16px 18px;
  border-left: 5px solid var(--solar);
  border-radius: 16px;
  background: #fff8df;
  color: #4d3900;
  font-weight: 750;
}

.sitemap-list {
  columns: 2;
  column-gap: 36px;
  padding: 0;
  list-style: none;
}

.sitemap-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.sitemap-list a {
  color: var(--water-deep);
  font-weight: 850;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container,
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.9rem, 18vw, 4.4rem);
  }

  .hero-grid {
    gap: 28px;
  }

  .metric-row,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 300px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

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

  .footer-bottom {
    display: grid;
  }

  .sitemap-list {
    columns: 1;
  }
}

@media print {
  .site-header,
  .nav,
  .hero-actions,
  .actions,
  .site-footer {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .hero,
  .page-hero,
  .section {
    padding: 24px 0;
    background: #ffffff !important;
    color: #000000;
  }

  .card,
  .feature-panel,
  .form-card,
  .band {
    box-shadow: none;
    border: 1px solid #cccccc;
  }
}
