:root {
  --bg: #f0ead7;
  --panel: #f7f1df;
  --panel-soft: #efe7d3;
  --text: #2d3b45;
  --muted: #60727d;
  --primary: #3f6f86;
  --primary-strong: #335f74;
  --accent: #3d8b7d;
  --danger: #b58900;
  --border: #d8ceb8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

.temp-banner {
  text-align: center;
  background: #e6dcc3;
  color: #5b4c2e;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-bottom: 1px solid #cdbf9f;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.alt {
  background: #ebe3cd;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(240, 234, 215, 0.92);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: #4c7488;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  letter-spacing: -0.02em;
}

.subtext {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.06rem;
  line-height: 1.62;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 24px 0 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(51, 95, 116, 0.32);
}

.btn:active {
  transform: translateY(1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.opportunity-card,
.time-card,
.country-card,
.trust-card,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.opportunity-card:hover,
.time-card:hover,
.country-card:hover,
.trust-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: #b9ac8e;
  box-shadow: 0 14px 28px rgba(65, 54, 27, 0.14);
}

.tiny,
.legal-note {
  color: var(--muted);
  font-size: 0.92rem;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
select {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}

.section-head {
  margin-bottom: 30px;
  max-width: 780px;
}

.result-box {
  margin-top: 16px;
  border-left: 3px solid var(--accent);
  background: #e3eee8;
  border-radius: 10px;
  padding: 12px 14px;
  display: none;
}

.result-box.show {
  display: block;
  animation: fadeSlide 0.3s ease;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.opportunity-card {
  padding: 0;
  overflow: hidden;
}

.opportunity-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.process-panel ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  margin: 0 0 8px;
  color: #4b7286;
  font-weight: 700;
  font-size: 0.85rem;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.life-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.life-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(58, 49, 31, 0.15);
}

.life-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.life-card figcaption {
  padding: 12px;
  font-weight: 600;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.coming-soon {
  opacity: 0.65;
  filter: blur(0.7px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.warning {
  border-color: #ccb879;
  background: #f4ebcf;
}

.hero-visual img,
.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.trust-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-inline span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #dfe7dd;
  color: #385f57;
  font-size: 0.85rem;
  font-weight: 600;
}

.simple-form {
  display: grid;
  gap: 14px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #f7f1df;
}

.site-footer a {
  color: #426b80;
}

.hero-panes {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pane {
  background: linear-gradient(180deg, #f9f4e6, #f1e9d6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pane:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(56, 47, 30, 0.14);
}

.pane-no {
  margin: 0 0 8px;
  font-weight: 800;
  color: #476f83;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(3px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.65, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.75s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .hero-panes,
  .opportunity-grid,
  .process-grid,
  .country-grid,
  .timeline-grid,
  .life-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .opportunity-card img,
  .life-card img {
    height: 220px;
  }
}
