
:root {
  --blue: #0b74d1;
  --blue-dark: #075aa3;
  --navy: #06223a;
  --green: #25d366;
  --green-dark: #15904a;
  --gold: #d6a84b;
  --gold-soft: #fff7e7;
  --soft-blue: #eaf6ff;
  --soft-green: #edfff4;
  --text: #172736;
  --muted: #647483;
  --white: #ffffff;
  --border: #dcebf4;
  --shadow: 0 18px 45px rgba(6, 34, 58, 0.12);
  --shadow-soft: 0 9px 26px rgba(6, 34, 58, 0.07);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}
body.ayuma-lp { background: #fff; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
.container { width: min(1120px, 92%); margin: auto; }
.topbar {
  background: linear-gradient(90deg, var(--navy), var(--blue-dark), var(--green-dark));
  color: white;
  padding: 9px 0;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
header {
  background: rgba(255,255,255,0.96);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 5px 22px rgba(6, 34, 58, 0.08);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 22px rgba(6, 34, 58, 0.10);
}
.brand strong {
  display: block;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.15;
}
.brand span {
  display: block;
  color: var(--green-dark);
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 23px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  border: 0;
}
.btn-primary {
  background: #25d366;
  color: white;
  box-shadow: 0 12px 27px rgba(37, 211, 102, 0.30);
}
.btn-primary:hover {
  background: #1fb85a;
  transform: translateY(-1px);
}
.btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(11, 116, 209, 0.25);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-light {
  background: #ffffff;
  color: var(--blue-dark);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.hero-image {
  background: linear-gradient(180deg, #f5fbff, #ffffff);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.hero-image img {
  width: 100%;
  display: block;
}
.hero {
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.13), transparent 32%),
    radial-gradient(circle at bottom left, rgba(11, 116, 209, 0.18), transparent 36%),
    linear-gradient(180deg, #f8fcff, #ffffff);
  padding: 62px 0 50px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, var(--soft-green), var(--gold-soft));
  color: var(--green-dark);
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 16px;
  border: 1px solid rgba(37,211,102,.14);
}
h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--navy);
  letter-spacing: -1px;
}
h1 span { color: var(--green-dark); }
.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 24px;
}
.badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 7px 20px rgba(11, 116, 209, 0.07);
}
.badge strong {
  display: block;
  color: var(--blue-dark);
  font-size: 18px;
}
.badge span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.hero-card {
  background: white;
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.hero-card:before {
  content: "Premium Wash";
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(255,255,255,0.92);
  color: var(--blue-dark);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}
.hero-card img {
  border-radius: 24px;
  display: block;
  width: 100%;
}
.section { padding: 64px 0; }
.section-light { background: #f8fcff; }
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 12px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.card.featured {
  border: 2px solid rgba(37, 211, 102, .35);
  box-shadow: var(--shadow);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin-bottom: 14px;
}
.card h3 {
  color: var(--blue-dark);
  margin: 0 0 10px;
  font-size: 21px;
}
.card p { color: var(--muted); margin: 0 0 16px; }
.card ul { padding-left: 18px; margin: 0 0 18px; color: #314353; }
.price {
  display: inline-block;
  background: linear-gradient(90deg, var(--soft-blue), var(--gold-soft));
  color: var(--blue-dark);
  border-radius: 14px;
  padding: 11px 14px;
  font-weight: 900;
  margin-bottom: 16px;
}
.note-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  color: var(--muted);
}
.table-wrap {
  overflow-x: auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th { background: var(--blue); color: white; }
td.price-cell, td:last-child { color: var(--green-dark); font-weight: 900; }
.area-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.area-card {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 35%),
    linear-gradient(135deg, var(--blue), var(--green-dark));
  color: white;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.area-card h2 { margin: 0 0 12px; font-size: 34px; line-height: 1.1; color: white; }
.area-list {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.area-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.area-item:last-child { border-bottom: none; }
.area-item strong { color: var(--blue-dark); }
.area-item span { text-align: right; color: var(--muted); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 12px;
}
.step strong { display: block; color: var(--blue-dark); margin-bottom: 8px; }
.step span { color: var(--muted); font-size: 14px; }
.faq { max-width: 880px; margin: auto; }
details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
summary { cursor: pointer; font-weight: 900; color: var(--blue-dark); }
details p { margin: 12px 0 0; color: var(--muted); }
.cta-section {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--blue-dark), var(--green-dark));
  color: white;
  text-align: center;
  padding: 74px 0;
}
.cta-section h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  color: white;
}
.cta-section p {
  max-width: 780px;
  margin: 0 auto 24px;
  opacity: 0.94;
  font-size: 18px;
}
.company {
  background: #0b2337;
  color: white;
  padding: 46px 0;
}
.company-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}
.company img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: white;
  border-radius: 18px;
  padding: 8px;
}
.company h3 { margin: 12px 0 8px; font-size: 26px; color: white; }
.company p { color: rgba(255,255,255,0.78); margin: 6px 0; }
footer {
  background: #061726;
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}
.page-hero {
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.14), transparent 32%),
    linear-gradient(180deg, #f7fcff, #ffffff);
  padding: 58px 0;
}
.page-hero h1 { max-width: 850px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 820px; }
.mini-hero-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: 26px;
}
.mini-hero-card img { border-radius: 22px; width: 100%; display: block; }

@media (max-width: 920px) {
  .hero-grid, .area-box, .company-grid, .mini-hero-card { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { grid-template-columns: 1fr; }
  .nav .btn { display: none; }
}
@media (max-width: 640px) {
  .brand img { width: 56px; height: 56px; }
  .brand strong { font-size: 17px; }
  .hero { padding: 42px 0 34px; }
  .hero p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .section { padding: 46px 0; }
  .floating-wa { left: 14px; right: 14px; text-align: center; }
  .area-item { display: block; }
  .area-item span { display: block; text-align: left; margin-top: 4px; }
}
