/* WFP Donation Page - Stylesheet v2 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --blue: #007dbc;
  --blue-dark: #005f8e;
  --blue-light: #e8f4fb;
  --text: #1a1a2e;
  --text-light: #555b6e;
  --border: #dde1e9;
  --bg: #f4f7fa;
  --white: #ffffff;
  --success: #16a34a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .15);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 100
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-emblem {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Slogan SAUVER DES VIES / CHANGER LES VIES à droite du logo */
.header-slogan {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  margin-left: 10px;
  border-left: 2px solid var(--blue);
  gap: 1px;
}

.header-slogan span {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .4px;
  line-height: 1.4;
  text-transform: uppercase;
}

.logo-org {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.35;
  display: block
}

.logo-slogan {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  margin-left: 2px;
  border-left: 1px solid #dde1e9
}

.logo-slogan span {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .5px;
  line-height: 1.4
}

/* ===== HERO BANNER ===== */
.hero-banner {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
  height: 200px;
  /* même ratio que im walla.png */
  display: flex;
  align-items: flex-end;
  /* texte ancré en bas */
}

/* Image pleine bannière, alignée à droite comme dans im walla.png */
.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  pointer-events: none;
}

/* Gros overlay noir sur la gauche : cache ~70% pour reproduire le noir profond de l'original */
.hero-overlay-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  background: linear-gradient(to right, #000 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Assombrissement global supplémentaire (rend le centre quasi-noir comme sur l'image) */
.hero-overlay-center {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.9) 30%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Texte GAZA en bas à gauche, par-dessus les overlays */
.hero-text {
  position: relative;
  z-index: 2;
  padding: 0 0 24px 40px;
}

.hero-title-main {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== FREQUENCY BAR ===== */
.freq-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: var(--white);
  border-bottom: 3px solid var(--border);
}

.freq-bar-btn {
  padding: 18px 24px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}

.freq-bar-btn.active {
  background: var(--blue);
  color: var(--white);
  border-bottom-color: var(--blue-dark);
}

.freq-bar-btn:not(.active):hover {
  background: var(--bg);
  color: var(--blue);
}

/* ===== PAGE WRAP ===== */
.page-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* ===== FORM CARD ===== */
.form-outer {
  width: 100%
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 24px;
}

/* ===== STEP 1 TWO-COLUMN LAYOUT ===== */
.step1-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}

.s1-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.s1-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* 3-button grid (matches screenshot) */
.amount-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

/* Devise link */
.devise-link {
  display: inline-block;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 500;
}

.devise-link:hover {
  text-decoration: underline;
}

/* Currency select styled like screenshot */
.devise-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  padding-right: 28px;
  overflow: hidden;
}

.devise-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  padding: 9px 12px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  cursor: pointer;
  width: 160px;
}

.devise-select-wrap .select-arrow {
  position: absolute;
  right: 8px;
  pointer-events: none;
}

/* Custom "Autre" input with $ prefix (matches screenshot) */
.custom-autre-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: #f0f0f0;
  overflow: hidden;
  width: 220px;
}

.autre-prefix {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  background: #e5e7ea;
  border-right: 1.5px solid var(--border);
  line-height: 1;
}

.custom-autre-wrap input {
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  width: 100%;
}

.custom-autre-wrap input::-webkit-outer-spin-button,
.custom-autre-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* RIGHT COL: impact image + blue box */
.step1-right {
  width: 100%;
}

.impact-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.impact-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.impact-desc-box {
  background: var(--blue);
  padding: 14px 16px;
}

.impact-desc-box p {
  font-size: 13px;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* Continue button — left-aligned under the grid */
.btn-continue {
  max-width: 280px;
  margin-bottom: 12px;
}

/* ===== STEPS BAR ===== */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: all .3s ease
}

.step span {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  transition: color .3s
}

.step.active .step-circle {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 4px var(--blue-light)
}

.step.active span {
  color: var(--blue);
  font-weight: 600
}

.step.done .step-circle {
  background: var(--success);
  color: var(--white)
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 14px;
  transition: background .3s;
  min-width: 48px
}

.step-line.done {
  background: var(--success)
}

/* Step 2 Dark Theme */
.form-card.dark-theme {
  background: #143755;
  color: #fff;
}

.form-card.dark-theme .form-title,
.form-card.dark-theme .form-subtitle {
  color: #fff;
}

.form-card.dark-theme .field-group label {
  color: #fff;
  font-weight: 700;
  text-transform: none;
  font-size: 14px;
}

.form-card.dark-theme .field-group input,
.form-card.dark-theme .field-group select {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Opt-in Box specific to Step 2 */
.optin-box {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  padding: 16px;
  border-radius: 4px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.optin-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.optin-box p {
  font-size: 13px;
  color: #1e3a8a;
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
}

/* Phone Input Styling */
.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-flag-select {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.phone-input-group input {
  flex: 1;
}
.phone-flag-img {
  width: 24px;
  height: 18px;
  display: block;
  border-radius: 2px;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-flag-img {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  display: block;
  background: #fff;
  border: 1px solid #ccc;
}

.disclaimer-text {
  font-size: 12px;
  color: #e0f2fe;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 8px;
}

.read-more-link {
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}
.static-coordinates {
  margin-top: 32px;
}

.static-coordinates .static-form {
  max-width: 380px;
}

.static-coordinates .form-card {
  padding: 28px 28px 32px;
}
.monthly-donation {
  margin: 36px 0 24px;
}

.monthly-inner h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.monthly-inner p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.monthly-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 520px;
}

.monthly-btn {
  background: #0b78b7;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.monthly-btn.active {
  background: #0b6aa0;
}

.monthly-panel {
  margin-top: 16px;
  background: #eef2f5;
  border-radius: 8px;
  padding: 16px 18px;
  max-width: 520px;
}

.monthly-panel-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b2239;
}

.monthly-panel-text {
  color: var(--text-light);
  font-size: 13px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  width: fit-content;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #128c7e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.testimonials {
  margin: 28px 0 18px;
}

.testimonials-header {
  background: #dfe7ec;
  color: #0b2239;
  text-align: center;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #cbd5db;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: opacity .25s ease, transform .25s ease;
}

.testimonial-card.fading {
  opacity: 0;
  transform: translateY(4px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 6px;
}

.testimonial-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.testimonial-check {
  color: #1d9bf0;
  font-weight: 900;
}

.testimonial-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.testimonial-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  border: 1px solid #d1d5db;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5db;
}

.testimonial-dot.active {
  background: #0b78b7;
}

.donation-banner {
  background: #dfe7ec;
  padding: 16px 18px;
  border-radius: 4px;
  margin: 18px 0 26px;
  font-size: 14px;
}

.about-wfp {
  margin: 6px 0 24px;
}

.about-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

.about-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.about-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.about-text h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.about-text p {
  margin-bottom: 10px;
  color: var(--text);
}

.info-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0;
}

.panel {
  border-radius: 6px;
  padding: 20px 22px;
}

.contact-panel {
  background: #0b78b7;
  color: #fff;
}

.contact-panel h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 600;
}

.contact-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.privacy-panel {
  background: #e6edf2;
  color: #0b2239;
}

.privacy-panel h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.privacy-link {
  color: #0b78b7;
  text-decoration: underline;
}

.funding-note {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 16px 0 30px;
}

.footer-extended {
  background: #143755;
  color: #fff;
  padding: 24px 0 18px;
}

.footer-extended-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.footer-address {
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,.8);
}

.footer-links-extended {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
}

.footer-links-extended a {
  color: #fff;
  text-decoration: none;
}

.hidden {
  display: none;
}

.privacy-page {
  background: #f4f7fa;
  min-height: calc(100vh - 88px);
  padding: 32px 0 60px;
}

.privacy-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-brand {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  margin-bottom: 18px;
}

.privacy-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.privacy-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.privacy-brand-title {
  font-size: 18px;
  font-weight: 800;
}

.privacy-subtitle {
  margin-top: 8px;
  font-weight: 700;
  color: #0b78b7;
}

.privacy-content {
  background: #fff;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  color: var(--text);
}

.privacy-content h2 {
  font-size: 18px;
  margin: 18px 0 8px;
  font-weight: 800;
}

.privacy-content h3 {
  font-size: 15px;
  margin: 14px 0 6px;
  font-weight: 700;
}

.privacy-content p {
  margin-bottom: 12px;
  color: var(--text);
}

.privacy-content ul {
  padding-left: 18px;
  margin: 8px 0 14px;
}

.privacy-content li {
  margin-bottom: 6px;
}
.form-step {
  display: none
}

.form-step.active {
  display: block;
  animation: fadeIn .3s ease
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5
}

/* Impact teaser */
.impact-teaser {
  font-size: 13px;
  color: var(--text-light);
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 18px
}

.impact-teaser span {
  font-weight: 700;
  color: var(--blue)
}

/* Amount grid */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px
}

.amount-btn {
  padding: 16px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Open Sans', sans-serif
}

.amount-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.amount-btn.selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 125, 188, .35);
  transform: translateY(-1px)
}

/* Custom amount */
.custom-amount-wrap {
  margin-bottom: 16px
}

.custom-amount-wrap label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.custom-input-wrap {
  position: relative
}

.currency-symbol {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  pointer-events: none
}

.custom-input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 32px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color .2s
}

.custom-input-wrap input:focus {
  border-color: var(--blue)
}

.custom-input-wrap input::-webkit-outer-spin-button,
.custom-input-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none
}

/* Selected summary */
.selected-summary {
  background: linear-gradient(135deg, var(--blue-light), #dff0fa);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 22px;
  text-align: center
}

.selected-summary strong {
  color: var(--blue);
  font-size: 20px
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 15px 20px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s ease;
  margin-bottom: 12px
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 125, 188, .4)
}

.btn-primary:active {
  transform: translateY(0)
}

.btn-donate {
  background: linear-gradient(135deg, #007dbc, #0099d9);
  font-size: 16px;
  padding: 16px 20px
}

.btn-secondary {
  padding: 14px 18px;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  margin-bottom: 12px;
  white-space: nowrap
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue)
}

.btn-row {
  display: flex;
  gap: 12px
}

.btn-row .btn-primary {
  flex: 1;
  margin-bottom: 12px
}

.btn-row .btn-secondary {
  margin-bottom: 12px
}

.form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px
}

.form-footer-note svg {
  stroke: var(--text-light);
  flex-shrink: 0
}

/* Fields */
.field-group {
  margin-bottom: 14px
}

.field-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.field-group input,
.field-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.field-group input:focus,
.field-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light)
}

.field-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.field-row.two-col .field-group {
  margin-bottom: 14px
}

/* Checkboxes */
.optin-group {
  margin-bottom: 16px
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.5
}

.checkbox-label input[type="checkbox"] {
  display: none
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .2s;
  position: relative;
  background: var(--white)
}

.checkbox-label input:checked+.checkbox-custom {
  background: var(--blue);
  border-color: var(--blue)
}

.checkbox-label input:checked+.checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg)
}

.link {
  color: var(--blue);
  text-decoration: none
}

.link:hover {
  text-decoration: underline
}

/* Recap */
.recap-box {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border)
}

.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px dashed var(--border)
}

.recap-row:last-of-type {
  border-bottom: none
}

.recap-row.tax strong {
  color: var(--success)
}

.recap-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--border);
  margin-top: 8px
}

.recap-total strong {
  color: var(--blue);
  font-size: 18px
}

/* Payment */
.payment-methods {
  margin-bottom: 16px
}

.pm-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px
}

.pm-tab {
  flex: 1;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text-light);
  transition: all .2s
}

.pm-tab.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light)
}

.pm-content.hidden {
  display: none
}

.card-input-wrap input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color .2s
}

.card-input-wrap input:focus {
  border-color: var(--blue)
}

.paypal-info {
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 14px
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px
}

/* Success */
.success-wrap {
  text-align: center;
  padding: 20px 0
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.success-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px
}

.success-msg {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6
}

.success-box {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 8px
}

.success-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px
}

.success-detail strong {
  color: var(--blue);
  font-size: 18px
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, .6);
  padding: 24px 0;
  margin-top: 20px
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer p {
  font-size: 12px
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .9)
}

/* Responsive */
@media(max-width:700px) {
  .hero-title-main {
    font-size: 36px
  }

  .hero-text {
    padding: 28px 28px
  }

  .hero-photo {
    width: 40%
  }

  .form-card {
    padding: 24px 18px
  }

  .amount-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .hero-banner {
    min-height: 160px
  }

  .hero-title-main {
    font-size: 28px
  }

  .hero-photo {
    width: 35%
  }

  .logo-slogan {
    display: none
  }
}
