:root {
  --font-heading: "Manrope", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --bg: #f6f2ed;
  --bg-alt: #efe8df;
  --white: #ffffff;
  --navy: #0f1a24;
  --coffee: #2b1f18;
  --coffee-soft: #6d5b4d;
  --micro: #9a8878;
  --gold: #c9a86a;
  --gold-dark: #b79254;
  --line: rgba(43, 31, 24, .12);
  --shadow-card: 0 6px 18px rgba(0, 0, 0, .06);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  font-family: var(--font-body);
  color: var(--coffee);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #f9f4ee 0%, #f2e9df 52%, #eadfd3 100%),
    var(--bg);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

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

html,
body {
  overflow-x: hidden;
}

.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;
}

.selection-page {
  display: grid;
  min-height: 100dvh;
  padding: 20px;
  place-items: center;
}

.selection-card {
  width: min(100%, 740px);
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(43, 31, 24, .07);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(43, 31, 24, .10);
}

.brand-logo {
  width: min(380px, 82vw);
  height: auto;
  margin: 0 auto 14px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .10));
}

.intro {
  max-width: 620px;
  margin: 0 auto 17px;
  text-align: center;
}

.intro-kicker {
  margin: -6px 0 8px;
  color: var(--coffee-soft);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.2;
}

.intro p.intro-kicker {
  max-width: none;
  font-size: 11px;
  line-height: 1.2;
}

.intro h1 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(30px, 4.7vw, 44px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-rule {
  display: block;
  width: 54px;
  height: 2px;
  margin: 12px auto 11px;
  background: var(--gold);
  border-radius: 999px;
}

.intro p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--coffee-soft);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.45;
}

.intro-estimate {
  margin-top: 5px !important;
  color: var(--gold-dark) !important;
}

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

.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 19px;
  cursor: pointer;
  text-align: center;
  background: #fffdf9;
  border: 1px solid rgba(43, 31, 24, .09);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(43, 31, 24, .05);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.option-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(201, 168, 106, .65);
  box-shadow: 0 14px 34px rgba(43, 31, 24, .11);
}

.option-card:active {
  transform: translateY(-1px) scale(.99);
}

.option-card:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .72);
  outline-offset: 4px;
}

.option-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 9px;
  place-items: center;
  color: var(--gold-dark);
  background: rgba(201, 168, 106, .12);
  border: 1px solid rgba(201, 168, 106, .26);
  border-radius: 50%;
}

.option-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.option-card h2 {
  margin: 0 0 8px;
  color: var(--coffee);
  font-size: clamp(18px, 3vw, 23px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .04em;
}

.option-main {
  max-width: 250px;
  margin: 0 auto;
  color: var(--coffee);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.option-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.option-action span {
  font-size: 17px;
  line-height: 1;
}

.direct-contact {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin: 10px 0 0;
  color: var(--micro);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.direct-contact a {
  display: inline-block;
  padding: 2px 4px;
  color: var(--gold-dark);
  border: 0;
  font-weight: 400;
  text-decoration: none;
}

.service-line {
  margin: 12px 0 0;
  color: var(--coffee-soft);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.direct-contact a:hover {
  color: var(--coffee);
}

.direct-contact__email {
  color: var(--coffee-soft) !important;
}

.direct-contact a:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .72);
  outline-offset: 4px;
  border-radius: 6px;
}

.option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 46px;
  width: 100%;
  margin-top: 18px;
  padding: 13px 16px;
  color: #1a140f;
  background: var(--gold);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}

.option-card:hover .option-button {
  color: #fff;
  background: var(--gold-dark);
}

.contact-detail {
  display: grid;
  width: 100%;
  gap: 14px;
  margin: 4px 0 24px;
}

.contact-detail p {
  margin: 0;
  color: var(--coffee-soft);
  font-size: 14px;
  line-height: 1.5;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-detail a {
  color: var(--coffee-soft);
  font-weight: 700;
}

.contact-options {
  margin-top: 18px;
}

.contact-card {
  cursor: default;
}

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

.contact-card:hover {
  transform: none;
  background: #fffdf9;
  border-color: rgba(43, 31, 24, .09);
  box-shadow: 0 8px 22px rgba(43, 31, 24, .05);
}

.contact-form {
  display: grid;
  width: 100%;
  gap: 16px;
}

.privacy-note {
  max-width: 560px;
  margin: -2px auto 0;
  color: var(--micro);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.privacy-note a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-page {
  align-items: start;
  padding-block: 28px 44px;
}

.privacy-card {
  width: min(100%, 860px);
}

.privacy-back {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
}

.privacy-back:hover {
  color: var(--coffee);
}

.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-content h1 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.privacy-content h2 {
  margin: 28px 0 8px;
  color: var(--coffee);
  font-size: 21px;
  line-height: 1.2;
}

.privacy-content p {
  margin: 0 0 14px;
  color: var(--coffee-soft);
  font-size: 15px;
  line-height: 1.6;
}

.privacy-content a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-kicker,
.privacy-updated {
  color: var(--micro) !important;
  font-size: 12px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.privacy-updated {
  margin-top: 8px !important;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 640px) {
  .privacy-page {
    padding: 14px 10px 28px;
  }

  .privacy-card {
    padding: 24px 20px 28px;
    border-radius: 24px;
  }

  .privacy-content h2 {
    margin-top: 24px;
    font-size: 19px;
  }

  .privacy-content p {
    font-size: 14px;
    line-height: 1.55;
  }
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
}

.form-field-full {
  width: 100%;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--coffee);
  background: #ffffff;
  border: 1px solid rgba(43, 31, 24, .12);
  border-radius: 13px;
  font: 500 15px/1.35 "Inter", sans-serif;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-error,
.field-error-summary {
  margin:0;
  color:#9b2c22;
  font-size:12px;
  line-height:1.45;
  text-transform:none;
}

.field-error-summary {
  padding:10px 12px;
  border:1px solid rgba(155,44,34,.28);
  border-radius:10px;
  background:rgba(155,44,34,.06);
  font-weight:600;
}

.form-success {
  margin:14px 0 0;
  padding:12px 14px;
  color:#205d42;
  border:1px solid rgba(31,122,82,.28);
  border-radius:10px;
  background:rgba(31,122,82,.08);
  font-size:13px;
  line-height:1.45;
  font-weight:600;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color:#9b2c22;
  box-shadow:0 0 0 3px rgba(155,44,34,.12);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201, 168, 106, .75);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, .14);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--micro);
}

.response-card {
  max-width: 560px;
  margin: 0 auto;
}

.response-card .option-button {
  margin-top: 22px;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin: 26px 0 0;
  color: var(--micro);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.contact > span,
.contact a {
  color: var(--coffee-soft);
  font-weight: 600;
}

.contact > span:not(:last-child)::after,
.contact > a:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: var(--micro);
}

.contact-address,
.contact-address span {
  display: inline;
}

.contact-address span:first-child::after {
  content: ", ";
}

.contact a:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .72);
  outline-offset: 4px;
  border-radius: 6px;
}

.index-faq {
  padding: 80px 24px 88px;
  background: var(--bg-alt);
}

.index-faq__inner {
  width: min(100%, 900px);
  margin-inline: auto;
}

.index-faq__header {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.index-faq__header h2 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.index-faq__header p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--coffee-soft);
  font-size: 17px;
  line-height: 1.5;
  text-wrap: balance;
}

.index-faq-shortcut {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin: 14px auto 0;
  padding: 9px 18px;
  cursor: pointer;
  color: var(--gold-dark);
  background: transparent;
  border: 1px solid rgba(201, 168, 106, .42);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.index-faq-shortcut:hover {
  background: rgba(201, 168, 106, .10);
  border-color: var(--gold);
}

.index-faq-shortcut:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .55);
  outline-offset: 3px;
}

.index-faq__list {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.index-faq__item {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(43, 31, 24, .08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(43, 31, 24, .04);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.index-faq__item:hover,
.index-faq__item[open] {
  background: #fffdf9;
  border-color: rgba(201, 168, 106, .44);
}

.index-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--coffee);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.index-faq__question::-webkit-details-marker {
  display: none;
}

.index-faq__question:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .55);
  outline-offset: 3px;
}

.index-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--gold-dark);
  border-radius: 50%;
  transition: transform .2s ease;
}

.index-faq__icon::before,
.index-faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.index-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.index-faq__item[open] .index-faq__icon {
  transform: rotate(180deg);
}

.index-faq__item[open] .index-faq__icon::after {
  opacity: 0;
}

.index-faq__answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(43, 31, 24, .07);
}

.index-faq__answer p {
  margin: 16px 0 0;
  color: var(--coffee-soft);
  font-size: 15.5px;
  line-height: 1.58;
}

.index-faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 12px;
}

.index-faq__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--coffee);
  background: rgba(201, 168, 106, .12);
  border: 1px solid rgba(201, 168, 106, .28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.index-faq__links a:hover {
  background: rgba(201, 168, 106, .20);
}

.index-faq__links a:focus-visible {
  outline: 3px solid rgba(201, 168, 106, .55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .index-faq-shortcut,
  .index-faq__icon,
  .index-faq__item {
    transition: none;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .74), rgba(255, 255, 255, 0) 42%),
      linear-gradient(160deg, #f9f4ee 0%, #f2e9df 56%, #eadfd3 100%),
      var(--bg);
  }

  .selection-page {
    align-items: start;
    padding: 16px;
  }

  .selection-card {
    margin: 14px auto;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .brand-logo {
    width: min(330px, 82vw);
    margin-bottom: 15px;
  }

  .intro {
    margin-bottom: 18px;
  }

  .intro h1 {
    max-width: 330px;
    margin: 0 auto;
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.08;
  }

  .intro-rule {
    width: 46px;
    margin: 10px auto 10px;
  }

  .intro p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.45;
  }

  .options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .option-card {
    padding: 17px 16px;
    border-radius: 18px;
  }

  .option-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 9px;
  }

  .option-icon svg {
    width: 20px;
    height: 20px;
  }

  .option-card h2 {
    margin-bottom: 7px;
    font-size: 21px;
  }

  .option-main {
    max-width: 300px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .direct-contact {
    display: grid;
    gap: 3px;
    margin-top: 16px;
    font-size: 12px;
  }

  .direct-contact a {
    margin-left: 0;
  }

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

  .contact {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .contact > span:not(:last-child)::after,
  .contact > a:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }

  .contact-address {
    display: grid;
    max-width: 170px;
    margin: 0 auto;
  }

  .contact-address span:first-child::after {
    content: "";
  }

  .contact-whatsapp {
    display: grid;
    gap: 2px;
  }

  .contact-whatsapp span:first-child {
    font-weight: 500;
  }

  .index-faq {
    padding: 54px 20px 62px;
  }

  .index-faq__header h2 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.06;
  }

  .index-faq__header p {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .index-faq__list {
    gap: 9px;
    margin-top: 28px;
  }

  .index-faq__question {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 14.5px;
  }

  .index-faq__answer {
    padding: 0 16px 17px;
  }

  .index-faq__answer p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .index-faq__links {
    display: grid;
    gap: 8px;
  }

  .index-faq__links a {
    justify-content: center;
    min-height: 42px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    background: var(--white);
  }

  .selection-page {
    display: block;
    min-height: 100dvh;
    padding: 0;
    background: var(--white);
  }

  .selection-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100dvh;
    margin: 0;
    padding:
      max(20px, env(safe-area-inset-top))
      18px
      max(18px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .brand-logo {
    width: min(260px, 76vw);
    margin-bottom: 9px;
  }

  .intro {
    margin-bottom: 12px;
  }

  .intro-rule {
    width: 40px;
    height: 2px;
    margin: 0 auto 9px;
  }

  .intro p {
    max-width: 285px;
    font-size: 13.5px;
    line-height: 1.22;
  }

  .options {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    gap: 9px;
  }

  .option-card {
    padding: 13px;
    border-radius: 18px;
  }

  .option-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 6px;
  }

  .option-icon svg {
    width: 17px;
    height: 17px;
  }

  .option-card h2 {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.05;
  }

  .option-main {
    max-width: 285px;
    font-size: 12.8px;
    line-height: 1.22;
  }

  .option-action {
    padding-top: 14px;
    font-size: 12px;
  }

  .direct-contact {
    display: grid;
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.3;
  }

  .direct-contact a {
    color: var(--gold-dark);
  }

  .contact {
    display: grid;
    gap: 3px;
    margin-top: 9px;
    font-size: 10.8px;
    line-height: 1.18;
  }

  .contact > span:not(:last-child)::after,
  .contact > a:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }

  .contact-address,
  .contact-address span,
  .contact-whatsapp,
  .contact-whatsapp span {
    display: inline;
  }

  .contact-address {
    max-width: none;
  }

  .contact-address span:first-child::after {
    content: ", ";
  }

  .contact-whatsapp span:first-child::after {
    content: " ";
  }
}

/* Ajustes de jerarquía para la portada */
.contact {
  margin-top: 12px;
  font-weight: 400;
}

.contact > span,
.contact a {
  font-weight: 400;
}

.contact > span:not(:last-child)::after,
.contact > a:not(:last-child)::after {
  content: none;
}

.index-faq-shortcut {
  color: var(--gold-dark);
  background: transparent;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
}

.index-faq-shortcut:hover {
  color: var(--gold);
  background: transparent;
}

@media (max-width: 760px) {
  .selection-page {
    padding: 12px;
  }

  .selection-card {
    padding: 22px 18px 26px;
  }

  .brand-logo {
    width: min(290px, 80vw);
  }

  .options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .option-card {
    padding: 19px 18px 18px;
  }

  .option-button {
    min-height: 50px;
    margin-top: 16px;
  }

  .service-line {
    max-width: 290px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .selection-card {
    justify-content: center;
    padding:
      max(12px, env(safe-area-inset-top))
      16px
      max(12px, env(safe-area-inset-bottom));
  }

  .brand-logo {
    width: min(230px, 72vw);
    margin-bottom: 6px;
  }

  .intro {
    margin-bottom: 9px;
  }

  .intro-kicker {
    margin-bottom: 4px;
    font-size: 9.5px;
  }

  .intro h1 {
    font-size: clamp(25px, 7.6vw, 30px);
  }

  .intro-rule {
    margin: 7px auto;
  }

  .intro p {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .intro-estimate {
    margin-top: 3px !important;
  }

  .options {
    gap: 7px;
  }

  .option-card {
    padding: 10px 12px;
  }

  .option-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .option-icon svg {
    width: 16px;
    height: 16px;
  }

  .option-card h2 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .option-main {
    font-size: 12.2px;
    line-height: 1.25;
  }

  .option-button {
    min-height: 44px;
    margin-top: 9px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .service-line {
    margin-top: 7px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .direct-contact {
    margin-top: 6px;
  }

  .contact {
    margin-top: 4px;
  }

  .index-faq-shortcut {
    min-height: 44px;
    margin-top: 0;
    padding-block: 8px;
  }
}

@media (max-width: 480px) and (max-height: 700px) {
  .selection-card {
    justify-content: flex-start;
  }
}
