:root {
  --bg: #f5f7fb;
  --ink: #17202a;
  --muted: #5d6876;
  --line: #d8e0eb;
  --panel: #ffffff;
  --panel-strong: #edf3fb;
  --teal: #286fc4;
  --green: #4f83d8;
  --button-blue: #3f8fe5;
  --amber: #d49a2a;
  --dark: #101823;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(16, 24, 22, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 81%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid rgba(216, 224, 235, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: block;
  width: 52px;
  height: 46px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.brand-wordmark {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

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

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #304052;
  font-size: 1.06rem;
  font-weight: 700;
}

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

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

.header-phone {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(28, 114, 181, 0.24);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
}

.header-phone::before {
  content: "☎";
  font-size: 0.9rem;
  line-height: 1;
}

.header-phone:hover {
  border-color: rgba(28, 114, 181, 0.5);
  background: rgba(28, 114, 181, 0.08);
}

.contact-options {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 17, 29, 0.56);
}

.contact-options[hidden] {
  display: none;
}

.contact-options-panel {
  position: relative;
  width: min(440px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(8, 17, 29, 0.28);
}

.contact-options-panel h2 {
  margin: 0 32px 8px 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.contact-options-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-options-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.contact-options-actions .button {
  width: 100%;
  margin-top: 0;
}

.contact-options-actions .button-ghost {
  border-color: rgba(28, 114, 181, 0.28);
  background: #ffffff;
  color: var(--teal);
}

.contact-options-actions .button-ghost:hover {
  border-color: rgba(28, 114, 181, 0.48);
  background: rgba(28, 114, 181, 0.08);
}

.contact-options-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.contact-options-close:hover {
  color: var(--teal);
  border-color: rgba(28, 114, 181, 0.35);
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.is-active {
  background: var(--button-blue);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--button-blue);
  border-radius: var(--radius);
  background: var(--button-blue);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(63, 143, 229, 0.24);
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.44);
  color: #ffffff;
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 30px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(216, 224, 235, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(16, 24, 35, 0.16);
  backdrop-filter: blur(14px);
}

.quick-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 6px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.88rem;
}

.quick-contact .quick-contact-primary {
  background: var(--button-blue);
  color: #ffffff;
}

.quick-contact .quick-contact-whatsapp {
  background: #1f9f62;
  color: #ffffff;
}

.ai-chat-widget {
  position: fixed;
  left: 18px;
  bottom: 46px;
  z-index: 35;
  font-size: 0.95rem;
}

.ai-chat-toggle {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(40, 111, 196, 0.28);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(16, 24, 35, 0.14);
  cursor: pointer;
}

.ai-chat-toggle span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-weight: 800;
}

.ai-chat-toggle strong {
  font-size: 0.96rem;
}

.ai-chat-panel {
  position: absolute;
  left: 0;
  bottom: -28px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  gap: 12px;
  width: min(400px, calc(100vw - 36px));
  height: min(650px, calc(100vh - 110px));
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.ai-chat-panel[hidden] {
  display: none;
}

.ai-chat-panel-modal-open {
  overflow: hidden;
}

.ai-chat-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.ai-chat-header span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ai-chat-header h2 {
  margin: 3px 0 0;
  max-width: 310px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.ai-chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
}

.ai-chat-reset {
  min-height: 30px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.ai-chat-reset:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ai-chat-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-chat-messages {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
}

.ai-chat-panel-empty {
  height: auto;
  max-height: min(470px, calc(100vh - 110px));
}

.ai-chat-panel-empty .ai-chat-messages {
  min-height: 84px;
  max-height: 132px;
  overflow-y: hidden;
}

.ai-chat-message {
  display: block;
  flex: 0 0 auto;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  line-height: 1.45;
  white-space: pre-wrap;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: normal;
}

.ai-chat-message-assistant {
  align-self: stretch;
  min-height: 0;
}

.ai-chat-message-welcome {
  min-height: 0;
}

.ai-chat-message a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.ai-chat-message strong {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ai-chat-message-user {
  align-self: flex-end;
  max-width: 88%;
  background: var(--teal);
  color: #ffffff;
}

.ai-chat-actions {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
}

.ai-chat-actions a,
.ai-chat-actions button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.ai-chat-ticket-offer {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #bfd4ef;
  border-radius: var(--radius);
  background: #f8fbff;
}

.ai-chat-ticket-offer[hidden] {
  display: none;
}

.ai-chat-ticket-offer strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.ai-chat-ticket-offer dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.ai-chat-ticket-offer div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 8px;
}

.ai-chat-ticket-offer dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-chat-ticket-offer dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.ai-chat-ticket-offer .ai-chat-ticket-controls {
  display: flex;
  grid-template-columns: none;
  justify-content: flex-start;
}

.ai-chat-ticket-offer .ai-chat-ticket-offer-submit {
  border-color: transparent;
  background: var(--teal);
  color: #ffffff;
}

.ai-chat-ticket-modal {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-items: end;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(15, 32, 52, 0.22);
}

.ai-chat-ticket-modal[hidden] {
  display: none;
}

.ai-chat-ticket {
  display: grid;
  gap: 10px;
  max-height: min(560px, calc(100vh - 145px));
  overflow-y: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 32, 52, 0.22);
}

.ai-chat-ticket h3 {
  margin: 0;
  font-size: 1rem;
}

.ai-chat-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ai-chat-ticket label {
  display: grid;
  gap: 4px;
}

.ai-chat-ticket span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-chat-ticket input,
.ai-chat-ticket textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #ffffff;
  font: inherit;
}

.ai-chat-ticket textarea {
  resize: vertical;
}

.ai-chat-ticket-wide,
.ai-chat-ticket-controls {
  grid-column: 1 / -1;
}

.ai-chat-ticket-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.ai-chat-ticket-controls button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ai-chat-ticket-controls button[type="submit"] {
  border-color: transparent;
  background: var(--teal);
  color: #ffffff;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 10px;
  align-items: stretch;
}

.ai-chat-form textarea {
  width: 100%;
  min-height: 46px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  font: inherit;
}

.ai-chat-form-actions {
  display: grid;
  gap: 6px;
  align-content: start;
}

.ai-chat-form button[type="submit"] {
  min-height: 46px;
  border: none;
  border-radius: var(--radius);
  padding: 0 13px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111916;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 15, 13, 0.94) 0%, rgba(10, 15, 13, 0.72) 39%, rgba(10, 15, 13, 0.16) 78%),
    linear-gradient(0deg, rgba(10, 15, 13, 0.45), rgba(10, 15, 13, 0.06));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 52px 0;
  color: #ffffff;
}

.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-slide {
  display: none;
  animation: heroSlideIn 520ms ease both;
}

.hero-slide.is-active {
  display: block;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 2.2vw, 28px);
  pointer-events: none;
}

.hero-slider-arrow {
  border: 0;
  cursor: pointer;
}

.hero-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 17, 29, 0.32);
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(63, 143, 229, 0.5);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9fc4ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2.25rem, 5vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.hero-metrics dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.hero-metrics .metric-secondary {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-metrics .metric-secondary dt {
  font-size: 1.02rem;
}

.hero-metrics .metric-secondary dd {
  font-size: 0.78rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 5.4vw, 68px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.intro > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-lead {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid article {
  min-height: 132px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.04);
}

.problem-grid p {
  margin: 0;
  color: var(--muted);
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding-top: 20px;
}

.diagnostic-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.diagnostic-copy .button {
  margin-top: 12px;
}

.diagnostic-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.diagnostic-checklist div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.04);
}

.diagnostic-checklist strong,
.diagnostic-checklist span {
  display: block;
}

.diagnostic-checklist strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.diagnostic-checklist span {
  color: var(--muted);
}

.ai-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding-top: 20px;
}

.ai-showcase-copy {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 105, 205, 0.11), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(36, 122, 220, 0.18);
}

.ai-showcase-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.ai-showcase-copy .button {
  margin-top: 12px;
}

.ai-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ai-showcase-grid article {
  padding: 18px 20px;
  border: 1px solid rgba(36, 122, 220, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.05);
}

.ai-showcase-grid strong,
.ai-showcase-grid span {
  display: block;
}

.ai-showcase-grid strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.ai-showcase-grid span {
  color: var(--muted);
}

.service-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.04);
}

.service-card {
  min-height: 190px;
  padding: 20px;
}

.plan {
  min-height: 245px;
  padding: 24px;
}

.service-card p,
.plan p,
.plan li,
.trust-grid span,
.timeline p,
.faq-list p {
  color: var(--muted);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.service-links-panel {
  grid-column: 1 / -1;
  align-content: flex-start;
  align-self: stretch;
  min-height: 190px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.025);
}

.service-links a {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 750;
}

.trust {
  padding-top: 20px;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 60px);
  padding: 32px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
}

.trust-panel .eyebrow {
  color: #9fc4ff;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-grid article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 5px;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.75);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--panel-strong);
  color: var(--teal);
  font-weight: 900;
}

.approach {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #e9efea;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline article {
  padding: 26px;
  background: #f9fbf8;
}

.timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 900;
}

.plan {
  min-height: 320px;
}

.plan.is-featured {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
  box-shadow: var(--shadow);
}

.plan.is-featured p,
.plan.is-featured li {
  color: rgba(255, 255, 255, 0.75);
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.faq {
  padding-top: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-info {
  padding-top: 18px;
}

.contact-info-heading {
  margin-bottom: 24px;
}

.contact-info-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.contact-details {
  font-style: normal;
}

.contact-details dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.contact-details div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-details .contact-coverage {
  grid-column: span 2;
}

.contact-details .contact-coverage dd {
  line-height: 1.45;
}

.contact-details .contact-coverage span,
.contact-details .contact-coverage small {
  display: inline;
}

.contact-details .contact-coverage small::before {
  content: " ";
}

.contact-details dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.contact-details small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-details a {
  color: var(--teal);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form label,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label:nth-child(1),
.contact-form label:nth-child(2),
.contact-form label:nth-child(3),
.contact-form label:nth-child(4) {
  grid-column: auto;
}

.contact-form span {
  display: block;
  margin-bottom: 6px;
  color: #33443e;
  font-weight: 800;
  font-size: 0.92rem;
}

.contact-form .form-alternative {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form .form-alternative span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.contact-form .form-alternative a {
  color: var(--teal);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5cf;
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(40, 111, 196, 0.18);
  border-color: var(--teal);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer-links {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--teal);
  font-weight: 500;
}

.complaints-book-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
  vertical-align: middle;
}

.complaints-book-logo {
  display: block;
  width: auto;
  height: 22px;
}

.legal-page {
  max-width: 880px;
}

.service-page {
  max-width: 1180px;
}

.service-page h1 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.service-page-lead {
  max-width: 720px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 1.12rem;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.service-page-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.04);
}

.service-page-grid h2 {
  font-size: 1.35rem;
}

.service-page-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pack-highlight {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(240px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin: 8px 0 18px;
  padding: 26px;
  border: 1px solid rgba(36, 122, 220, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 105, 205, 0.1), rgba(255, 255, 255, 0.94));
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.05);
}

.pack-highlight h2,
.pack-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.pack-highlight p,
.pack-cta p {
  color: var(--muted);
}

.pack-highlight ul,
.pack-sales-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.pack-sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.pack-sales-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.pack-sales-grid h2 {
  margin-top: 0;
  font-size: 1.22rem;
}

.pack-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
}

.pack-cta h2,
.pack-cta p {
  color: #ffffff;
}

.pack-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.pack-cta .button {
  flex: 0 0 auto;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-page p {
  color: var(--muted);
  font-size: 1.03rem;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    margin-left: auto;
  }

  .intro,
  .contact,
  .diagnostic,
  .ai-showcase,
  .problem-grid,
  .service-grid,
  .plan-grid,
  .timeline,
  .trust-panel {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero {
    min-height: 660px;
  }

}

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

  .section-heading {
    margin-bottom: 18px;
  }

  .site-header {
    position: static;
  }

  .brand {
    min-width: auto;
  }

  .brand small,
  .button-small {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 58px 0 48px;
  }

  .hero-slider-controls {
    padding: 0 8px;
  }

  .hero-slider-arrow {
    width: 34px;
    height: 44px;
    font-size: 1.7rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 15, 13, 0.95), rgba(10, 15, 13, 0.72)),
      linear-gradient(0deg, rgba(10, 15, 13, 0.42), rgba(10, 15, 13, 0.1));
  }

  .hero-metrics,
  .intro,
  .contact,
  .diagnostic,
  .ai-showcase,
  .pack-highlight,
  .diagnostic-checklist,
  .ai-showcase-grid,
  .problem-grid,
  .contact-details dl,
  .service-page-grid,
  .pack-sales-grid,
  .service-grid,
  .plan-grid,
  .timeline,
  .trust-panel,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-contact {
    right: 10px;
    bottom: 18px;
    max-width: calc(100% - 20px);
    justify-content: center;
    overflow-x: auto;
  }

  .ai-chat-widget {
    left: 10px;
    bottom: 126px;
  }

  .ai-chat-widget.ai-chat-widget-open {
    bottom: 42px;
  }

  .ai-chat-panel {
    bottom: -24px;
    width: calc(100vw - 20px);
    height: calc(100vh - 98px);
  }

  .ai-chat-panel-empty {
    height: auto;
    max-height: min(430px, calc(100vh - 98px));
  }

  .ai-chat-ticket-modal {
    padding: 10px;
  }

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

  .ai-chat-ticket-grid {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-child(1),
  .contact-form label:nth-child(2),
  .contact-form label:nth-child(3),
  .contact-form label:nth-child(4) {
    grid-column: 1 / -1;
  }

  .site-footer {
    display: grid;
  }

  .service-links-panel {
    min-height: auto;
  }

  .pack-cta {
    display: grid;
    gap: 16px;
  }

  .pack-cta .button {
    justify-self: start;
  }
}
