*, *::before, *::after { box-sizing: border-box; }

:root {
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --color-bg: #f3f7f4;
  --color-text: #1a2e1a;
  --color-text-muted: #546e7a;
  --color-primary: #2e7d32;
  --color-primary-dark: #1b5e20;
  --color-forest: #0d2818;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.125rem;
  --shadow-sm: 0 2px 8px rgba(13, 40, 24, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 40, 24, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 40, 24, 0.12);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.section-cv {
  content-visibility: auto;
  contain-intrinsic-size: auto 380px;
}

.section--muted {
  background: linear-gradient(180deg, #f8faf8 0%, #f0f4f1 100%);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(145deg, #d4ecd6 0%, #b2dfb8 50%, #9ccc9f 100%);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 0 4rem;
    background: linear-gradient(155deg, #e8f5e9 0%, #c8e6c9 38%, #81c784 100%);
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero__grid > div:first-child {
  max-width: 34rem;
}

.hero h1 {
  font-size: clamp(1.55rem, 4.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  color: var(--color-forest);
}

.hero__sub {
  font-size: 1.0625rem;
  color: #2d4a32;
  margin: 0 0 1.75rem;
  max-width: 38ch;
  font-weight: 500;
  opacity: 0.95;
}

.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8f5e9;
  min-height: 200px;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.65);
}
@supports (aspect-ratio: 4/3) {
  .hero__img-wrap {
    aspect-ratio: 4/3;
    min-height: 0;
  }
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .btn:active { transform: scale(0.98); }
}
.btn--primary {
  background: linear-gradient(180deg, #388e3c 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
@media (hover: hover) {
  .btn--primary:hover {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 6px 22px rgba(46, 125, 50, 0.4);
  }
}
.btn--white {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}
@media (hover: hover) {
  .btn--white:hover {
    background: #f1f8e9;
    box-shadow: var(--shadow-lg);
  }
}
.btn--block { width: 100%; }

/* Sections */
section {
  padding: 3.25rem 0;
}
section h2 {
  position: relative;
  font-size: clamp(1.4rem, 3.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  color: var(--color-forest);
  text-align: center;
}
section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #81c784, var(--color-primary));
}

.pain {
  background: var(--color-bg);
}
.pain ul {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 1.5rem 1.35rem;
  max-width: 640px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 125, 50, 0.12);
}
.pain li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.pain li:last-child { margin-bottom: 0; }
.pain li span.icon { flex-shrink: 0; font-size: 1.1em; }
.pain__conclusion {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.55;
}
.pain__conclusion strong { color: var(--color-primary-dark); }

/* Solution cards */
.cards {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  contain: content;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  opacity: 0.9;
}
.cards .card:nth-child(1)::before { background: linear-gradient(90deg, #42a5f5, #1e88e5); }
.cards .card:nth-child(2)::before { background: linear-gradient(90deg, #ffca28, #f9a825); }
.cards .card:nth-child(3)::before { background: linear-gradient(90deg, #ef5350, #e53935); }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
}
.card__emoji { font-size: 1.65rem; margin-bottom: 0.5rem; line-height: 1; }
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}
.card p { margin: 0; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.5; }
.solution__text {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #37474f;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 125, 50, 0.18);
  box-shadow: var(--shadow-sm);
}
.step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.35);
}
.step__body {
  font-size: 0.95rem;
  color: #455a64;
  line-height: 1.5;
}
.step__body strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-forest);
  font-size: 1rem;
}

/* Offer */
.offer-box {
  max-width: 560px;
  margin: 0 auto;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, #fff 0%, #e8f5e9 100%);
  contain: layout style;
  box-shadow: var(--shadow-md);
}
.offer-box ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.offer-box li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
}
.offer-box li span[aria-hidden="true"] { flex-shrink: 0; }
.price-row {
  text-align: center;
  margin-bottom: 1.15rem;
  padding-top: 0.25rem;
}
.price-old {
  font-size: 1.1rem;
  color: #90a4ae;
  text-decoration: line-through;
}
.price-new {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-top: 0.35rem;
  line-height: 1;
}

.economy {
  background: linear-gradient(135deg, #fffbf0 0%, #fff3c4 100%);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.4rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.55;
  border: 1px solid rgba(255, 193, 7, 0.25);
  box-shadow: var(--shadow-sm);
}
.economy strong.highlight {
  color: #c77800;
  font-weight: 800;
}

/* Reviews */
.reviews {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .reviews { grid-template-columns: repeat(3, 1fr); }
}
.review {
  position: relative;
  background: #fff;
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  contain: content;
}
.review::before {
  content: "“";
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(46, 125, 50, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}
.review__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.review__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c8e6c9 0%, #a5d6a7 100%);
  color: var(--color-primary-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(13, 40, 24, 0.1);
}
.review__meta { font-size: 0.85rem; color: var(--color-text-muted); }
.review__meta strong { color: var(--color-forest); display: block; font-size: 1.02rem; font-weight: 700; }
.stars { color: #ffb300; letter-spacing: 3px; margin: 0.3rem 0; font-size: 0.85rem; }
.review p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #37474f;
}

/* Quiz */
.quiz-block {
  background: linear-gradient(180deg, #eef6ef 0%, #f3f7f4 100%);
}
.quiz-q {
  margin-bottom: 1.85rem;
}
.quiz-q p {
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--color-forest);
  font-size: 1.02rem;
}
.quiz-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.quiz-pill {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-family: inherit;
  border: 2px solid #b2dfbc;
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .quiz-pill {
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  }
}
@media (hover: hover) {
  .quiz-pill:hover {
    border-color: #66bb6a;
    box-shadow: var(--shadow-sm);
  }
}
.quiz-pill.is-selected {
  background: linear-gradient(180deg, #388e3c 0%, var(--color-primary) 100%);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}
.quiz-result {
  display: none;
  margin-top: 1.5rem;
  padding: 1.65rem 1.35rem;
  background: linear-gradient(160deg, #dcedc8 0%, #c8e6c9 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.quiz-result.is-visible { display: block; }
.quiz-result p {
  margin: 0 0 1.1rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-forest);
}

/* Final CTA */
.final-cta {
  position: relative;
  background: linear-gradient(165deg, #143d30 0%, #1b4332 40%, #0d2818 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -20%, rgba(129, 199, 132, 0.25) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta .container {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  color: #fff;
  margin: 0 auto 1.35rem;
  padding-bottom: 0;
  max-width: 26rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.final-cta h2::after {
  display: none;
}
.final-cta .btn--white { margin-bottom: 1.1rem; }
.final-cta small {
  display: block;
  opacity: 0.88;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 27, 20, 0.58);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overscroll-behavior: contain;
}
@supports (backdrop-filter: blur(6px)) {
  .modal-overlay.is-open {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
.modal-overlay.is-open { display: flex; }
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.modal h3 {
  margin: 0 0 1.15rem;
  padding-right: 2rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-forest);
  letter-spacing: -0.02em;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #455a64;
}
.form-group input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #cfd8dc;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
@media (max-width: 767px) {
  .form-group input {
    font-size: 16px;
  }
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.18);
}
.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  color: #546e7a;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, color 0.15s;
}
@media (hover: hover) {
  .modal__close:hover {
    background: #eeeeee;
    color: var(--color-forest);
  }
}
.modal-wrap { position: relative; }

/* Confirm */
.confirm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(13, 27, 20, 0.58);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overscroll-behavior: contain;
}
@supports (backdrop-filter: blur(6px)) {
  .confirm-overlay.is-open {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
.confirm-overlay.is-open { display: flex; }
.confirm-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.confirm-box p { margin: 0 0 1rem; }
#confirmText { white-space: pre-line; }
.confirm-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn--secondary {
  background: #eceff1;
  color: #263238;
  font-family: inherit;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
}
@media (hover: hover) {
  .btn--secondary:hover { background: #cfd8dc; }
}

#confirmTitle {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-forest);
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .quiz-pill,
  .card {
    transition: none !important;
  }
  .card:hover {
    transform: none !important;
  }
}

/* Сторінка подяки (thanks.php) */
.thanks-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  background: #fafbfc;
}

body.page-thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #fafbfc;
  color: #1a1f1c;
}

.page-thanks .wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 4vw, 1.75rem) clamp(0.875rem, 4vw, 1.5rem) clamp(2rem, 6vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-thanks .main-col.thanks-page {
  margin: 0 auto;
  width: 100%;
  max-width: 32rem;
  padding: 1.25rem 0 2rem;
  text-align: center;
  background: transparent;
}

.thanks-card {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.25rem, 5vw, 2rem);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.08);
}

.thanks-check {
  display: flex;
  justify-content: center;
  margin: 0 0 1.5rem;
}

.thanks-check__svg {
  width: clamp(4.5rem, 22vw, 5.75rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(39, 174, 96, 0.22));
}

@media (prefers-reduced-motion: no-preference) {
  .thanks-check__svg {
    animation: thanks-icon-pop 0.65s cubic-bezier(0.34, 1.35, 0.64, 1) both;
  }

  .thanks-check__circle {
    transform-origin: 48px 48px;
    animation: thanks-circle-scale 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  }

  .thanks-check__mark {
    stroke-dasharray: 64;
    stroke-dashoffset: 64;
    animation: thanks-mark-draw 0.5s ease-out 0.2s forwards;
  }
}

@keyframes thanks-icon-pop {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes thanks-circle-scale {
  from {
    transform: scale(0.92);
  }
  to {
    transform: scale(1);
  }
}

@keyframes thanks-mark-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.thanks-page {
  text-align: center;
  max-width: 40rem;
}

.thanks-title {
  font-size: clamp(1.5rem, 4.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #0f172a;
  line-height: 1.2;
}

.thanks-lead,
.thanks-page p {
  margin: 0 0 1rem;
  color: #334155;
  line-height: 1.65;
  font-size: clamp(0.9375rem, 2.8vw, 1.0625rem);
}

.thanks-lead strong {
  color: #1e6b3a;
  font-weight: 600;
}

.thanks-note {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.55;
}

.thanks-back {
  margin: 1.75rem 0 0;
}

.thanks-back .btn {
  text-decoration: none;
}

/* Кнопка «на головну» у thanks.php */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.625rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-cta--flat {
  background: #27ae60;
  color: #fff;
  box-shadow: 0 4px 14px rgba(39, 174, 96, 0.35);
}

@media (hover: hover) {
  .btn-cta--flat:hover {
    background: #229954;
    box-shadow: 0 8px 22px rgba(39, 174, 96, 0.4);
    transform: translateY(-1px);
  }
}

.btn-cta--flat:active {
  transform: scale(0.98) translateY(0);
}

/* Верхня смуга + шапка (thanks.php) */
.top-bar.sans,
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: #1b4332;
  color: #e8f5e9;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.top-bar.sans {
  font-family: var(--font);
}

.top-bar__hint {
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.top-bar__weather {
  opacity: 0.9;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  color: #0d2818;
}

.logo span {
  color: #2e7d32;
}

.main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}

.main-nav a {
  text-decoration: none;
  color: #37474f;
  font-size: 0.95rem;
}

@media (hover: hover) {
  .main-nav a:hover {
    color: #2e7d32;
  }
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.main-col {
  padding: 2rem 0;
}

.editor-note {
  font-size: 0.9rem;
  color: #78909c;
}

@media (max-width: 600px) {
  .page-thanks .main-col.thanks-page {
    padding: 1rem 0 1.75rem;
  }

  .thanks-card {
    padding: 1.5rem 1.125rem;
    border-radius: 14px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thanks-check__svg,
  .thanks-check__circle {
    animation: none !important;
  }

  .thanks-check__mark {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .btn-cta {
    transition: none;
  }

  .btn-cta--flat:hover {
    transform: none;
  }

  .btn-cta--flat:active {
    transform: none;
  }
}
