:root {
  --navy: #0b1b2a;
  --navy-soft: #173047;
  --orange: #f97316;
  --orange-dark: #d95d0b;
  --orange-soft: #fff0e5;
  --ink: #17232e;
  --muted: #687684;
  --line: #dce3e8;
  --background: #f3f6f8;
  --white: #ffffff;
  --green: #198754;
  --shadow: 0 24px 70px rgba(5, 19, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  min-height: 72px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 10px;
  font-weight: 900;
}

.badge,
.simulation {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
}

.simulation {
  color: #974006;
  background: var(--orange-soft);
}

.online {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d5e0e8;
  font-size: 0.85rem;
}

.online i {
  width: 9px;
  height: 9px;
  background: #42db88;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(66, 219, 136, 0.13);
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 70px 6vw 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 7vw;
  color: var(--white);
  background:
    radial-gradient(
      circle at 8% 2%,
      rgba(249, 115, 22, 0.23),
      transparent 33%
    ),
    linear-gradient(145deg, var(--navy), #102b42 72%, #193c55);
}

.introduction {
  max-width: 760px;
}

.eyebrow,
.card-header small,
.result-card small {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 650px;
  margin: 28px 0;
  color: #c6d3dc;
  font-size: clamp(1.04rem, 1.5vw, 1.23rem);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.features span {
  padding: 9px 13px;
  color: #e6edf2;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.84rem;
}

.safe-note {
  margin-top: 34px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--orange);
}

.safe-note span {
  color: #9eafbc;
  font-size: 0.8rem;
}

.inquiry-card {
  padding: 29px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card-header,
.result-header,
.result-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.card-header h2,
.result-header h2,
.result-card h3 {
  margin: 0;
  line-height: 1.15;
}

.presets {
  margin: 23px 0 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.presets button {
  padding: 8px 11px;
  color: #475664;
  background: #f4f6f8;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.presets button:hover {
  color: #8e3c05;
  background: var(--orange-soft);
  border-color: #ffbd91;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

label {
  margin-bottom: 14px;
  display: block;
  color: #445361;
  font-size: 0.81rem;
  font-weight: 750;
}

label em {
  color: #8b97a1;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd4dc;
  border-radius: 10px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

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

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.error {
  min-height: 20px;
  margin: 0 0 7px;
  color: #b42318;
  font-size: 0.82rem;
}

.primary,
.secondary {
  border-radius: 11px;
  font-weight: 800;
}

.primary {
  width: 100%;
  padding: 14px 17px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  background: var(--orange);
  border: 0;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
}

.primary:hover {
  background: var(--orange-dark);
}

.primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.secondary {
  padding: 11px 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.results {
  padding: 76px 6vw;
}

.result-header {
  margin-bottom: 27px;
  align-items: end;
}

.result-header h2 {
  max-width: 680px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.035em;
}

.metrics {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.metrics article {
  padding: 17px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.metrics span {
  color: var(--muted);
  font-size: 0.74rem;
}

.metrics strong {
  margin-top: 4px;
}

.result-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 17px;
}

.result-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(13, 27, 42, 0.05);
}

.result-card header {
  margin-bottom: 19px;
  justify-content: flex-start;
}

.result-card header > b {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
}

.summary,
.reply {
  padding: 15px;
  color: #3e4d59;
  background: #f5f7f8;
  border-radius: 10px;
}

.reply {
  white-space: pre-line;
  background: #fbfcfd;
  border: 1px solid var(--line);
}

.green {
  color: var(--green);
  font-size: 0.81rem;
  font-weight: 750;
}

.not-sent {
  margin: 9px 0 0;
  color: #984207;
  font-size: 0.75rem;
  text-align: right;
}

.appointments {
  display: grid;
  gap: 8px;
}

.appointment {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: #f7f9fa;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.appointment > span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.appointment > span:first-child {
  display: grid;
  gap: 2px;
  text-align: left;
}

.appointment small {
  color: var(--muted);
  font-size: 0.72rem;
}

.appointment:hover,
.appointment.selected {
  color: #8c3b04;
  background: var(--orange-soft);
  border-color: #ffb681;
}

.appointment.selected:disabled {
  cursor: wait;
  opacity: 1;
}

.hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding-left: 19px;
  position: relative;
  border-left: 2px solid #dce3e8;
}

.timeline-item::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: -6px;
  background: var(--orange);
  border-radius: 50%;
}

.timeline-item span,
.timeline-item strong {
  display: block;
}

.timeline-item span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.benefits {
  padding: 66px 6vw 80px;
  text-align: center;
  background: var(--white);
}

.benefits > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.benefits article {
  padding: 25px 16px;
  display: flex;
  flex-direction: column;
  background: var(--background);
  border-radius: 14px;
}

.benefits strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.83rem;
}

.packages {
  padding: 76px 6vw 88px;
  background: #f3f6fb;
}

.packages-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.packages-heading h2 {
  margin: 7px 0 10px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.packages-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.package-grid {
  width: min(930px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.package-card {
  padding: 31px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(1, 56, 148, 0.07);
}

.package-card--featured {
  border-top: 4px solid var(--orange);
}

.package-card header > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.package-card h3 {
  margin: 8px 0 11px;
  color: var(--navy);
  font-size: 1.45rem;
}

.package-card header p {
  margin: 0;
  color: var(--muted);
}

.package-card header strong {
  color: var(--navy-soft);
  font-size: 2.1rem;
}

.package-card ul {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.package-card li {
  color: var(--ink);
  font-size: 0.9rem;
}

.package-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--orange-dark);
  font-weight: 900;
}

footer {
  padding: 23px 6vw;
  display: flex;
  justify-content: space-between;
  color: #aebbc5;
  background: var(--navy);
  font-size: 0.78rem;
}

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

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

  .metrics,
  .benefits > div,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .topbar,
  .hero,
  .results,
  .benefits,
  .packages,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .online {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .inquiry-card {
    padding: 21px;
  }

  .two-columns,
  .metrics,
  .benefits > div,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .result-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* VOGELS-BRAND-V2 */
:root {
  --navy: #05245f;
  --navy-soft: #013894;
  --orange: #fba814;
  --orange-dark: #df9200;
  --orange-soft: #fff4d6;
  --ink: #102a4c;
  --muted: #64748b;
  --line: #d9e2f1;
  --background: #f3f6fb;
  --shadow: 0 24px 70px rgba(1, 56, 148, 0.16);
}

.topbar {
  min-height: 84px;
  color: var(--navy);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(1, 56, 148, 0.08);
}

.brand-logo {
  width: clamp(156px, 17vw, 190px);
  height: auto;
  display: block;
}

.badge {
  color: #714700;
  background: var(--orange-soft);
  border: 1px solid #f3d47d;
}

.online {
  color: var(--navy);
}

.hero {
  min-height: calc(100vh - 84px);
  background:
    radial-gradient(
      circle at 8% 2%,
      rgba(251, 168, 20, 0.27),
      transparent 33%
    ),
    linear-gradient(145deg, #041a46, #013894 72%, #0752b5);
}

.lead {
  color: #dce9ff;
}

.features span {
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.09);
}

.primary {
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(251, 168, 20, 0.28);
}

.primary:hover {
  background: var(--orange-dark);
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(251, 168, 20, 0.17);
}

.presets button:hover,
.appointment:hover,
.appointment.selected {
  color: var(--navy);
  background: var(--orange-soft);
  border-color: #f3ca69;
}

.result-card header > b {
  background: var(--navy-soft);
}

@media (max-width: 600px) {
  .brand-logo {
    width: 148px;
  }
}

/* VOGELS-BRAND-3 */
:root {
  --navy: #05245f;
  --navy-soft: #013894;
  --orange: #fba814;
  --orange-dark: #df9200;
  --orange-soft: #fff4d6;
  --ink: #102a4c;
  --muted: #64748b;
  --line: #d9e2f1;
  --background: #f3f6fb;
  --shadow: 0 24px 70px rgba(1, 56, 148, 0.16);
}

.topbar {
  min-height: 84px;
  color: var(--navy);
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(1, 56, 148, 0.08);
}

.brand-logo {
  width: clamp(150px, 17vw, 185px);
  height: auto;
  display: block;
}

.badge {
  color: #714700;
  background: var(--orange-soft);
  border: 1px solid #f3d47d;
}

.online {
  color: var(--navy);
}

.hero {
  min-height: calc(100vh - 84px);
  background:
    radial-gradient(
      circle at 8% 2%,
      rgba(251, 168, 20, 0.27),
      transparent 33%
    ),
    linear-gradient(145deg, #041a46, #013894 72%, #0752b5);
}

.lead {
  color: #dce9ff;
}

.features span {
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.09);
}

.primary {
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(251, 168, 20, 0.28);
}

.primary:hover {
  background: var(--orange-dark);
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(251, 168, 20, 0.17);
}

.presets button:hover,
.appointment:hover,
.appointment.selected {
  color: var(--navy);
  background: var(--orange-soft);
  border-color: #f3ca69;
}

.result-card header > b {
  background: var(--navy-soft);
}

@media (max-width: 600px) {
  .brand-logo {
    width: 145px;
  }
}
