/* Keboon Assistant V2 - cleaned CSS */
/* Repeated declarations removed; later/bottom declarations kept. */

:root {
  --cream: #fbf7eb;
  --cream-2: #f3ead7;
  --paper: #fffdf6;
  --white: #ffffff;
  --ink: #18261f;
  --muted: #68776e;
  --green-950: #062f24;
  --green-900: #0c3b2d;
  --green-800: #14513c;
  --green-700: #1f6f50;
  --green-600: #2f8b63;
  --mint: #e7f2dd;
  --amber: #f0ba59;
  --amber-soft: #fff0c9;
  --brown: #9b6b43;
  --line: rgba(6, 47, 36, 0.12);
  --shadow: 0 24px 70px rgba(6, 47, 36, 0.14);
  --shadow-soft: 0 14px 34px rgba(6, 47, 36, 0.08);
  --radius: 28px;
  --radius-lg: 42px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 8% 6%, rgba(47, 139, 99, 0.16), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(240, 186, 89, 0.18), transparent 25%),
    var(--cream);
  overflow-x: hidden;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 92px 0;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 132px;
  height: auto;
  display: block;
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(6, 47, 36, 0.1);
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--green-900);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-menu a:not(.nav-cta) {
  opacity: 0.76;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-menu a:not(.nav-cta):hover {
  opacity: 1;
  color: var(--green-700);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--cream);
  box-shadow: 0 14px 28px rgba(6, 47, 36, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--green-950);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 780px;
  color: var(--green-950);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  line-height: 1.18;
}

p {
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  font-size: 1.15rem;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p,
.section-copy p {
  font-size: 1.04rem;
}

.hero-actions,
.pricing-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.toggle-btn:hover {
  transform: translateY(-2px);
}

.btn.primary,
.toggle-btn.active {
  background: var(--green-900);
  color: var(--cream);
  box-shadow: 0 16px 32px rgba(6, 47, 36, 0.22);
}

.btn.secondary,
.toggle-btn {
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
  border: 1px solid var(--line);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 86px 0 72px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 40px;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(47, 139, 99, 0.1);
  filter: blur(8px);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: var(--green-950);
  margin-bottom: 4px;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: 540px;
  max-width: 100%;
  min-height: 610px;
}

.photo-frame {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo {
  width: 500px;
  height: 590px;
  border-radius: 42px;
  transform: rotate(1.5deg);
}

.price-chip {
  position: absolute;
  z-index: 3;
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(6, 47, 36, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 46px rgba(6, 47, 36, 0.16);
  backdrop-filter: blur(10px);
}

.price-chip small,
.price-chip strong {
  display: block;
}

.price-chip small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-chip strong {
  color: var(--green-950);
  font-size: 1.2rem;
}

.chip-one {
  left: -20px;
  bottom: 88px;
  transform: rotate(-3deg);
}

.chip-two {
  right: 8px;
  top: 126px;
  transform: rotate(3deg);
}

.quick-strip {
  background: var(--green-950);
  color: var(--cream);
}

.quick-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 0;
}

.quick-strip-inner div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(251, 247, 235, 0.88);
  font-weight: 800;
}

.quick-strip svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.1)),
    var(--cream-2);
}

.service-layout,
.keboon-layout,
.faq-layout,
.quote-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(var(--green-600), var(--amber));
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.timeline article span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--green-900);
  color: var(--cream);
  font-weight: 900;
}

.timeline article h3,
.timeline article p {
  grid-column: 2;
}

.timeline article h3 {
  margin: 4px 0 6px;
}

.timeline article p {
  margin: 0;
}

.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(240, 186, 89, 0.14);
  filter: blur(10px);
}

.pricing-section > .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.price-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(47, 139, 99, 0.08);
}

.price-card.featured {
  background: var(--green-950);
  color: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured li,
.price-card.featured p {
  color: var(--cream);
}

.price-card.featured .tag {
  background: rgba(240, 186, 89, 0.18);
  color: var(--amber);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 14px 0 18px;
  color: var(--green-950);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--green-600);
}

.price-card.featured li::before {
  background: var(--amber);
}

.options-section {
  background: var(--cream-2);
}

.options-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.option-card::before {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.option-card.normal {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
}

.option-card.hydro {
  background: linear-gradient(145deg, #12496b, var(--green-700));
}

.option-card h2,
.option-card p {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.option-card p {
  margin-bottom: 0;
  color: rgba(251, 247, 235, 0.78);
}

.option-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(251, 247, 235, 0.14);
}

.option-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.middle-photo {
  grid-column: auto !important;
  order: 0 !important;
}

.keboon-section {
  background: var(--green-950);
  color: var(--cream);
}

.keboon-card h2,
.keboon-card p {
  color: var(--cream);
}

.keboon-card p {
  color: rgba(251, 247, 235, 0.74);
}

.keboon-section .eyebrow {
  color: var(--amber);
}

.flow {
  display: grid;
  grid-template-columns: 1fr 38px 1fr 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(251, 247, 235, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.flow div {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(251, 247, 235, 0.1);
  color: var(--cream);
  font-weight: 900;
  text-align: center;
}

.flow span {
  position: relative;
  height: 2px;
  background: rgba(251, 247, 235, 0.4);
}

.flow span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(251, 247, 235, 0.72);
  border-right: 2px solid rgba(251, 247, 235, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--green-950);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.active svg {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-panel.open {
  max-height: 180px;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px;
}

.quote-section {
  padding: 92px 0;
  background: radial-gradient(circle at 20% 10%, rgba(240, 186, 89, 0.18), transparent 28%),
    linear-gradient(145deg, var(--green-900), var(--green-950));
}

.quote-layout {
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
}

input:focus,
select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(47, 139, 99, 0.12);
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.footer {
  padding: 34px 0;
  background: var(--green-950);
  color: var(--cream);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
}

.footer .brand span {
  border-color: rgba(251, 247, 235, 0.18);
  background: rgba(251, 247, 235, 0.08);
  color: var(--cream);
}

.footer p {
  margin: 0;
  color: rgba(251, 247, 235, 0.66);
}

.footer a:last-child {
  color: var(--amber);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 190ms;
}

@media (max-width: 980px) {
  .section,
  .quote-section {
    padding: 74px 0;
  }

  .hero-media {
    width: 100%;
    min-height: auto;
  }

  .hero-photo {
    width: 100%;
    height: 540px;
  }

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

  .options-layout {
    grid-template-columns: 1fr 1fr;
  }

  .middle-photo {
    grid-column: 1 / -1;
    order: -1;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(251, 247, 235, 0.96);
  }

  .nav {
    min-height: 68px;
  }

  .brand-logo {
    width: 110px;
  }

  .brand span {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251, 247, 235, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.52);
  }

  .nav-menu .nav-cta {
    background: var(--green-900);
  }

  h1 {
    letter-spacing: -0.07em;
  }

  .hero-actions,
  .pricing-toggle {
    grid-template-columns: 1fr;
  }

  .hero-points {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hero-points div {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .photo-frame img {
    border-radius: inherit;
  }

  .chip-one {
    left: 12px;
    bottom: -20px;
    transform: none;
  }

  .chip-two {
    right: 12px;
    top: auto;
    bottom: 46px;
    transform: none;
  }

  .quick-strip-inner {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .quick-strip-inner div {
    scroll-snap-align: start;
  }

  .timeline {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .timeline article {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .pricing-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .price-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .hero-points::-webkit-scrollbar,
  .quick-strip-inner::-webkit-scrollbar,
  .timeline::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar {
    height: 8px;
  }

  .hero-points::-webkit-scrollbar-thumb,
  .quick-strip-inner::-webkit-scrollbar-thumb,
  .timeline::-webkit-scrollbar-thumb,
  .pricing-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(6, 47, 36, 0.16);
  }

  .quote-layout {
    gap: 26px;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .service-layout,
  .keboon-layout,
  .faq-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 26px);
  }

  .section,
  .quote-section {
    padding: 56px 0;
  }

  .hero {
    padding: 52px 0 58px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.03;
  }

  .hero-text,
  .section-head p,
  .section-copy p {
    font-size: 0.98rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-media {
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .hero-photo {
    grid-column: 1 / -1;
    width: 100%;
    height: 360px;
    border-radius: 30px;
    transform: none;
  }

  .price-chip {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    transform: none;
  }

  .price-chip small {
    font-size: 0.72rem;
  }

  .price-chip strong {
    font-size: 1rem;
  }

  .hero-actions,
  .pricing-toggle {
    display: flex;
    flex-wrap: wrap;
  }

  .btn,
  .toggle-btn {
    width: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }

  .hero-points div {
    min-width: 0;
    padding: 14px;
  }

  .hero-points strong {
    font-size: 0.86rem;
  }

  .hero-points span {
    font-size: 0.74rem;
  }

  .quick-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    gap: 8px;
    padding: 12px 0;
  }

  .quick-strip-inner div {
    min-width: 0;
    padding: 8px 6px;
    border-radius: 14px;
    background: rgba(251, 247, 235, 0.08);
    font-size: 0.7rem;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }

  .timeline::before {
    display: block;
    left: 24px;
    top: 22px;
    bottom: 22px;
  }

  .timeline article {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .timeline article span {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    margin-bottom: 0;
    font-size: 0.82rem;
  }

  .timeline article h3 {
    grid-column: 2;
    margin: 0 0 4px;
    font-size: 0.95rem;
  }

  .timeline article p {
    grid-column: 2;
    margin: 0;
    font-size: 0.78rem;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }

  .price-card {
    min-width: 0;
    padding: 14px;
    border-radius: 20px;
  }

  .price-card.featured {
    transform: translateY(-3px);
  }

  .tag {
    font-size: 0.58rem;
    padding: 5px 7px;
    margin-bottom: 10px;
  }

  .price-card h3 {
    font-size: 0.84rem;
  }

  .price-card p {
    font-size: 0.68rem;
  }

  .price {
    font-size: 1.08rem;
    margin: 8px 0 10px;
  }

  .price-card ul {
    gap: 6px;
    margin-top: 10px;
  }

  .price-card li {
    gap: 6px;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .price-card li::before {
    width: 5px;
    height: 5px;
    margin-top: 7px;
  }

  .keboon-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flow {
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    gap: 8px;
    padding: 14px;
  }

  .flow div {
    min-height: 72px;
    padding: 9px;
    border-radius: 16px;
    font-size: 0.7rem;
  }

  .flow span {
    width: auto;
    height: 2px;
    margin: 0;
  }

  .flow span::after {
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(45deg);
  }

  .faq-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-item {
    padding: 16px;
    font-size: 0.88rem;
  }

  .faq-panel p {
    padding: 0 16px 16px;
    font-size: 0.82rem;
  }

  .quote-layout {
    padding: 24px;
    border-radius: 28px;
  }

  .lead-form {
    padding: 16px;
    gap: 10px;
  }

  .lead-form label {
    font-size: 0.82rem;
  }

  input,
  select {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 22px);
  }

  .brand-logo {
    width: 96px;
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-photo {
    height: 320px;
  }

  .pricing-grid {
    gap: 7px;
  }

  .price-card {
    padding: 11px;
    border-radius: 18px;
  }

  .price-card h3 {
    font-size: 0.76rem;
  }

  .price-card p,
  .price-card li {
    font-size: 0.58rem;
  }

  .price {
    font-size: 0.92rem;
  }

  .flow {
    grid-template-columns: 1fr 18px 1fr 18px 1fr;
    padding: 10px;
  }

  .flow div {
    min-height: 60px;
    padding: 7px;
    border-radius: 13px;
    font-size: 0.58rem;
  }
}

@media (max-width: 760px) {
  .quick-strip-inner div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    line-height: 1.2;
  }

  .quick-strip-inner div span {
    display: block;
    max-width: 80px;
  }

  .quick-strip svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 430px) {
  .quick-strip-inner div {
    padding: 8px 4px;
    font-size: 0.62rem;
  }

  .quick-strip-inner div span {
    max-width: 68px;
  }

  .quick-strip svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 760px) {
  .options-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .option-card {
    min-height: 230px;
    padding: 14px;
    border-radius: 22px;
  }

  .middle-photo {
    height: 230px;
    order: initial;
    border-radius: 22px;
  }

  .option-card h2 {
    font-size: 1rem;
    line-height: 1.05;
  }

  .option-card p {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .option-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    top: 14px;
    left: 14px;
  }

  .option-icon svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 430px) {
  .options-layout {
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 6px;
  }

  .option-card {
    min-height: 205px;
    padding: 11px;
    border-radius: 18px;
  }

  .middle-photo {
    height: 205px;
    border-radius: 18px;
  }

  .option-card h2 {
    font-size: 0.82rem;
  }

  .option-card p {
    font-size: 0.55rem;
    line-height: 1.3;
  }

  .option-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    top: 11px;
    left: 11px;
  }

  .option-icon svg {
    width: 18px;
    height: 18px;
  }
}

.pricing-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(6, 47, 36, 0.06);
}

.pricing-toggle .toggle-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green-900);
  box-shadow: none;
  padding: 0 12px;
  font-size: 0.92rem;
  font-weight: 900;
}

.pricing-toggle .toggle-btn:hover {
  transform: none;
}

.pricing-toggle .toggle-btn.active {
  background: var(--green-900);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(6, 47, 36, 0.18);
}

@media (max-width: 760px) {
  .pricing-toggle {
    width: 100%;
    margin-top: 22px;
    border-radius: 18px;
    padding: 4px;
  }

  .pricing-toggle .toggle-btn {
    min-height: 42px;
    border-radius: 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .pricing-toggle .toggle-btn {
    font-size: 0.76rem;
    padding: 0 8px;
  }
}
/* Form updates: more fields and message box */
.lead-form textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}

.lead-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(47, 139, 99, 0.12);
}

@media (min-width: 761px) {
  .lead-form {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form .form-full,
  .lead-form .btn,
  .lead-form .form-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .lead-form textarea {
    text-align: center;
  }

  .lead-form textarea::placeholder {
    text-align: center;
  }
}
.back-link {
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 900;
}

.back-link::before {
  content: "← ";
}