:root {
  --teal-900: #0b3b3c;
  --teal-800: #10504f;
  --teal-600: #17706c;
  --teal-500: #1e8a83;
  --mint: #cfe9e2;
  --mint-light: #eaf5f1;
  --coral: #e8734a;
  --coral-dark: #cf5a33;
  --ink: #14231f;
  --muted: #5d726c;
  --line: #dfe8e4;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(11, 59, 60, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 59, 60, 0.14);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-500);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section--tint { background: var(--mint-light); }
.section--dark { background: var(--teal-900); color: var(--mint); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--mint); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: var(--mint); opacity: 0.85; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--coral); color: #fff; }
.btn--primary:hover { background: var(--coral-dark); }
.btn--dark { background: var(--teal-900); color: #fff; }
.btn--dark:hover { background: var(--teal-800); }
.btn--ghost { border-color: var(--teal-900); color: var(--teal-900); }
.btn--ghost:hover { background: var(--teal-900); color: #fff; }
.btn--light { background: #fff; color: var(--teal-900); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--teal-900);
  text-decoration: none !important;
  white-space: nowrap;
}
.logo__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--teal-900);
  display: grid; place-items: center;
  color: #fff; font-size: 0.9rem; font-weight: 700;
  font-family: "Inter", sans-serif;
}
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--coral); }
.header .btn { padding: 11px 22px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: 0; cursor: pointer;
  font-size: 1.5rem; color: var(--teal-900);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-800) 55%, var(--teal-600) 100%);
  color: #fff;
  padding: 110px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px; top: -160px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,115,74,0.32), transparent 65%);
}
.hero__inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { color: #fff; }
.hero__lead {
  font-size: 1.22rem;
  color: var(--mint);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Partner logo strip */
.logos { background: var(--white); padding: 44px 0; border-bottom: 1px solid var(--line); }
.logos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}
.logos__item {
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: #fbfdfc;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.stat__num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label { font-size: 0.95rem; opacity: 0.85; margin: 0; }

/* Results cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card__country {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.card__metric {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.3rem; color: var(--teal-900); line-height: 1; margin-bottom: 14px;
}
.card p { color: var(--muted); }
.card .btn { align-self: flex-start; margin-top: auto; }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--teal-800);
  display: grid; place-items: center;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 16px;
}
.benefit h3 { margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* Two-column */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split__visual {
  border-radius: var(--radius-lg);
  min-height: 340px;
  background: linear-gradient(140deg, var(--teal-600), var(--teal-900));
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  color: #fff;
  padding: 40px;
  text-align: center;
}
.split__visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(232,115,74,0.34), transparent 50%);
}
.split__visual span {
  position: relative;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.3;
}

/* Pricing */
.price-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--teal-900);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.price-card__tier {
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--teal-500);
}
.price-card__amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.1rem; color: var(--teal-900); line-height: 1; margin: 12px 0 4px;
}
.price-card__per { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.price-card li {
  padding: 9px 0 9px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.price-card li:last-child { border-bottom: 0; }
.price-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 9px;
  color: var(--coral); font-weight: 700;
}

/* News */
.news { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.news-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-item__thumb {
  height: 168px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-900));
  display: grid; place-items: center;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  position: relative;
}
.news-item__thumb--coral { background: linear-gradient(135deg, var(--coral), #b7431f); }
.news-item__thumb--mint { background: linear-gradient(135deg, #2fa39a, var(--teal-800)); }
.news-item__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.news-item__meta {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 10px;
}
.news-item h3 { font-size: 1.28rem; margin-bottom: 10px; }
.news-item h3 a { color: var(--teal-900); text-decoration: none !important; }
.news-item p { color: var(--muted); font-size: 0.97rem; }
.news-item__more { margin-top: auto; font-weight: 600; color: var(--coral); }
.badge-new {
  display: inline-block;
  background: var(--coral); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  vertical-align: middle; margin-left: 8px;
}

/* Quote */
.quote {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.quote blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.45;
  margin: 0 0 26px;
  color: #fff;
}
.quote__person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--mint); color: var(--teal-900);
  display: grid; place-items: center; font-weight: 700;
}
.quote__name { text-align: left; font-size: 0.95rem; }
.quote__name strong { display: block; color: #fff; }

/* Form */
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
label { font-size: 0.87rem; font-weight: 600; color: var(--teal-900); }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
}
input:focus, textarea:focus { outline: 2px solid var(--teal-500); outline-offset: 1px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; grid-column: 1 / -1; }
.checkbox label { font-weight: 400; font-size: 0.92rem; color: var(--muted); }
.form-note { font-size: 0.85rem; color: var(--muted); grid-column: 1 / -1; margin: 0; }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--mint); color: var(--teal-800);
  display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 18px;
}

/* Footer */
.footer { background: var(--teal-900); color: var(--mint); padding: 64px 0 28px; }
.footer h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer a { color: var(--mint); }
.footer__tagline { font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; font-size: 0.95rem; }
.footer__bottom {
  margin-top: 44px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; opacity: 0.8;
}

/* Article page */
.article { padding: 64px 0 96px; }
.article__inner { max-width: 720px; margin: 0 auto; }
.article__hero {
  background: linear-gradient(150deg, var(--teal-900), var(--teal-600));
  color: #fff;
  padding: 72px 0 60px;
}
.article__hero .wrap { max-width: 780px; }
.article__hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.article__meta { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint); font-weight: 700; margin-bottom: 16px; }
.article__inner h2 { font-size: 1.6rem; margin-top: 2em; }
.article__inner p { font-size: 1.06rem; color: #243934; }
.article__inner blockquote {
  margin: 2em 0;
  padding: 20px 26px;
  border-left: 4px solid var(--coral);
  background: var(--mint-light);
  border-radius: 0 12px 12px 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}
.article__inner ul { padding-left: 22px; color: #243934; }
.article__inner li { margin-bottom: 8px; }
.back-link { display: inline-block; margin-bottom: 28px; font-weight: 600; }

@media (max-width: 900px) {
  .split, .form-layout, .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 18px 24px; gap: 4px;
  }
  .header__inner .btn { display: none; }
  .section { padding: 68px 0; }
  form { grid-template-columns: 1fr; }
}
