﻿:root {
  --sky-1: #6ca3d8;
  --sky-2: #bcdaf2;
  --blue-1: #1b4770;
  --blue-2: #2a6298;
  --green-1: #2f8d34;
  --green-2: #5da938;
  --text: #1d3144;
  --text-soft: #4a6277;
  --light-card: #f5f9fd;
  --line: #c8d9e7;
  --white: #ffffff;
  --warning: #f0ca3d;
  --shadow-soft: 0 16px 32px rgba(18, 50, 78, 0.16);
  --shadow-hard: 0 24px 52px rgba(16, 43, 68, 0.24);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #d7e7f5 0%, #eef5fb 40%, #f4f8fc 100%);
  line-height: 1.5;
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 255, 255, 0.4), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(31, 95, 150, 0.22), transparent 36%);
  pointer-events: none;
  z-index: -1;
}

.site-header,
main,
.site-footer,
.legal-layout {
  width: min(1080px, calc(100% - 1.4rem));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  margin-top: 0.85rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, rgba(22, 68, 108, 0.84), rgba(35, 93, 143, 0.78));
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(16, 53, 82, 0.26);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0.6rem;
  z-index: 20;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: #fff;
}

.brand-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(130deg, #d9efff, #f9fdff);
  box-shadow: 0 8px 16px rgba(9, 40, 67, 0.3);
}

.brand-icon svg {
  width: 1rem;
  height: 1rem;
  fill: #19568b;
}

.brand-text {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.08rem;
}

.header-nav {
  display: flex;
  gap: 0.6rem;
}

.header-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.18s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

main.sky-layout {
  margin-top: 0.75rem;
  margin-bottom: 1.4rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}

main section {
  padding: 1.55rem 1.6rem;
}

.hero-shot {
  min-height: 420px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(17, 54, 85, 0.62), rgba(22, 73, 118, 0.42)),
    url("img/ChatGPT%20Image%2024%20%D1%84%D0%B5%D0%B2%D1%80.%202026%20%D0%B3.,%2021_32_14.png") center/cover no-repeat;
}

.hero-content {
  max-width: 580px;
  color: #fff;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(238, 246, 255, 0.9);
  font-weight: 700;
}

.hero-content h1 {
  margin: 0.55rem 0 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.hero-content h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--warning);
}

.hero-lead {
  margin: 0.95rem 0 0;
  font-size: 1rem;
  color: rgba(239, 247, 255, 0.94);
  max-width: 48ch;
}

.hero-primary-button {
  margin-top: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.3rem;
  border-radius: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, var(--green-1), var(--green-2));
  box-shadow: 0 8px 22px rgba(26, 92, 32, 0.35);
}

.timeline-strip {
  background: #f9fcff;
}

.timeline-title h2 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.62rem;
  color: #1f4468;
}

.timeline-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.timeline-row::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 1rem;
  border-top: 2px dashed #9eb8d0;
}

.timeline-row article {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-step {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, #2e6ca4, #194b79);
  box-shadow: 0 8px 16px rgba(20, 58, 92, 0.32);
}

.timeline-row p {
  margin: 0.55rem 0 0;
  font-weight: 600;
  color: #3c5872;
  font-size: 0.95rem;
}

.blue-emphasis {
  text-align: center;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(30, 77, 119, 0.84), rgba(45, 102, 153, 0.82)),
    url("img/ChatGPT%20Image%2024%20%D1%84%D0%B5%D0%B2%D1%80.%202026%20%D0%B3.,%2021_38_01.png") center/cover no-repeat;
}

.blue-emphasis p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.blue-emphasis p strong {
  color: var(--warning);
  font-size: 2rem;
}

.blue-note {
  margin-top: 0.5rem !important;
  font-size: 0.95rem !important;
  color: rgba(231, 242, 255, 0.9);
  font-weight: 500 !important;
}

.stats-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 253, 0.95));
}

.stats-intro {
  margin: 0;
  text-align: center;
  font-size: 1.15rem;
  color: #204f79;
  font-weight: 700;
}

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

.stats-grid article {
  background: #fff;
  border: 1px solid #cfddea;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stats-grid strong {
  display: block;
  color: #1f4f7a;
  font-size: 1.55rem;
  font-family: "Bitter", Georgia, serif;
}

.stats-grid span {
  color: #53708c;
  font-size: 0.92rem;
}

.reviews {
  background: linear-gradient(180deg, #e5f0fb, #f1f7fd);
}

.reviews h2 {
  margin: 0;
  text-align: center;
  font-family: "Bitter", Georgia, serif;
  color: #1f4468;
  font-size: 1.65rem;
}

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

.reviews blockquote {
  margin: 0;
  border: 1px solid #d3e1ee;
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem;
  box-shadow: 0 10px 20px rgba(23, 58, 88, 0.12);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.review-avatar {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(130deg, #2e6ca4, #1a4d7a);
}

.review-meta strong {
  display: block;
  line-height: 1.2;
  font-size: 0.88rem;
}

.review-meta span {
  display: block;
  color: #5d7690;
  font-size: 0.76rem;
}

.reviews p {
  margin: 0;
  font-size: 0.9rem;
  color: #445f78;
}

.green-cta {
  text-align: center;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(43, 130, 47, 0.84), rgba(79, 158, 61, 0.82)),
    url("img/ChatGPT%20Image%2024%20%D1%84%D0%B5%D0%B2%D1%80.%202026%20%D0%B3.,%2021_35_34.png") center/cover no-repeat;
}

.green-cta h2 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.92rem);
}

.cta-chips {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cta-chips span {
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  font-size: 0.83rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.15);
}

.cta-button,
#submit-button,
.modal-email-button {
  margin-top: 0.9rem;
  border: none;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.35rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(130deg, #2f8d34, #5da938);
  box-shadow: 0 10px 20px rgba(32, 96, 31, 0.35);
  cursor: pointer;
}

.faq {
  background: #fff;
}

.faq h2 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.52rem;
  color: #1f4468;
}

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

.faq details {
  border: 1px solid #d3e0ec;
  border-radius: 10px;
  background: #f7fbff;
  padding: 0.75rem 0.85rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #294b69;
}

.faq details p {
  margin: 0.55rem 0 0;
  color: #506a81;
}

.bottom-form-block {
  background: #fff;
  border-top: 1px solid #d7e4f0;
}

.bottom-form-block h2 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.72rem;
  color: #1f4468;
  text-align: center;
}

.bottom-form-block > p {
  margin: 0.45rem 0 0;
  text-align: center;
  color: var(--text-soft);
}

#flight-form {
  margin-top: 1.05rem;
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

#flight-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2f5171;
}

#flight-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #bfd3e5;
  border-radius: 8px;
  padding: 0 0.82rem;
  font: inherit;
  color: #19344b;
  background: #f8fcff;
}

#flight-form input:focus {
  outline: none;
  border-color: #3576ad;
  box-shadow: 0 0 0 3px rgba(53, 118, 173, 0.14);
}

#submit-button {
  margin-top: 0.9rem;
  width: 100%;
}

#submit-button:disabled {
  opacity: 0.72;
  cursor: progress;
}

.secure-note {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #567089;
}

.form-status {
  margin: 0.35rem 0 0;
  text-align: center;
  min-height: 1.2em;
  font-weight: 700;
}

.form-status.success {
  color: #1e7f43;
}

.form-status.error {
  color: #ae2f2f;
}

.site-footer {
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid #cadceb;
  background: #f9fcff;
  padding: 1rem 1.05rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem 1rem;
}

.site-footer a {
  color: #215784;
  font-weight: 700;
  text-decoration: none;
}

.site-footer p {
  margin: 0.38rem 0 0;
  color: #536e84;
  font-size: 0.86rem;
}

.gdpr-line {
  font-size: 0.8rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 22, 35, 0.64);
  z-index: 60;
}

.modal[hidden] {
  display: none;
}

.modal-dialog {
  width: min(560px, 100%);
  border-radius: 22px;
  border: 1px solid #bcd8ef;
  background: linear-gradient(165deg, rgba(246, 251, 255, 0.98), rgba(255, 255, 255, 0.98));
  padding: 1.45rem;
  position: relative;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.modal-dialog::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, #0f6ab8, #3f89c8 45%, #4ca338 100%);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #b8d4ec;
  background: #f4f9ff;
  color: #2b4b69;
  font-size: 0.95rem;
  cursor: pointer;
}

.modal-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.modal-check {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, #10813f, #1fa259);
}

.modal-dialog h3 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.5rem;
}

.modal-subtitle {
  margin: 0.24rem 0 0;
  color: #466582;
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-message {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.modal-email-button span {
  width: 1rem;
  height: 1rem;
  display: inline-grid;
  place-items: center;
}

.modal-email-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.modal-note {
  margin: 0.82rem 0 0;
  color: #4f6c88;
  font-size: 0.86rem;
}

.modal-note a {
  color: #0b5a9f;
  font-weight: 700;
  text-decoration: none;
}

body.modal-open {
  overflow: hidden;
}

.legal-layout {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.legal-main {
  border-radius: 18px;
  border: 1px solid #cbdceb;
  background: #fff;
  padding: 1.25rem;
}

.legal-main h1 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
}

.legal-main h2 {
  margin-top: 1.2rem;
  margin-bottom: 0.48rem;
  font-size: 1.12rem;
}

.legal-main p,
.legal-main li {
  color: #4f677f;
}

.legal-main ul,
.legal-main ol {
  padding-left: 1.15rem;
}

.legal-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.link-chip {
  text-decoration: none;
  padding: 0.44rem 0.74rem;
  border-radius: 999px;
  border: 1px solid #bdd4e8;
  background: #edf6ff;
  color: #1f4f7a;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .timeline-row,
  .stats-grid,
  .reviews-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline-row::before {
    display: none;
  }

  .hero-shot {
    min-height: 360px;
    background-position: 64% center;
  }

  .blue-emphasis p strong {
    font-size: 1.7rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    flex-wrap: wrap;
  }

  main section {
    padding: 1.12rem;
  }

  .hero-content h1 {
    line-height: 1.12;
  }

  .hero-content h2 {
    line-height: 1.18;
  }

  .modal-dialog {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
