:root {
  --green: #00a66a;
  --green-dark: #047a51;
  --blue: #19008f;
  --blue-dark: #10005c;
  --ink: #12131a;
  --muted: #657083;
  --soft: #f6f8fb;
  --line: #e8edf3;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(18, 19, 26, 0.08);
  --shadow-soft: 0 10px 24px rgba(18, 19, 26, 0.055);
  --radius: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, p, a, span, strong {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f8fafc 100%);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(232,237,243,0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img,
.footer-brand img,
.hero-logo img,
.mini-logo img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  transition: color 220ms ease;
}

.nav-links a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(0, 166, 106, 0.18);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(0, 166, 106, 0.22);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(25, 0, 143, 0.16);
}

.button-ghost {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(18,19,26,0.04);
}

.button-disabled {
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
  cursor: not-allowed;
}

.hero {
  position: relative;
  padding: 86px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(0,166,106,0.09);
  border: 1px solid rgba(0,166,106,0.16);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: fadeUp 700ms ease both;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0,166,106,0.15);
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
  color: var(--blue-dark);
}

h1 {
  margin-top: 0;
  font-size: clamp(3rem, 7.8vw, 6.65rem);
  max-width: 880px;
  animation: fadeUp 780ms ease 80ms both;
}

.accent {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.accent::after {
  content: none;
}

.hero-copy {
  max-width: 720px;
  margin: 38px 0 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.38rem);
  animation: fadeUp 780ms ease 160ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  animation: fadeUp 780ms ease 240ms both;
}

.hero-support {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 700;
  animation: fadeUp 780ms ease 280ms both;
}

.proof-actions {
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  animation: fadeUp 780ms ease 320ms both;
}

.meta-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(18,19,26,0.03);
  overflow: hidden;
}

.meta-card::before,
.card::before,
.faq::before {
  content: "";
  display: block;
  height: 4px;
  margin: -18px -18px 16px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.meta-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: var(--blue);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.meta-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatIn 850ms ease 160ms both;
}

.hero-panel::before {
  content: none;
}

.panel-inner {
  position: relative;
  border-radius: 12px;
  min-height: 540px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  color: white;
  background: linear-gradient(145deg, #10005c, #19008f 56%, #00a66a);
  overflow: hidden;
}

.panel-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.35;
}

.hero-logo,
.prompt-box,
.panel-title {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.panel-title h2 {
  color: white;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.panel-title p {
  max-width: 410px;
  color: rgba(255,255,255,0.94);
  font-size: 1.14rem;
  margin: 32px 0 0;
}

.prompt-box {
  margin-top: 28px;
  padding: 20px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.prompt-box small {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prompt-box p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

section { padding: 82px 0; }

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.kicker {
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h2 { font-size: clamp(2.2rem, 4.7vw, 4.4rem); }

.lead {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 1.22rem;
  max-width: 760px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.035);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow: hidden;
}

.card::before {
  margin: -30px -30px 26px;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0,166,106,0.22);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}

.card p,
.country-card p,
.step p,
.faq p,
.route p,
.proof p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 0;
}

.country-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.035);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.country-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: -30px -30px 26px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0,166,106,0.22);
}

.country-card .kicker {
  margin-bottom: 18px;
}

.country-card h3 {
  margin-bottom: 22px;
}

.country-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: stretch;
}

.proof {
  height: 100%;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof .lead {
  margin-top: 42px;
}

.proof-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
  margin-bottom: 42px;
}

.routes {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 16px;
  align-content: stretch;
}

.route {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.025);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.route::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.route:hover {
  transform: translateX(2px);
  border-color: rgba(25,0,143,0.22);
  box-shadow: var(--shadow-soft);
}

.route-number {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue) 52%, var(--green));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.cta-band h2 { color: #fff; }
.cta-band p {
  margin: 32px 0 0;
  color: rgba(255,255,255,0.94);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 760px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

gpt-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  max-width: 560px;
}

.gpt-cta-copy {
  flex: 1 1 260px;
  min-width: 0;
}

.cta-band .gpt-cta-copy p,
.gpt-cta-copy p {
  margin: 0;
  color: rgba(255,255,255,0.94);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 440px;
}

.gpt-cta-prompt {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

.gpt-cta-prompt small,
.gpt-cta-prompt span {
  display: block;
}

.gpt-cta-prompt small {
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.gpt-cta-prompt span {
  color: #fff;
  margin-top: 5px;
  font-weight: 700;
  line-height: 1.45;
}

.gpt-prompt-section {
  padding-top: 0;
}

.problem-link-section {
  padding-top: 0;
}

.problem-link-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.problem-link-card h2 {
  margin-top: 8px;
  max-width: 780px;
}

.problem-link-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 760px;
}

.readiness-button-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: var(--shadow-soft);
}

.readiness-button-card h2 {
  margin-top: 10px;
  max-width: 820px;
}

.readiness-button-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
  max-width: 780px;
}

.readiness-button-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 20px;
  margin-top: 24px;
}

.readiness-button-actions .button {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(25, 0, 143, 0.16);
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.readiness-button-actions .button-ghost {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.problem-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.problem-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, var(--soft));
  color: var(--blue-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 850;
  line-height: 1.25;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.problem-link::after {
  content: ">";
  color: var(--green);
  font-size: 1.15rem;
  line-height: 1;
}

.problem-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0,166,106,0.26);
  box-shadow: 0 10px 22px rgba(18, 19, 26, 0.06);
}

gpt-prompt-examples {
  display: block;
}

.prompt-examples-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.prompt-examples-card h2 {
  margin-top: 10px;
  max-width: 760px;
}

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

.sitemap-country {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sitemap-country h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.sitemap-country ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sitemap-country a {
  color: var(--blue-dark);
  font-weight: 800;
}

.sitemap-country a:hover {
  color: var(--green-dark);
}

.prompt-examples-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: prompt;
}

.prompt-examples-list li {
  counter-increment: prompt;
  position: relative;
  min-height: 100%;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, var(--soft));
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.55;
  font-weight: 700;
}

.prompt-examples-list li::before {
  content: counter(prompt);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.025);
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  height: auto;
  margin: 0 0 28px;
  color: var(--green);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.seo-text {
  padding: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  columns: 2 340px;
  column-gap: 48px;
}

.seo-text h2 {
  column-span: all;
  margin-bottom: 38px;
}

.seo-text p {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
}

.country-hub-section .section-heading {
  max-width: 980px;
}

.hub-split {
  margin-top: 32px;
  margin-bottom: 32px;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.62;
}

.plain-list li::marker {
  color: var(--green-dark);
}

.country-hub-section .card p,
.country-hub-section .route p,
.country-hub-section .proof p {
  color: var(--ink);
  font-size: 1.05rem;
}

.guide-depth-section .section-heading {
  max-width: 980px;
}

.comparison-table-wrap {
  margin: 32px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.025);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.comparison-table th {
  background: #f6f8ff;
  color: var(--blue-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.related-guides-card {
  margin: 32px 0;
}

.mini-faq-heading {
  margin-top: 34px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq {
  position: relative;
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.faq::before {
  content: "";
  display: block;
  height: 4px;
  margin: -26px -26px 22px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

footer {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background: #fbfcff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(520px, 1.45fr);
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 28px;
}
.footer p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 680px;
  margin: 0;
}

.footer-utility-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 800;
}

.footer-utility-link:hover {
  color: var(--green-dark);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 24px 30px;
  color: var(--muted);
  font-weight: 700;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-link-group a {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.25;
}

.footer-link-group a:hover {
  color: var(--green);
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .split, .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  h1,
  .hero-copy,
  .hero-actions,
  .hero-support,
  .hero-meta,
  .hero-panel {
    animation: none;
  }
  .cards-grid, .country-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 34px; }
  .cta-actions { justify-content: flex-start; }
  .readiness-button-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-links { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
  .floating-cta {
    left: 50%;
    right: auto;
    bottom: 14px;
    display: inline-flex;
    width: auto;
    max-width: calc(100% - 32px);
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 0.86rem;
    line-height: 1.1;
    transform: translateX(-50%);
    white-space: normal;
  }

  .floating-cta:hover {
    transform: translateX(-50%) translateY(-2px);
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand img { width: 150px; }
  h1,
  h2,
  h3,
  p,
  .lead,
  .hero-copy,
  .hero-support,
  .section-heading,
  .panel-title p,
  .cta-band p,
  .problem-link-card p,
  .readiness-button-card p,
  .seo-text p {
    max-width: 100%;
  }

  h1,
  h2,
  h3 {
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 3.55rem);
    line-height: 1.02;
  }

  h2,
  .problem-link-card h2,
  .readiness-button-card h2,
  .prompt-examples-card h2,
  .seo-text h2 {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.2rem;
    line-height: 1.18;
  }

  .hero-copy,
  .lead {
    font-size: 1.12rem;
    line-height: 1.62;
  }

  .button {
    width: 100%;
    min-height: 48px;
    height: auto;
    padding: 12px 16px;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .hero-actions { width: 100%; }
  .hero-meta, .cards-grid, .country-grid, .steps, .faq-grid { grid-template-columns: 1fr; }
  .readiness-button-actions { grid-template-columns: 1fr; }
  .problem-link-grid { grid-template-columns: 1fr; }
  .prompt-examples-list, .sitemap-list-grid { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
  .panel-inner {
    min-height: 470px;
    padding: 22px;
    gap: 30px;
  }

  .panel-title h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    line-height: 1.08;
  }

  .proof,
  .seo-text,
  .cta-band,
  .problem-link-card,
  .readiness-button-card,
  .prompt-examples-card,
  .sitemap-country {
    padding: 24px;
  }

  .readiness-button-actions .button {
    min-height: 46px;
    padding: 12px 14px;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .problem-link {
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 15px;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .problem-link::after {
    flex: 0 0 auto;
  }

  .footer-links { grid-template-columns: 1fr; }
  .floating-cta {
    left: 50%;
    right: auto;
    width: auto;
    max-width: calc(100% - 32px);
  }
}
