/* InnovaLabs Co — Car Wash (Bright tropical editorial + fixed hero) */

:root {
  --bg: #fff7f0;
  --paper: #ffffff;
  --ink: #102a43;
  --muted: #486581;
  --line: #e7dccc;
  --accent: #ff6b35;
  --aqua: #2ec4b6;
  --sun: #ffcc00;
  --radius: 26px;
  --max: 1100px;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      900px 500px at 85% -10%,
      rgba(46, 196, 182, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 10% 10%,
      rgba(255, 107, 53, 0.18),
      transparent 58%
    ),
    var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo {
  width: 50px;
  height: 50px;
}
.brand strong {
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.navlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.navlinks a {
  text-decoration: none;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
}
.navlinks a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(16, 42, 67, 0.1);
}

/* HERO (fixed) */
.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 28px 0 70px; /* bottom space for wave */
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) {
  .hero {
    min-height: 72vh;
    padding-bottom: 64px;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(16, 42, 67, 0.08),
      rgba(16, 42, 67, 0.35) 55%,
      rgba(16, 42, 67, 0.44)
    ),
    radial-gradient(
      900px 520px at 18% 18%,
      rgba(255, 204, 0, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 82% 12%,
      rgba(46, 196, 182, 0.18),
      transparent 55%
    );
}
.hero-inner {
  position: relative;
  width: 100%;
}
.hero-card {
  max-width: 820px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.14);
  border: 1px solid rgba(46, 196, 182, 0.22);
  color: #0b6b62;
  font-weight: 900;
  font-size: 13px;
}
h1 {
  margin: 10px 0 8px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}
@media (max-width: 560px) {
  h1 {
    font-size: 34px;
  }
}
.lead {
  margin: 0 0 12px;
  color: rgba(16, 42, 67, 0.82);
  font-size: 16.5px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(16, 42, 67, 0.14);
  background: #fff;
  text-decoration: none;
  font-weight: 900;
}
.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--sun));
  color: #2b1d0f;
}
.btn.alt {
  background: rgba(255, 255, 255, 0.75);
}
.btn:hover {
  filter: brightness(0.98);
}

/* Wave SVG sits on bottom of hero, does NOT overlay content below */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  width: 100%;
  pointer-events: none;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Sections */
.section {
  padding: 18px 0;
}
h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0.2px;
}
h3 {
  margin: 14px 0 6px;
}
p {
  margin: 0 0 12px;
}
ul {
  margin: 0 0 12px;
  padding-left: 18px;
}
.small {
  color: var(--muted);
  font-size: 13px;
}

.block {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 42, 67, 0.1);
  padding: 16px;
}

.features {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.tile {
  border-radius: 20px;
  border: 1px dashed rgba(16, 42, 67, 0.18);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}
.tile strong {
  display: block;
  margin-bottom: 6px;
}

.figure {
  border-radius: var(--radius);
  border: 1px solid rgba(16, 42, 67, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 560px) {
  .figure img {
    height: 240px;
  }
}

.strip {
  display: grid;
  gap: 10px;
}
.strip .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 42, 67, 0.1);
}
.row .left strong {
  display: block;
}
.row .left span {
  color: var(--muted);
  font-size: 13px;
}
.row .right {
  font-weight: 1000;
  color: #0b6b62;
  white-space: nowrap;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  background: rgba(255, 255, 255, 0.88);
}
.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  text-align: left;
}
.table tr:last-child td {
  border-bottom: none;
}
.table th {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

/* Footer */
.footer {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line);
}
.footer-inner {
  padding: 18px 0;
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 780px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-direction: column;
  }
  .navlinks {
    justify-content: space-between;
  }
}
.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer a {
  color: var(--muted);
  text-decoration: none;
}
.footer a:hover {
  color: var(--ink);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-box {
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 14px;
}
.cookie-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1 1 320px;
}
.cookie-text p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  appearance: none;
  border-radius: 16px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 900;
  border: 1px solid rgba(16, 42, 67, 0.14);
  background: #fff;
  color: var(--ink);
}
.cookie-actions button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--sun));
  color: #2b1d0f;
}
.cookie-actions button:hover {
  filter: brightness(0.98);
}
