@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Syne:wght@600;700;800&display=swap");

:root {
  --bg: #eef3f8;
  --surface: #ffffff;
  --text: #102033;
  --muted: #526176;
  --line: #cfd9e5;
  --primary: #0b4f8a;
  --primary-strong: #083b67;
  --accent: #16a34a;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(12, 33, 56, 0.14);
  --hero-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80");
}

body.theme-dark {
  --bg: #0c1724;
  --surface: #132438;
  --text: #e8f1fb;
  --muted: #b5c4d6;
  --line: #24405f;
  --primary: #5ab1ff;
  --primary-strong: #2d8de4;
  --accent: #34d399;
  --shadow: 0 18px 40px rgba(2, 8, 18, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(11, 79, 138, 0.16), transparent 34%),
    radial-gradient(circle at 95% 0%, rgba(22, 163, 74, 0.12), transparent 30%),
    var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.46;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body[data-page="home"]::before {
  background-image: linear-gradient(rgba(7, 19, 34, 0.36), rgba(7, 19, 34, 0.36)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
}

body[data-page="home"] {
  --hero-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80");
}

body[data-page="rca"]::before,
body[data-page="casco"]::before {
  background-image: linear-gradient(rgba(7, 19, 34, 0.34), rgba(7, 19, 34, 0.34)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80");
}

body[data-page="rca"],
body[data-page="casco"] {
  --hero-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80");
}

body[data-page="locuinta"]::before {
  background-image: linear-gradient(rgba(7, 19, 34, 0.34), rgba(7, 19, 34, 0.34)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80");
}

body[data-page="locuinta"] {
  --hero-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80");
}

body[data-page="calatorie"]::before {
  background-image: linear-gradient(rgba(7, 19, 34, 0.34), rgba(7, 19, 34, 0.34)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80");
}

body[data-page="calatorie"] {
  --hero-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80");
}

body[data-page="legal"]::before {
  background-image: linear-gradient(rgba(7, 19, 34, 0.44), rgba(7, 19, 34, 0.44)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
}

body[data-page="legal"] {
  --hero-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(180deg, rgba(238, 243, 248, 0.35), rgba(238, 243, 248, 0.55));
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

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

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.ambient-1 {
  width: 420px;
  height: 420px;
  background: #0ea5e9;
  top: -160px;
  right: -110px;
}

.ambient-2 {
  width: 360px;
  height: 360px;
  background: #16a34a;
  left: -120px;
  bottom: 4%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(14px);
  background: rgba(238, 243, 248, 0.88);
  border-bottom: 1px solid rgba(16, 32, 51, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  position: relative;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px 12px 16px 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  background: linear-gradient(145deg, var(--primary), #0ea5e9);
  box-shadow: var(--shadow);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 0.96rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
}

nav {
  display: inline-flex;
  gap: 0.9rem;
}

.nav-toggle {
  display: none;
  border: 1px solid #c2ccd6;
  background: #fff;
  color: #203041;
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.theme-toggle {
  border: 1px solid #c2ccd6;
  background: #fff;
  color: #203041;
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

body.theme-dark .theme-toggle,
body.theme-dark .nav-toggle {
  background: #132438;
  color: #e8f1fb;
  border-color: #345579;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

nav a:hover {
  color: var(--text);
  background: #e8efe7;
}

nav a.active {
  color: var(--text);
  background: #dfeaf8;
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 3.2rem 0 2rem;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(115deg, rgba(5, 19, 35, 0.72), rgba(5, 19, 35, 0.35)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after,
.page-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 28, 49, 0.12), rgba(10, 28, 49, 0.32));
}

.hero-copy,
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.services-grid article,
.card-form,
.faq-item,
.contact-card,
.trust-item,
.wizard-shell {
  backdrop-filter: blur(4px) saturate(1.1);
  background-color: rgba(255, 255, 255, 0.86);
  border-color: rgba(201, 216, 232, 0.9);
}

.hero-copy,
.hero-card {
  box-shadow: 0 24px 44px rgba(12, 33, 56, 0.2);
}

body.theme-dark nav a:hover,
body.theme-dark nav a.active {
  background: #1a3350;
}

body.theme-dark .trust-item,
body.theme-dark .services-grid article,
body.theme-dark .faq-item,
body.theme-dark .cookie-banner,
body.theme-dark .chatbot-panel {
  background: #132438;
}

body.theme-dark::after {
  background: linear-gradient(180deg, rgba(12, 23, 36, 0.5), rgba(12, 23, 36, 0.68));
}

body.theme-dark .hero-copy,
body.theme-dark .hero-card,
body.theme-dark .services-grid article,
body.theme-dark .card-form,
body.theme-dark .faq-item,
body.theme-dark .trust-item,
body.theme-dark .wizard-shell {
  background-color: rgba(19, 36, 56, 0.84);
  border-color: rgba(65, 95, 130, 0.9);
}

body.theme-dark .page-intro {
  color: #e8f1fb;
}

body.theme-dark .btn-ghost {
  background: #132438;
  color: #d8e7f7;
  border-color: #33506f;
}

body.theme-dark .chatbot-head {
  background: #17304a;
  border-bottom-color: #355779;
}

body.theme-dark .chatbot-close {
  background: #132438;
  color: #e8f1fb;
  border-color: #345579;
}

body.theme-dark .chatbot-msg-assistant {
  background: #173352;
  border-color: #3e648a;
}

.hero-copy {
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "PROTECTIE";
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #0b4f8a;
  background: #e0edfb;
  border: 1px solid #bfdbf5;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.hero-copy {
  padding: 2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-strong);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 1rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-badges li {
  background: #ecfdf5;
  border: 1px solid #b9ebdf;
  color: #0f4f47;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card {
  padding: 1.5rem;
}

.hero-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.trust-strip {
  padding: 0.3rem 0 1.4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
  font-weight: 800;
}

.services {
  padding: 1rem 0 2rem;
}

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

.services-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 22px rgba(23, 33, 43, 0.08);
}

.services-grid h3 {
  font-size: 1.04rem;
}

.form-section,
.contact {
  padding: 1rem 0 2.2rem;
}

.wizard-section {
  padding: 1rem 0 2.2rem;
}

.page-intro {
  padding: 2.6rem 1.5rem;
  margin-top: 1.4rem;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  color: #eef6ff;
  box-shadow: 0 24px 44px rgba(12, 33, 56, 0.2);
}

.page-intro h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  color: #ffffff;
}

.page-intro .eyebrow {
  color: #d8ebff;
}

.page-intro p {
  max-width: 920px;
}

.wizard-shell {
  background: #f3f3f3;
  border: 1px solid #e1e1e1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.wizard-top {
  color: #2e3134;
  font-size: 0.95rem;
}

.wizard-step h3 {
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.wizard-note {
  color: #e11d48;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.wizard-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.wizard-card {
  display: block;
}

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

.wizard-card span {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.3rem;
  min-height: 132px;
  padding: 1rem 0.65rem;
  border-radius: 14px;
  border: 1px solid #cfd2d7;
  background: #f6f6f6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.wizard-card input:checked + span {
  border-color: #ff2d55;
  box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.22);
  background: #fff;
}

.wizard-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.owner-type-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 620px;
}

.owner-type-option {
  display: block;
}

.owner-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.owner-type-option span {
  display: block;
  width: 100%;
  border: 1px solid #cfd2d7;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #f6f6f6;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.owner-type-option input:checked + span {
  border-color: #ff2d55;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.22);
}

.wizard-owner-grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.wizard-consent {
  margin-top: 0.35rem;
}

.wizard-step[hidden] {
  display: none;
}

.card-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
  max-width: 620px;
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #223140;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  padding: 0.56rem 0.66rem;
  border: 1px solid #b8c4d0;
  border-radius: 11px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(8, 84, 78, 0.34);
}

.wizard-shell .btn-primary {
  background: #ff2d55;
  box-shadow: 0 14px 28px rgba(255, 45, 85, 0.35);
}

.wizard-shell .btn-primary:hover {
  background: #e11643;
}

.btn-ghost {
  border: 1px solid #c2ccd6;
  color: #2a3b4f;
  background: #fff;
}

.form-message {
  margin: 0;
  min-height: 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-message.success {
  color: #166534;
}

.form-message.error {
  color: #b42318;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-card {
  background: linear-gradient(170deg, #0d2237, #102e4a);
  color: #eff5fb;
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.contact-card ul {
  padding-left: 1rem;
  margin: 0.8rem 0 1.1rem;
}

.faq {
  padding: 0.8rem 0 2rem;
}

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

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: #334456;
}

.faq-answer[hidden] {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(23, 33, 43, 0.14);
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: inline-flex;
  gap: 0.8rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  background: linear-gradient(145deg, #0b4f8a, #0ea5e9);
  box-shadow: 0 16px 30px rgba(11, 79, 138, 0.38);
}

.floating-whatsapp {
  right: 16px;
  bottom: 72px;
  background: #25d366;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 1rem));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 40;
  padding: 0.9rem;
}

.cookie-row {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.chatbot {
  position: fixed;
  right: 16px;
  bottom: 132px;
  z-index: 45;
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.chatbot-toggle {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: #fff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(145deg, #0b4f8a, #0ea5e9);
  box-shadow: 0 16px 30px rgba(11, 79, 138, 0.36);
  cursor: pointer;
}

.chatbot-panel {
  width: min(380px, calc(100vw - 1.2rem));
  max-height: min(74vh, 620px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid var(--line);
  background: #f2f8ff;
}

.chatbot-close {
  border: 1px solid #bdcad8;
  background: #fff;
  color: #243548;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chatbot-messages {
  padding: 0.8rem;
  overflow: auto;
  display: grid;
  gap: 0.6rem;
}

.chatbot-msg {
  max-width: 92%;
  padding: 0.6rem 0.72rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.chatbot-msg-assistant {
  justify-self: start;
  background: #edf4ff;
  border: 1px solid #d4e3fb;
}

.chatbot-msg-user {
  justify-self: end;
  background: #0b4f8a;
  color: #fff;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 0.72rem 0.8rem;
}

.chatbot-input {
  margin: 0;
}

.chatbot-send {
  min-width: 92px;
  padding-inline: 0.85rem;
}

.chatbot-note {
  margin: 0;
  padding: 0 0.8rem 0.72rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .wizard-owner-grid,
  .owner-type-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

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

  nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(320px, 92vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.7rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .site-header.nav-open .nav-wrap {
    padding-bottom: 1rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .wizard-category-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .card-form,
  .wizard-shell {
    padding: 1rem;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 12px;
  }

  .floating-whatsapp {
    bottom: 66px;
  }

  .chatbot {
    right: 12px;
    bottom: 124px;
    left: 12px;
    justify-items: stretch;
  }

  .chatbot-toggle {
    justify-self: end;
  }

  .chatbot-panel {
    width: 100%;
  }
}
