:root {
  --bg: #f7f6f3;
  --bg-muted: #efede8;
  --ink: #0d0d0d;
  --ink-soft: #3d3d3d;
  --ink-muted: #6b6b6b;
  --line: rgba(13, 13, 13, 0.08);
  --line-strong: rgba(13, 13, 13, 0.14);
  --accent: #0d0d0d;
  --accent-contrast: #f7f6f3;
  --splash: #ea580c;
  --splash-deep: #c2410c;
  --splash-soft: rgba(234, 88, 12, 0.14);
  --violet: #6366f1;
  --violet-soft: rgba(99, 102, 241, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.0625rem);
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.site-header .logo {
  margin-right: auto;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.logo--footer {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.nav-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out);
}

.nav-toggle__bar:first-child {
  top: 16px;
}

.nav-toggle__bar:nth-child(2) {
  top: 24px;
}

body.nav-open .nav-toggle__bar:first-child {
  top: 21px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.75rem 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--bg) 96%, white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.08);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
  z-index: 40;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.site-nav a:first-of-type {
  border-top: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--splash-soft);
}

body.nav-open .site-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }

  .site-nav a {
    padding: 0;
    border: none;
    color: var(--ink-muted);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: transparent;
    color: var(--ink);
  }
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.5);
}

.lang-switch__btn {
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.lang-switch__btn:hover {
  color: var(--ink);
}

.lang-switch__btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--splash) 0%, var(--violet) 100%);
  color: #fff;
  border: none;
}

.hero {
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1rem, 3.5vw, 2.5rem) clamp(3rem, 10vw, 6rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, var(--violet-soft), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, var(--splash-soft), transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 13, 13, 0.05), transparent),
    var(--bg);
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__content {
  min-width: 0;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.hero__visual {
  position: relative;
  isolation: isolate;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hero__visual {
    margin: 0;
    max-width: none;
  }
}

.hero__blob {
  position: absolute;
  inset: -8% -6% auto -10%;
  height: 70%;
  background: linear-gradient(135deg, var(--splash), var(--violet));
  opacity: 0.35;
  filter: blur(40px);
  border-radius: 40% 60% 55% 45%;
  z-index: -1;
}

.hero__img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(13, 13, 13, 0.12);
  border: 1px solid var(--line-strong);
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.35rem, 1.5vw, 0.65rem);
  padding: 0 clamp(1rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 2.25rem);
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 559px) {
  .visual-strip {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .visual-strip__item:nth-child(n + 2) {
    display: none;
  }
}

.visual-strip__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 30px rgba(13, 13, 13, 0.06);
}

.visual-strip__item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw + 0.5rem, 4.25rem);
  max-width: 20ch;
  margin: 0 0 1.5rem;
  font-weight: 800;
}

.hero__lead {
  max-width: 52ch;
  margin: 0 0 2.5rem;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--ink-muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--splash-deep) 0%, var(--splash) 45%, var(--violet) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.28);
}

.btn--primary:hover {
  filter: brightness(1.06);
  border-color: transparent;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.btn--large {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.section--tight {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.section--muted {
  background: var(--bg-muted);
}

.section--dark {
  background: var(--ink);
  color: rgba(247, 246, 243, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .section__heading,
.section--dark .section__lead,
.section--dark h3 {
  color: #f7f6f3;
}

.section--dark .section__intro {
  color: rgba(247, 246, 243, 0.7);
}

.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 720px;
}

.section__split {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (min-width: 880px) {
  .section__split {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
    align-items: center;
  }

}

.section__figure {
  margin: 0;
}

.section__photo {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  box-shadow: 0 16px 48px rgba(13, 13, 13, 0.08);
}

.section__figure--rounded .section__photo {
  border-radius: var(--radius-lg);
}

.section--accent-edge {
  position: relative;
  overflow: hidden;
}

.section--accent-edge::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle at 70% 30%, rgba(234, 88, 12, 0.2), transparent 65%);
  pointer-events: none;
}

.section__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 1.25rem;
  font-weight: 800;
}

.section__lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  max-width: 42ch;
  margin: 0 0 1.5rem;
  color: rgba(247, 246, 243, 0.88);
}

.section__intro {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.section--dark .section__intro {
  color: rgba(247, 246, 243, 0.72);
}

.section__outro {
  margin: 1.5rem 0 0;
  max-width: 52ch;
  font-weight: 500;
  color: var(--ink-soft);
}

.section--dark .section__outro {
  color: rgba(247, 246, 243, 0.78);
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 58ch;
}

.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.35;
}

.section--dark .bullet-list li::before {
  background: #f7f6f3;
}

.bullet-list--light li::before {
  background: #f7f6f3;
  opacity: 0.45;
}

.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card--featured {
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--splash);
  box-shadow: 0 22px 55px rgba(99, 102, 241, 0.1);
  background: #fff;
}

.card__badge {
  display: inline-block;
  width: fit-content;
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--splash), var(--violet));
  color: #fff;
}

.card__pricing {
  margin: 0 0 1rem;
  padding: 0.85rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.card__price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.45rem;
  font-size: 0.875rem;
}

.card__price-line:last-child {
  margin-bottom: 0;
}

.card__price-label {
  color: var(--ink-muted);
}

.card__price-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
}

.card__price-value--accent {
  background: linear-gradient(135deg, var(--splash-deep), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.packages-footnote {
  margin: 1.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  max-width: 70ch;
}

.card__care-hint {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
}

.card__care-hint a {
  color: var(--splash-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 88, 12, 0.35);
}

.card__care-hint a:hover {
  border-bottom-color: var(--splash-deep);
}

.maint-exempt {
  margin: 1rem 0 0;
  padding: 0.85rem 1.1rem;
  max-width: 68ch;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-left: 3px solid var(--splash);
  border-radius: var(--radius-sm);
}

.care-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 900px) {
  .care-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.care-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.88);
}

.care-card--highlight {
  border-left: 4px solid var(--splash);
  box-shadow: 0 14px 40px rgba(13, 13, 13, 0.07);
}

.care-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.care-card__price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.care-card__period {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-left: 0.15rem;
}

.care-card__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.52;
  color: var(--ink-soft);
  white-space: pre-line;
}

.card__title {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.card__tagline {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  flex-grow: 0;
}

.card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  flex-grow: 1;
}

.card__list li {
  padding: 0.4rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.card__list li:first-child {
  border-top: none;
  padding-top: 0;
}

.card__list li.card__list-lead {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  padding-top: 0.15rem;
  padding-bottom: 0.35rem;
}

.contact-outro {
  margin: 1.75rem 0 0;
  text-align: center;
}

.card__meta {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.why-grid {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-grid li {
  border-top: 1px solid var(--line-strong);
  padding-top: 1rem;
}

.why-grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.process-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: clamp(1.5rem, 4vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 800px) {
  .process-steps li:nth-last-child(-n + 2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.process-steps__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.process-steps h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.process-steps p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

.section--trust .trust__text {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 0 0 1rem;
  line-height: 1.5;
  color: rgba(247, 246, 243, 0.85);
}

.cta-final {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(234, 88, 12, 0.08), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 100%, rgba(99, 102, 241, 0.06), transparent 50%),
    var(--bg);
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(239, 237, 232, 0.65));
}

.section__inner--contact {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.contact-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ink);
}

.contact-intro__lead {
  margin: 0 auto;
  max-width: 42ch;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  color: var(--ink-muted);
  line-height: 1.55;
}

.quote-form-card {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.25rem);
  background: color-mix(in srgb, #fff 92%, var(--bg));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 24px 48px -24px rgba(13, 13, 13, 0.12),
    0 8px 24px -12px rgba(13, 13, 13, 0.06);
}

.quote-form-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.quote-form-card__hint {
  margin: 0 0 1.35rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.quote-form {
  position: relative;
  margin: 0;
  max-width: none;
}

.quote-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quote-form__grid {
  display: grid;
  gap: 1.1rem 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .quote-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form__field--full {
    grid-column: 1 / -1;
  }
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.quote-form__field--block {
  margin-top: 1.1rem;
}

.quote-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

.quote-form__req {
  color: var(--splash-deep);
  font-weight: 700;
}

.quote-form__input,
.quote-form__textarea {
  font: inherit;
  font-size: 0.9375rem;
  line-height: 1.45;
  padding: 0.8rem 1rem;
  min-height: 2.875rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition:
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.quote-form__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.65rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.15rem;
}

.quote-form__select option {
  color: var(--ink);
  background: #fff;
}

.quote-form__input::placeholder,
.quote-form__textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.85;
}

.quote-form__input:hover,
.quote-form__textarea:hover {
  border-color: color-mix(in srgb, var(--ink) 18%, var(--line-strong));
}

.quote-form__input:focus,
.quote-form__textarea:focus,
.quote-form__select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--violet) 55%, var(--line-strong));
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.quote-form__textarea {
  resize: vertical;
  min-height: 9.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.quote-form__status {
  margin: 1.15rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.45;
}

.quote-form__status--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #166534;
}

.quote-form__status--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

.quote-form__status--warn {
  background: rgba(234, 88, 12, 0.09);
  border: 1px solid rgba(234, 88, 12, 0.28);
  color: #9a3412;
}

.quote-form__actions {
  margin-top: 1.5rem;
}

.quote-form__submit {
  width: 100%;
  border-radius: var(--radius-md);
  min-height: 3.1rem;
}

.quote-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  background: var(--bg-muted);
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
