@import "./fonts.css";

:root {
  color-scheme: light;
  --bg: hsl(36 40% 94%);
  --bg-soft: hsl(36 35% 91%);
  --card: hsl(36 60% 98%);
  --text: hsl(30 18% 9%);
  --muted: hsl(30 10% 42%);
  --subtle: hsl(30 9% 62%);
  --line: hsl(30 15% 85%);
  --primary: hsl(30 18% 9%);
  --primary-soft: hsl(36 30% 90%);
  --success: hsl(140 45% 38%);
  --radius: 6px;
  --shadow: 0 28px 60px -34px hsl(30 18% 9% / 0.35);
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(hsl(30 18% 9% / 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 24px 24px, auto;
  color: var(--text);
  font: 400 17px/1.4 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

#root {
  width: 100%;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  background: hsl(36 40% 94% / 0.82);
  border-bottom: 1px solid hsl(30 15% 85% / 0.65);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--text);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 28px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn svg {
  width: 18px;
  height: 18px;
}

.btn.small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 14px;
}

.btn.primary {
  background: var(--primary);
  color: var(--card);
  box-shadow: 0 16px 30px -18px hsl(30 18% 9% / 0.55);
}

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

.btn.ghost:hover {
  background: var(--card);
}

.btn.invert {
  background: var(--card);
  color: var(--text);
}

.muted-btn {
  background: var(--primary-soft) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}

.section-open {
  padding: 144px 0 116px;
}

.section {
  padding: 96px 0;
}

.section.divided {
  border-top: 1px solid hsl(30 15% 85% / 0.6);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.hero-copy h1,
.section-head h2,
.whom-grid h2,
.team-grid h2,
.cta-card h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin-top: 24px;
  max-width: 640px;
  font-size: clamp(48px, 5.2vw, 68px);
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 31px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: hsl(36 60% 98% / 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.badge span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: hsl(18 80% 62%);
}

.label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.muted {
  color: var(--subtle);
}

.hero-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding-inline: 12px;
  font-size: 15px;
}

.hero-actions .btn svg {
  width: 16px;
  height: 16px;
}

.stats {
  margin-top: 32px;
  display: flex;
  align-items: stretch;
}

.stats div {
  min-width: 128px;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--subtle);
  font-size: 12px;
  text-transform: uppercase;
}

.booking-demo {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.booking-demo::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, hsl(30 18% 9% / 0.04), transparent 62%);
}

.demo-card,
.card,
.link-panel,
.faq-item,
.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.demo-card {
  padding: 24px;
  box-shadow: var(--shadow);
}

.demo-title strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.date-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.date-pill,
.slot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--text);
}

.date-pill {
  height: 70px;
  padding: 7px 4px;
}

.date-pill span,
.date-pill em {
  display: block;
  color: var(--subtle);
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-pill strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.date-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--card);
}

.date-pill.active span,
.date-pill.active em {
  color: hsl(36 60% 98% / 0.65);
}

.slot-head {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.slots {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.slot {
  height: 48px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.slot:not(.taken):hover,
.slot.selected {
  border-color: var(--primary);
}

.slot.selected {
  background: var(--primary);
  color: var(--card);
}

.slot.taken {
  color: var(--subtle);
  opacity: 0.42;
  text-decoration: line-through;
}

.demo-submit {
  width: 100%;
  margin-top: 22px;
  flex-direction: column;
  gap: 3px;
  background: hsl(30 3% 64%) !important;
  box-shadow: 0 8px 14px -12px hsl(30 18% 9% / 0.42) !important;
}

.demo-submit.ready {
  background: var(--primary) !important;
}

.demo-submit span {
  color: hsl(36 60% 98% / 0.72);
  font-size: 12px;
}

.demo-note {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 0;
  overflow: hidden;
  color: var(--subtle);
  font-size: 12px;
  opacity: 0;
  transition: height 180ms ease, opacity 180ms ease, margin 180ms ease;
}

.demo-note.show {
  height: 20px;
  margin-top: 12px;
  opacity: 1;
}

.demo-note svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.demo-foot {
  margin: 12px 0 0;
  color: hsl(30 9% 72%);
  font-size: 12px;
}

.section-head {
  max-width: 720px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.two-col {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.section-head h2,
.whom-grid h2,
.team-grid h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 48px);
}

.section-head p,
.whom-grid p,
.feature-card p {
  color: var(--muted);
}

.section-head p {
  max-width: 610px;
  margin: 18px 0 0;
}

.feature-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  padding: 28px;
}

.icon-box {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--card);
}

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

.feature-card h3 {
  margin: 22px 0 0;
  font-size: 17px;
}

.feature-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.link-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
}

.link-builder {
  padding: 36px;
  border-right: 1px solid var(--line);
}

.domain-field {
  margin-top: 14px;
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.domain-field input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding-inline: 18px;
  font-weight: 800;
  line-height: 1;
}

.domain-field span {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding-inline: 16px;
  border-left: 1px solid var(--line);
  background: var(--primary-soft);
  color: var(--subtle);
  font-size: 14px;
  font-weight: 700;
}

.domain-check {
  width: 100%;
  margin: 12px 0;
  display: grid;
}

.domain-check-btn {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--card);
  padding: 0 16px;
  font-weight: 800;
  transition: transform 160ms ease, opacity 160ms ease;
}

.domain-check-result {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  font-weight: 850;
  text-align: center;
}

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

.domain-check-btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.domain-check-btn svg {
  width: 17px;
  height: 17px;
}

.domain-check-result.available {
  border-color: hsl(140 45% 38% / 0.28);
  background: hsl(140 45% 38% / 0.12);
  color: hsl(140 45% 30%);
}

.domain-check-result.taken,
.domain-check-result.error {
  border-color: hsl(44 78% 48% / 0.38);
  background: hsl(44 88% 58% / 0.18);
  color: hsl(36 55% 31%);
}

.link-benefits {
  display: grid;
  gap: 22px;
  padding: 36px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.mini-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--primary-soft);
}

.mini-icon svg {
  width: 15px;
  height: 15px;
}

.benefit strong {
  display: block;
  font-size: 16px;
}

.benefit p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.whom-grid {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.whom-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.whom-list article {
  min-height: 112px;
  padding: 24px;
  border: 1px solid hsl(30 15% 85% / 0.72);
  border-radius: var(--radius);
  background: hsl(36 60% 98% / 0.55);
}

.whom-list strong,
.whom-list span {
  display: block;
}

.whom-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 96px;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-list svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 3px;
  border-radius: 3px;
  background: var(--primary-soft);
}

.check-list strong,
.check-list em {
  display: block;
  font-style: normal;
}

.check-list em {
  color: var(--muted);
  font-size: 14px;
}

.phone-wrap {
  display: flex;
  justify-content: flex-end;
}

.phone {
  width: min(100%, 320px);
  height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 3px solid hsl(30 18% 9% / 0.2);
  border-radius: 28px;
  background: var(--bg);
  box-shadow: 0 40px 80px -30px hsl(30 18% 9% / 0.3);
}

.phone-top {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background: var(--card);
  border-bottom: 1px solid hsl(30 15% 85% / 0.55);
  font-size: 11px;
  font-weight: 800;
}

.phone-top i {
  width: 64px;
  height: 12px;
  border-radius: 999px;
  background: hsl(30 18% 9% / 0.1);
}

.phone-top b {
  width: 18px;
  height: 10px;
  border-radius: 2px;
  background: hsl(30 18% 9% / 0.28);
}

.phone-head {
  padding: 14px 16px 12px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.phone-head strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}

.phone-days {
  margin-top: 12px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.phone-days button {
  flex: 0 0 auto;
  min-width: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 6px 8px;
  color: var(--text);
}

.phone-days span {
  display: block;
  color: var(--subtle);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.phone-days strong {
  margin: 0;
  font-size: 14px;
}

.phone-days .active {
  background: var(--primary);
  color: var(--card);
  border-color: var(--primary);
}

.phone-days .active span {
  color: hsl(36 60% 98% / 0.65);
}

.phone-body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.phone-list button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 16px;
  color: var(--text);
  text-align: left;
}

.phone-list .time {
  width: 40px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.phone-list strong,
.phone-list em {
  display: block;
  font-style: normal;
}

.phone-list strong {
  font-size: 13px;
}

.phone-list em {
  color: var(--subtle);
  font-size: 11px;
}

.phone-list svg {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--subtle);
}

.empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: hsl(30 10% 40% / 0.45);
  font-size: 13px;
}

.empty span::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: var(--radius);
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--card);
}

.phone-actions .btn {
  padding-inline: 6px;
  font-size: 13px;
}

.phone-actions svg {
  width: 15px;
  height: 15px;
}

.phone-form {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.form-head button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary-soft);
}

.form-head svg {
  width: 15px;
  height: 15px;
}

.phone-form input,
.phone-form select {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 0 12px;
  color: var(--text);
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-row label {
  display: grid;
  gap: 6px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-form p {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
}

.steps {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.steps article {
  padding: 30px;
}

.steps b {
  display: block;
  color: hsl(30 18% 9% / 0.1);
  font-size: 64px;
  line-height: 1;
  font-weight: 850;
}

.steps h3 {
  margin: 20px 0 0;
  font-size: 18px;
}

.steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-card {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  overflow: hidden;
}

.price-side {
  display: flex;
  flex-direction: column;
  padding: 42px;
  background: var(--primary);
  color: var(--card);
}

.price-side .label {
  color: hsl(36 60% 98% / 0.6);
}

.price-side div {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-side strong {
  font-size: clamp(54px, 6vw, 80px);
  line-height: 0.95;
  font-weight: 850;
}

.price-side em {
  color: hsl(36 60% 98% / 0.68);
  font-style: normal;
  font-weight: 750;
}

.price-side p {
  margin: 10px 0 auto;
  color: hsl(36 60% 98% / 0.55);
  font-size: 14px;
}

.price-side .btn {
  margin-top: 40px;
  width: 100%;
}

.perks {
  padding: 42px;
}

.perks ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}

.perks svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--text);
}

.narrow {
  max-width: 896px;
}

.faq-list {
  margin-top: 42px;
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  color: var(--text);
  text-align: left;
  font-size: 17px;
  font-weight: 800;
}

.faq-item i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--text);
  transition: transform 160ms ease;
}

.faq-item i svg {
  width: 17px;
  height: 17px;
}

.faq-item.open {
  border-color: hsl(30 18% 9% / 0.38);
}

.faq-item.open i {
  transform: rotate(45deg);
}

.faq-item div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-item.open div {
  grid-template-rows: 1fr;
}

.faq-item p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.5;
}

.faq-item.open p {
  padding-bottom: 22px;
}

.cta-section {
  padding-top: 72px;
}

.cta-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(hsl(36 60% 98% / 0.06) 1px, transparent 1px),
    var(--primary);
  background-size: 24px 24px, auto;
  color: var(--card);
  padding: 64px;
}

.cta-card .label,
.cta-card p {
  color: hsl(36 60% 98% / 0.62);
}

.cta-card h2 {
  margin-top: 14px;
  font-size: clamp(36px, 4.6vw, 56px);
}

.cta-card p {
  margin: 22px 0 0;
  max-width: 460px;
}

.cta-card > div:last-child {
  display: grid;
  gap: 14px;
}

.cta-card > div:last-child p {
  margin: 0;
  text-align: center;
  font-size: 13px;
}

.footer {
  border-top: 1px solid hsl(30 15% 85% / 0.6);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 72px);
}

.footer-column {
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 1px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand-column {
  gap: 12px;
}

.footer-brand span {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  line-height: 1;
}

.footer-brand em {
  color: var(--subtle);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.footer-heading {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-column a:hover {
  color: var(--text);
  text-decoration-color: currentColor;
}

.footer-install-link {
  color: var(--text) !important;
  font-weight: 750;
}

.footer-copy {
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .section-head.two-col,
  .whom-grid,
  .team-grid,
  .pricing-card,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .booking-demo {
    margin: 0;
  }

  .feature-grid,
  .steps,
  .whom-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .link-panel {
    grid-template-columns: 1fr;
  }

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

  .phone-wrap {
    justify-content: flex-start;
  }
}

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

  .container {
    width: min(100% - 32px, 1152px);
  }

  .header-inner {
    height: 64px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding-inline: 15px;
  }

  .section-open {
    padding: 88px 0 56px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats {
    margin-top: 24px;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .stats div {
    min-width: 0;
    flex: 1;
    margin-right: 0;
    padding-right: 14px;
  }

  .stats strong {
    font-size: 25px;
  }

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

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

  .feature-grid,
  .steps,
  .whom-list,
  .perks ul {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .whom-grid h2,
  .team-grid h2 {
    margin-top: 10px;
  }

  .section-head p {
    margin-top: 14px;
  }

  .feature-grid,
  .steps,
  .pricing-card,
  .faq-list {
    margin-top: 30px;
  }

  .link-panel {
    margin-top: 28px;
  }

  .check-list {
    margin-top: 24px;
    gap: 14px;
  }

  .feature-card,
  .steps article,
  .link-builder,
  .link-benefits,
  .perks,
  .price-side {
    padding: 24px;
  }

  .whom-grid {
    min-height: 0;
    gap: 16px;
  }

  .whom-list {
    margin-top: 24px;
  }

  .team-grid {
    gap: 30px;
  }

  .phone {
    margin-inline: auto;
  }

  .price-side strong {
    font-size: 56px;
  }

  .cta-card {
    gap: 26px;
    padding: 30px 24px;
  }

  .cta-section {
    padding-top: 40px;
  }

  .footer {
    padding: 32px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-brand span {
    display: grid;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 10px;
  }

  .header-actions {
    min-width: 0;
    gap: 6px;
  }

  .header-actions .btn {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .stats {
    gap: 10px;
  }

  .stats div {
    padding-right: 10px;
  }

  .stats strong {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
