:root {
  --red: #4aa2a4;
  --red-dark: #347f81;
  --dark: #20242a;
  --ink: #20242a;
  --muted: rgba(32, 36, 42, 0.62);
  --cream: #f7f5f1;
  --border: #e9e6df;
  --green: #4aa2a4;
  --text-soft: rgba(32, 36, 42, 0.68);
  --radius: 24px;
  --shadow: 0 18px 50px rgba(20, 24, 31, 0.08);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}


.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-ready.is-visible,
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.medium-container {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: #fff;
}

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

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-head {
  max-width: 700px;
  margin-bottom: 48px;
}

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

.section h1,
.section h2,
.section h3,
.site-footer h4 {
  margin: 0 0 16px;
  font-family: Raleway, Inter, sans-serif;
  letter-spacing: -0.02em;
}

.section h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.06;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.section h3 {
  font-size: 1.1rem;
}

.section p,
.card p,
.mini-card,
.chip-card,
.timeline-step p,
.domain-copy span,
.faq-item p {
  color: var(--text-soft);
}

.section-dark p,
.section-dark .card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.section-note {
  text-align: center;
  margin: 28px auto 0;
  max-width: 760px;
  color: var(--text-soft);
}

.lead {
  font-size: 1.1rem;
  max-width: 760px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.pill-dark {
  background: var(--dark);
  color: #fff;
}

.pill-red {
  background: var(--red);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(247, 245, 241, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--red);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: rgba(32, 36, 42, 0.72);
  font-weight: 600;
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--dark);
  padding: 0.7rem 1rem;
  border-radius: 14px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  color: var(--text-soft);
  font-weight: 600;
}

.hero-list li::before,
.plan-list li::before,
.check-list li::before,
.cross-list li::before {
  content: "✓";
  color: var(--green);
  margin-right: 0.55rem;
  font-weight: 900;
}

.cross-list li::before {
  content: "×";
  color: rgba(32, 36, 42, 0.45);
}

.mockup-browser {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem;
  background: #ede9e3;
  border-bottom: 1px solid var(--border);
}

.mockup-bar > span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--red);
}

.mockup-bar > span:nth-child(2) {
  background: #f5b342;
}

.mockup-bar > span:nth-child(3) {
  background: #59b97a;
}

.mockup-url {
  margin-left: auto;
  flex: 1;
  background: #fff;
  color: rgba(32, 36, 42, 0.52);
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-size: 0.78rem;
  max-width: 340px;
  text-align: center;
}

.mockup-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 360px;
}

.mockup-sidebar {
  background: #20242a;
  padding: 1rem;
}

.mockup-logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--red);
  margin-bottom: 1rem;
}

.mockup-line,
.mockup-top,
.mock-row,
.mock-card {
  border-radius: 14px;
  background: #ece8e1;
}

.mockup-line {
  height: 14px;
  margin-bottom: 0.85rem;
}

.mockup-line.strong {
  width: 90%;
  background: rgba(255, 255, 255, 0.28);
}

.mockup-sidebar .mockup-line {
  background: rgba(255, 255, 255, 0.12);
}

.mockup-main {
  padding: 1rem;
  background: #faf9f7;
}

.mockup-top {
  height: 54px;
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.mock-card {
  height: 84px;
  border: 1px solid var(--border);
  background: #fff;
}

.mockup-table {
  display: grid;
  gap: 0.75rem;
}

.mock-row {
  height: 58px;
  border: 1px solid var(--border);
  background: #fff;
}

.mockup-media,
.segment-media,
.ui-gallery-card {
  margin: 0;
  overflow: hidden;
}

.mockup-media {
  background: #faf9f7;
}

.mockup-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
}

.ui-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.ui-gallery-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ui-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.segment-card {
  display: flex;
  flex-direction: column;
}

.segment-media {
  margin: -1.6rem -1.6rem 1.2rem;
  border-radius: 24px 24px 0 0;
}

.segment-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}


.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card,
.pricing-card,
.comparison,
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.pricing-card {
  padding: 1.6rem;
}

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.text-center {
  text-align: center;
}

.icon-dot,
.icon-box,
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: rgba(74, 162, 164, 0.15);
}

.icon-dot {
  border-radius: 14px;
}

.icon-box {
  border: 1px solid var(--border);
  background: var(--cream);
}

.icon-badge {
  margin-inline: auto;
}

.mini-card,
.chip-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-weight: 600;
}

.check,
.chip-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex-shrink: 0;
}

.check {
  background: rgba(74, 123, 111, 0.14);
  color: var(--green);
}

.chip-arrow {
  background: var(--red);
  color: #fff;
}

.pricing-grid {
  align-items: stretch;
}

.big-plus-grid {
  align-items: stretch;
}

.big-plus-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
}

.big-plus-card .check {
  width: 34px;
  height: 34px;
}

.big-plus-card h3 {
  margin-bottom: 0;
}

.big-plus-card p {
  margin: 0;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: var(--red);
  box-shadow: 0 26px 60px rgba(74, 162, 164, 0.16);
}

.pricing-card-featured .btn-primary {
  box-shadow: 0 12px 30px rgba(74, 162, 164, 0.18);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.plan-price strong {
  font-size: 2.4rem;
  line-height: 1;
  font-family: Raleway, Inter, sans-serif;
}

.plan-price span {
  color: rgba(32, 36, 42, 0.5);
  font-weight: 700;
}

.price-old {
  color: rgba(32, 36, 42, 0.44);
  text-decoration: line-through;
  text-decoration-thickness: 0.12em;
}

.plan-promo {
  display: block;
  width: 100%;
  margin: -0.15rem 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.plan-promo,
.plan-promo * {
  color: #fff !important;
}

.plan-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(32, 36, 42, 0.48);
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
}

.pricing-card-disabled {
  background: rgba(246, 246, 246, 0.92);
  border-color: rgba(32, 36, 42, 0.12);
  box-shadow: none;
  filter: grayscale(0.8);
}

.pricing-card-disabled h3 {
  color: rgba(32, 36, 42, 0.58);
}

.pricing-card-disabled > p,
.pricing-card-disabled .plan-list,
.pricing-card-disabled .plan-note {
  opacity: 0.52;
  filter: blur(0.35px);
}

.btn-disabled,
.btn-disabled:hover {
  cursor: not-allowed;
  background: rgba(32, 36, 42, 0.2);
  border-color: transparent;
  color: rgba(32, 36, 42, 0.56);
  transform: none;
}

.plan-list,
.check-list,
.cross-list,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-list {
  margin: 1.3rem 0 1.4rem;
  display: grid;
  gap: 0.75rem;
  color: var(--text-soft);
}

.plan-note {
  margin-top: auto;
  margin-bottom: 1rem;
  font-style: italic;
  color: rgba(32, 36, 42, 0.46);
}

.comparison {
  padding: 1.8rem;
}

.comparison-soft {
  background: var(--cream);
}

.comparison-strong {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.comparison-strong .inverse li,
.comparison-strong p {
  color: rgba(255, 255, 255, 0.76);
}

.check-list,
.cross-list {
  display: grid;
  gap: 0.85rem;
}

.stack-list {
  display: grid;
  gap: 1rem;
}

.domain-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem 1.2rem;
}

.domain-plan,
.domain-badge {
  white-space: nowrap;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
}

.domain-plan {
  background: rgba(32, 36, 42, 0.08);
  padding: 0.55rem 0.9rem;
}

.domain-badge {
  margin-left: auto;
  background: var(--cream);
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
}

.domain-copy {
  display: grid;
}

.domain-copy strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.98rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.timeline-step {
  position: relative;
  padding-top: 1.3rem;
}

.timeline-number {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 1rem;
}

.faq-container {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0 1.2rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] p {
  padding-bottom: 1.2rem;
}

.contact-section {
  background: var(--dark);
  color: #fff;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-copy p,
.contact-mail {
  color: rgba(255, 255, 255, 0.62);
}

.form-card {
  padding: 1.8rem;
  color: var(--dark);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
}

.form-grid span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(32, 36, 42, 0.7);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
  color: var(--dark);
  padding: 0.95rem 1rem;
}

.independent-section {
  background: var(--red);
  color: #fff;
}

.independent-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(21, 24, 32, 0.16);
}

.independent-card .pill {
  background: #fff;
  color: var(--red-dark);
}

.independent-card h2 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
}

.independent-card p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.independent-card .btn-primary {
  background: var(--dark);
  border-color: var(--dark);
}

.independent-card .btn-primary:hover {
  background: #151820;
  border-color: #151820;
}

.form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid small {
  color: #2f7476;
}

.field-full {
  grid-column: 1 / -1;
}

.hp-field {
  display: none !important;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.2s ease;
}

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

.btn-small {
  min-height: 44px;
  padding: 0.7rem 1.1rem;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--dark);
  color: #fff;
}

.text-link {
  color: rgba(32, 36, 42, 0.7);
  font-weight: 700;
}

.alert {
  border-radius: 18px;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.alert-success {
  background: rgba(74, 123, 111, 0.14);
  color: #2f6458;
}

.form-confirmation {
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(47, 100, 88, 0.25);
  box-shadow: 0 12px 28px rgba(47, 100, 88, 0.12);
}

.form-confirmation strong {
  font-size: 1.05rem;
}

.form-confirmation:focus {
  outline: 3px solid rgba(74, 162, 164, 0.35);
  outline-offset: 3px;
}

.alert-error {
  background: rgba(219, 92, 87, 0.12);
  color: #9d3f3a;
}

.site-footer {
  background: #151820;
  color: rgba(255, 255, 255, 0.68);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
  color: #fff;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.75rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}


@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid,
  .contact-grid,
  .split-grid,
  .footer-grid,
  .independent-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .domain-row,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .domain-badge {
    margin-left: 0;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .timeline {
    grid-template-columns: 1fr;
  }

  
.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-ready.is-visible,
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.container {
    width: min(100% - 1.25rem, var(--container));
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .independent-card {
    padding: 1.4rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }
}

/* Optimisations landing */
.section-compact {
  padding: 64px 0;
}

.brand-logo {
  width: 355px;
  height: 58px;
  max-width: 355px;
  max-height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-shell .btn-primary.btn-small {
  color: #fff;
  background-color: var(--red-dark);
  border-color: var(--red-dark);
}

.nav-shell .btn-primary.btn-small:hover {
  background-color: #2f7476;
  border-color: #2f7476;
}

img[src$=".svg"] {
  max-width: 100%;
  height: auto;
}

.icon-dot,
.icon-box,
.segment-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-dot img,
.icon-box img {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.segment-card {
  align-items: center;
  text-align: center;
}

.segment-media {
  width: 54px;
  height: 54px;
  margin: 0 0 1rem;
  border-radius: 18px;
  background: rgba(74, 162, 164, 0.13);
}

.segment-media img {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
}

.mockup-browser {
  max-width: 700px;
  margin: 0 auto;
}

.mockup-media {
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  scrollbar-width: thin;
}

.mockup-media::-webkit-scrollbar {
  width: 5px;
}

.mockup-media::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.mockup-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.ui-gallery-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.mini-card-center {
  align-items: center;
}

.chip-card {
  align-items: center;
}

.chip-arrow span {
  transform: translateY(-1px);
}

.contact-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-section .text-link {
  color: #fff;
}

.contact-section .text-link:hover {
  color: #f3f4f6;
}

.contact-section .btn-secondary {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.contact-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.form-grid em {
  color: rgba(32, 36, 42, 0.48);
  font-style: normal;
  font-weight: 600;
}

.btn-primary,
.pill-red,
.chip-arrow,
.plan-badge {
  background: var(--red-dark);
}

.btn-primary:hover {
  background: #2f7476;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .mockup-media {
    height: 360px;
  }
}

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

.chatbot {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.chatbot-toggle {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--red), #2f7476);
  color: #fff;
  box-shadow: 0 20px 40px rgba(74, 162, 164, 0.3);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(74, 162, 164, 0.36);
}

.chatbot-panel {
  width: min(92vw, 23rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 30px 80px rgba(21, 24, 32, 0.22);
}

.chatbot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #eefafa, #fff);
  border-bottom: 1px solid var(--border);
}

.chatbot-head strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.chatbot-head p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.chatbot-close {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 19rem;
  overflow-y: auto;
  padding: 0.75rem 1rem 1rem;
  background: #fbfaf7;
}

.chatbot-message {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-line;
}

.chatbot-message:first-child {
  margin-top: 0;
}

.chatbot-message-bot {
  align-self: flex-start;
  background: #fff;
  color: rgba(32, 36, 42, 0.82);
  border: 1px solid var(--border);
}

.chatbot-message-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: 1px solid rgba(74, 162, 164, 0.12);
}

.chatbot-form {
  display: flex;
  gap: 0.55rem;
  padding: 0.85rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.chatbot-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.8rem 0.85rem;
  font: inherit;
}

.chatbot-form button {
  border: 0;
  border-radius: 0.9rem;
  background: var(--red);
  color: #fff;
  padding: 0 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.chatbot-form button:disabled,
.chatbot-form input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}


.hero-reassurance {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  font-weight: 700;
}

.demo-booking-section {
  background: linear-gradient(180deg, #fff 0%, #f9f8f4 100%);
}

.demo-booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.demo-booking-copy {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 1.2rem;
}

.demo-booking-copy h2 {
  margin-bottom: 0;
}

.demo-booking-copy .lead {
  margin: 0;
}

.demo-booking-points {
  display: grid;
  gap: 1rem;
}

.demo-booking-points .mini-card {
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.demo-booking-points .mini-card p {
  margin: 0.25rem 0 0;
}

.demo-form-card {
  padding: 1.9rem;
}

.demo-form-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-step {
  margin: 0;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fbfaf7;
}

.form-step legend {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.35rem;
  font-weight: 800;
  color: var(--dark);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--red-dark);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-size: 0.9rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

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

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.choice-card-body {
  display: grid;
  gap: 0.4rem;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.choice-card strong {
  color: var(--dark);
  font-size: 0.98rem;
}

.choice-card small {
  color: var(--text-soft);
}

.choice-card:hover .choice-card-body {
  transform: translateY(-1px);
}

.choice-card input:checked + .choice-card-body {
  border-color: var(--red-dark);
  background: rgba(74, 162, 164, 0.1);
  box-shadow: inset 0 0 0 1px rgba(52, 127, 129, 0.15);
}

.choice-card input:focus-visible + .choice-card-body {
  outline: 2px solid rgba(52, 127, 129, 0.28);
  outline-offset: 2px;
}

.field-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.field-note-error {
  display: block;
  margin-top: 0.85rem;
  color: #9d3f3a;
  font-weight: 700;
}

.contact-choice-grid {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 1.8rem;
}

.contact-choice {
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-choice h3 {
  margin-bottom: 0.7rem;
}

.contact-choice p {
  margin: 0 0 1rem;
}

.contact-choice .text-link {
  color: #fff;
}

.contact-choice .text-link:hover {
  color: #f3f4f6;
}

@media (max-width: 1080px) {
  .demo-booking-grid {
    grid-template-columns: 1fr;
  }

  .demo-booking-copy {
    position: static;
  }

  .choice-grid-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .step-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-step {
    padding: 1.1rem;
  }

  .demo-form-card,
  .form-card {
    padding: 1.25rem;
  }
}
