/* ---------- Base & Theme ---------- */
:root{
  --bg-top: #FFA733;
  --bg-bottom: #FF7A00;
  --primary: #FF7A00;
  --primary-dark: #E36700;
  --ink: #1F2937;               /* near-black */
  --ink-soft: #374151;           /* dark grey */
  --muted: #6B7280;             /* grey */
  --card: #FFFFFF;
  --ring: rgba(255,122,0,.35);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--ink);
  line-height: 1.6;
}

/* Full-page gold→orange gradient */
.bg{
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  background-attachment: fixed;
}

/* ---------- Header ---------- */
.site-header{
  padding: 36px 16px 20px;
  text-align: center;
}
.site-logo{
  height: 82px;
  width: auto;
  display: inline-block;
  /* IMPORTANT: no extra drop shadow or box—lets a transparent PNG blend perfectly */
  filter: none;
}
.tagline{
  margin: 12px 0 0;
  color: #fff;
  opacity: .9;
  font-weight: 600;
  letter-spacing: .3px;
}

/* ---------- Layout ---------- */
.wrap{
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px clamp(22px, 3.5vw, 48px);
  margin-bottom: 28px;
}

.center{ text-align:center; }

.hero .display{
  margin: 0 0 10px;
}

/* ---------- Type ---------- */
.display{
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 40px);
  line-height: 1.2;
  letter-spacing: .2px;
  color: var(--ink);
}

.h1{
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.25;
  margin: 0 0 10px;
  font-weight: 800;
}
.h2{
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 18px;
  font-weight: 800;
}
.h3{
  font-size: clamp(18px, 1.8vw, 20px);
  margin: 16px 0 8px;
  font-weight: 700;
}

.eyebrow{
  color: var(--ink-soft);
  font-weight: 700;
  margin: 8px 0 6px;
}
.lead{
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  margin: 6px 0 18px;
}

.bullets{
  margin: 14px 0 24px 18px;
  color: var(--ink-soft);
}

/* ---------- Buttons & Chips ---------- */
.btn{
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .06s ease, box-shadow .25s ease, background .2s ease;
}
.btn-primary{
  color: #fff;
  background: linear-gradient(180deg, #FF8F1A 0%, var(--primary) 100%);
  box-shadow: 0 6px 18px rgba(255,122,0,.35);
}
.btn-primary:hover{ transform: translateY(-1px); background: linear-gradient(180deg, #FFA73A 0%, var(--primary) 100%); }
.btn-primary:active{ transform: translateY(0); }

.btn-ghost{
  background: #fff;
  color: var(--ink);
  border: 2px solid #E5E7EB;
}
.btn-ghost:hover{ border-color: #D1D5DB; }

.cta-row{ margin-top: 8px; }

/* Language chips */
.lang-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.chip{
  background: #FFF7ED;
  border: 2px solid #FFD0A6;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
.chip:hover{ background: #FFE7CB; }

/* ---------- Form Grid ---------- */
.form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
  margin-top: 14px;
}

.field{ display: flex; flex-direction: column; gap: 8px; }
.field label{ font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea{
  width: 100%;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 16px;
  background: #F9FAFB;
  outline: none;
  transition: border .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
  background: #fff;
}

.span-2{ grid-column: 1 / -1; }

.check{ display: flex; align-items: center; }
.check label{ display: inline-flex; gap: 10px; align-items: flex-start; }
.check input[type="checkbox"]{
  width: 20px; height: 20px; margin-top: 2px;
  accent-color: var(--primary);
}

.notice{
  background: #FFF4E8;
  border: 1.5px solid #FFD9B5;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--ink-soft);
}

.actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Thank You ---------- */
.checkmark{
  width: 78px; height: 78px;
  border-radius: 50%;
  background: #22C55E;
  color: #fff; display: inline-flex; align-items:center; justify-content:center;
  font-size: 42px; font-weight: 800;
  box-shadow: 0 10px 22px rgba(34,197,94,.35);
  margin: 8px 0 6px;
}

/* ---------- Footer ---------- */
.foot{
  text-align: center;
  color: #fff;
  opacity: .9;
  padding: 26px 16px 38px;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px){
  .site-logo{ height: 72px; }
  .form-grid{ grid-template-columns: 1fr; }
  .actions{ justify-content: center; }
}
