:root {
  --aw-primary-950: #081c2c;
  --aw-primary-900: #0b2a46;
  --aw-primary-850: #0c4266;
  --aw-primary-800: #0e76bc;
  --aw-primary-700: #1498db;
  --aw-primary-650: #14a9d4;
  --aw-primary-600: #17b7c9;
  --aw-primary-550: #1fc0d0;
  --aw-primary-500: #22c7d6;
  --aw-primary-400: #68dbe6;
  --aw-primary-300: #a8edf3;
  --aw-primary-200: #d8f7fa;
  --aw-primary-100: #effbfd;

  --aw-accent-700: #0c4f89;
  --aw-accent-600: #0f5fa5;
  --aw-accent-500: #0f79c2;
  --aw-accent-400: #4a9ed7;

  --aw-success: #1ea672;
  --aw-warning: #d6a540;
  --aw-danger: #d9534f;

  --aw-bg-page: #edf7fb;
  --aw-bg-soft: #f6fbfe;
  --aw-bg-soft-2: #f9fdff;
  --aw-surface: rgba(255, 255, 255, 0.86);
  --aw-surface-strong: #ffffff;
  --aw-surface-alt: rgba(255, 255, 255, 0.72);
  --aw-surface-dark: #0f2235;
  --aw-surface-dark-2: #122c45;

  --aw-text-strong: #0f2232;
  --aw-text: #334759;
  --aw-text-soft: #61778c;
  --aw-text-faint: #8ea5b8;
  --aw-text-on-dark: rgba(255, 255, 255, 0.94);
  --aw-text-on-dark-soft: rgba(255, 255, 255, 0.75);

  --aw-border: rgba(14, 118, 188, 0.12);
  --aw-border-strong: rgba(14, 118, 188, 0.22);
  --aw-border-dark: rgba(255, 255, 255, 0.10);

  --aw-shadow-xs: 0 6px 16px rgba(8, 28, 44, 0.04);
  --aw-shadow-sm: 0 12px 26px rgba(8, 28, 44, 0.06);
  --aw-shadow-md: 0 22px 50px rgba(8, 28, 44, 0.10);
  --aw-shadow-lg: 0 30px 70px rgba(15, 95, 165, 0.15);
  --aw-shadow-xl: 0 42px 110px rgba(11, 42, 70, 0.18);

  --aw-radius-xs: 10px;
  --aw-radius-sm: 14px;
  --aw-radius-md: 22px;
  --aw-radius-lg: 30px;
  --aw-radius-xl: 40px;
  --aw-radius-pill: 999px;

  --aw-section-y: 112px;
  --aw-section-y-tablet: 88px;
  --aw-section-y-mobile: 72px;
  --aw-nav-height: 88px;
  --aw-container-max: 1240px;

  --aw-transition-fast: 0.18s ease;
  --aw-transition: all 0.28s ease;
  --aw-transition-slow: all 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================
   RESET / GLOBAL
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--aw-text);
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(34, 199, 214, 0.11), transparent 28%),
    radial-gradient(circle at top right, rgba(20, 152, 219, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.50), rgba(255,255,255,0)),
    var(--aw-bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main,
section,
header,
footer,
article,
aside,
nav {
  position: relative;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--aw-transition);
}

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

::selection {
  background: rgba(34, 199, 214, 0.22);
  color: var(--aw-text-strong);
}

:focus-visible {
  outline: 3px solid rgba(34, 199, 214, 0.26);
  outline-offset: 3px;
  border-radius: 12px;
}

[id] {
  scroll-margin-top: calc(var(--aw-nav-height) + 18px);
}

.container {
  width: min(100% - 28px, var(--aw-container-max));
  position: relative;
  z-index: 2;
}

.fw-black {
  font-weight: 900 !important;
}

.z-2 {
  z-index: 2 !important;
}

/* =========================
   ACCESSIBILITY
   ========================= */
.visually-hidden-focusable:not(:focus):not(:focus-visible) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.aw-skip-link {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--aw-primary-900), var(--aw-accent-500));
  color: #fff;
  box-shadow: var(--aw-shadow-lg);
}

/* =========================
   BASE LAYOUT
   ========================= */
.section-aw {
  position: relative;
  padding: var(--aw-section-y) 0;
  z-index: 1;
}

.section-aw--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.88));
}

.section-aw--dark {
  background:
    radial-gradient(circle at top left, rgba(34, 199, 214, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(104, 219, 230, 0.10), transparent 24%),
    linear-gradient(135deg, rgba(11, 42, 70, 0.98), rgba(15, 95, 165, 0.94));
  color: var(--aw-text-on-dark);
  overflow: hidden;
}

.section-aw--dark::before {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(4px);
  pointer-events: none;
}

.aw-divider {
  width: 100%;
  height: 1px;
  margin: 42px 0 36px;
  background: linear-gradient(90deg, transparent, rgba(14, 118, 188, 0.18), transparent);
}

/* =========================
   NAVBAR
   ========================= */
.aw-navbar {
  min-height: var(--aw-nav-height);
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(14, 118, 188, 0.08);
  box-shadow: 0 10px 32px rgba(11, 42, 70, 0.05);
}

.aw-navbar .container {
  min-height: var(--aw-nav-height);
}

.aw-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--aw-text-strong);
}

.aw-navbar .navbar-brand span {
  color: var(--aw-primary-800);
}

.aw-navbar .nav-link {
  position: relative;
  padding-inline: 0.9rem !important;
  color: var(--aw-text-strong) !important;
  font-weight: 700;
  opacity: 0.92;
}

.aw-navbar .nav-link:hover,
.aw-navbar .nav-link.active,
.aw-navbar .nav-link[aria-current="page"] {
  color: var(--aw-primary-800) !important;
  opacity: 1;
}

.aw-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 0;
  height: 2.5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aw-primary-700), var(--aw-primary-500));
  box-shadow: 0 0 18px rgba(34, 199, 214, 0.24);
  transition: var(--aw-transition);
}

.aw-navbar .nav-link:hover::after,
.aw-navbar .nav-link:focus-visible::after,
.aw-navbar .nav-link.active::after,
.aw-navbar .nav-link[aria-current="page"]::after {
  width: 70%;
}

.aw-navbar-toggler {
  border: 0;
  padding: 0.5rem;
  box-shadow: none !important;
}

.aw-navbar-toggler__icon {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--aw-primary-900);
  position: relative;
  border-radius: 999px;
}

.aw-navbar-toggler__icon::before,
.aw-navbar-toggler__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--aw-primary-900);
}

.aw-navbar-toggler__icon::before {
  top: -8px;
}

.aw-navbar-toggler__icon::after {
  top: 8px;
}

/* =========================
   BUTTON SYSTEM
   ========================= */
.aw-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0.95rem 1.55rem;
  border: 0;
  border-radius: var(--aw-radius-pill);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: var(--aw-transition-slow);
}

.aw-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.24), transparent 44%);
  opacity: 0;
  transition: var(--aw-transition);
  z-index: -1;
}

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

.aw-btn:hover::before {
  opacity: 1;
}

.aw-btn-sm {
  min-height: 46px;
  padding: 0.8rem 1.2rem;
}

.aw-btn-primary {
  background: linear-gradient(135deg, var(--aw-primary-700), var(--aw-primary-500));
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(20, 152, 219, 0.25);
}

.aw-btn-primary:hover {
  box-shadow: 0 22px 44px rgba(20, 152, 219, 0.32);
}

.aw-btn-dark {
  color: #fff !important;
  background: rgba(11, 42, 70, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
}

.aw-btn-dark:hover {
  background: rgba(11, 42, 70, 1);
}

.aw-btn-outline {
  color: var(--aw-primary-800) !important;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(14, 118, 188, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aw-btn-outline:hover {
  background: rgba(20, 152, 219, 0.06);
  border-color: rgba(14, 118, 188, 0.34);
}

/* =========================
   HERO NEW
   ========================= */
.aw-hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 132px 0 88px;
  background:
    radial-gradient(circle at 14% 18%, rgba(34,199,214,0.16), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(14,118,188,0.12), transparent 22%),
    linear-gradient(135deg, #f8fcfe 0%, #edf7fb 48%, #e5f4fa 100%);
}

.aw-hero-shell::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 199, 214, 0.12), transparent 62%);
  filter: blur(4px);
  animation: awFloatOrb 10s ease-in-out infinite;
  pointer-events: none;
}

.aw-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 121, 194, 0.10), transparent 62%);
  animation: awPulseSoft 12s ease-in-out infinite;
  pointer-events: none;
}

.aw-hero-shell h1 {
  color: var(--aw-text-strong);
  letter-spacing: -0.055em;
}

.aw-hero-shell .lead {
  max-width: 620px;
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
}

.aw-trust-band {
  margin-top: 1rem;
}

.aw-trust-band > div {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(14, 118, 188, 0.08);
  box-shadow: var(--aw-shadow-xs);
}

/* =========================
   IMPACT PANEL / AMOUNTS
   ========================= */
.aw-impact-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(14, 118, 188, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90));
  box-shadow: var(--aw-shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aw-impact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--aw-primary-700), var(--aw-primary-500));
}

.aw-chip-selector {
  margin-bottom: 1rem;
}

.aw-amount-card {
  cursor: pointer;
}

.aw-amount-input:focus-visible + .aw-amount-box {
  outline: 3px solid rgba(34, 199, 214, 0.26);
  outline-offset: 3px;
}

.aw-amount-box {
  min-height: 88px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(239,251,253,0.95));
  border: 1px solid rgba(14, 118, 188, 0.12) !important;
  box-shadow: 0 10px 24px rgba(8, 28, 44, 0.04);
  transition: var(--aw-transition-slow);
}

.aw-amount-card:hover .aw-amount-box {
  transform: translateY(-4px);
  border-color: rgba(34, 199, 214, 0.34) !important;
  box-shadow: 0 18px 36px rgba(14, 118, 188, 0.12);
}

.aw-amount-input:checked + .aw-amount-box {
  transform: translateY(-4px);
  border-color: var(--aw-primary-500) !important;
  box-shadow: 0 24px 46px rgba(34, 199, 214, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(216,247,250,0.95));
}

.aw-impact-copy {
  padding: 0.75rem 0 0.5rem;
}

#aw-impact-value {
  color: var(--aw-primary-900);
  letter-spacing: -0.05em;
}

#aw-impact-description {
  color: var(--aw-text-soft);
}

/* =========================
   HEADINGS
   ========================= */
.aw-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 2.4rem;
}

.aw-heading--center {
  margin-inline: auto;
  text-align: center;
}

.aw-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aw-primary-800);
}

.aw-heading__title {
  margin: 0 0 0.95rem;
  color: var(--aw-text-strong);
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.aw-heading__text {
  margin: 0;
  color: var(--aw-text-soft);
  font-size: 1.05rem;
}

.section-aw--dark .aw-heading__title,
.section-aw--dark .aw-heading__eyebrow {
  color: #fff;
}

.section-aw--dark .aw-heading__text {
  color: var(--aw-text-on-dark-soft);
}

/* =========================
   CARD SYSTEM
   ========================= */
.aw-card,
.aw-benefit-card,
.aw-project-card,
.aw-step-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--aw-radius-lg);
  border: 1px solid var(--aw-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.82));
  box-shadow: var(--aw-shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--aw-transition-slow);
}

.aw-card::before,
.aw-benefit-card::before,
.aw-project-card::before,
.aw-step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aw-primary-700), var(--aw-primary-500));
  opacity: 0;
  transition: var(--aw-transition);
}

.aw-card:hover,
.aw-benefit-card:hover,
.aw-project-card:hover,
.aw-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--aw-border-strong);
  box-shadow: var(--aw-shadow-md);
}

.aw-card:hover::before,
.aw-benefit-card:hover::before,
.aw-project-card:hover::before,
.aw-step-card:hover::before {
  opacity: 1;
}

.aw-card__body {
  padding: 1.7rem;
}

.aw-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.6rem;
  color: var(--aw-primary-800);
  background: linear-gradient(135deg, rgba(20, 152, 219, 0.15), rgba(34, 199, 214, 0.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 22px rgba(14, 118, 188, 0.08);
}

.aw-card__title {
  margin: 0 0 0.65rem;
  color: var(--aw-text-strong);
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.aw-card__text {
  margin: 0;
  color: var(--aw-text);
}

/* =========================
   STEPS
   ========================= */
.aw-step-card {
  padding: 1.35rem 1.15rem;
}

.aw-flow-step__number {
  width: 44px;
  height: 44px;
  margin-bottom: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--aw-primary-800), var(--aw-primary-500));
  box-shadow: 0 12px 24px rgba(20, 152, 219, 0.22);
}

.aw-flow-step__title {
  margin: 0 0 0.55rem;
  color: var(--aw-text-strong);
  font-size: 1rem;
  font-weight: 800;
}

.aw-flow-step__text {
  margin: 0;
  color: var(--aw-text-soft);
  font-size: 0.95rem;
}

/* =========================
   LISTS
   ========================= */
.aw-list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw-list-clean li {
  position: relative;
  margin-bottom: 0.95rem;
  padding-left: 30px;
  color: var(--aw-text);
}

.aw-list-clean li:last-child {
  margin-bottom: 0;
}

.aw-list-clean li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: -1px;
  color: var(--aw-primary-700);
  font-size: 1.2rem;
  font-weight: 800;
}

.aw-list-clean--dark li,
.aw-list-clean--darkmode li {
  color: rgba(255,255,255,0.90);
}

.aw-list-clean--dark li::before,
.aw-list-clean--darkmode li::before {
  color: #8cebf5;
}

/* =========================
   FORM BOXES
   ========================= */
.aw-form-box {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid var(--aw-border);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--aw-shadow-md);
}

.aw-form-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 199, 214, 0.10), transparent 66%);
  pointer-events: none;
}

.aw-form-box--light {
  background: rgba(255,255,255,0.96);
}

.aw-form-box--glass {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aw-form-box--glass .aw-card__title,
.aw-form-box--glass .aw-note {
  color: #fff;
}

.aw-form-box .form-label {
  margin-bottom: 0.45rem;
  color: var(--aw-text-strong);
  font-weight: 700;
}

.aw-form-box .form-control,
.aw-form-box .form-select {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(14,118,188,0.16);
  background: rgba(255,255,255,0.94);
  color: var(--aw-text-strong);
  box-shadow: none;
  transition: var(--aw-transition);
}

.aw-form-box textarea.form-control {
  min-height: 128px;
  padding-top: 1rem;
}

.aw-form-box .form-control::placeholder {
  color: #92a7b8;
}

.aw-form-box .form-control:focus,
.aw-form-box .form-select:focus {
  background: #fff;
  border-color: rgba(14,118,188,0.34);
  box-shadow: 0 0 0 0.2rem rgba(20,152,219,0.10);
}

.aw-note {
  color: var(--aw-text-soft);
  font-size: 0.95rem;
}

.aw-inline-message {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 600;
  background: rgba(34,199,214,0.08);
  color: var(--aw-primary-900);
  border: 1px solid rgba(34,199,214,0.14);
}

/* =========================
   SWITCH / RADIO CARDS
   ========================= */
.aw-switch-stack {
  margin-top: 0.25rem;
}

.aw-switch-card {
  cursor: pointer;
}

.aw-switch-card span {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(14, 118, 188, 0.12) !important;
  font-weight: 700;
  color: var(--aw-text-strong);
  transition: var(--aw-transition);
}

.aw-switch-card:hover span {
  transform: translateY(-2px);
  border-color: rgba(34, 199, 214, 0.34) !important;
  box-shadow: var(--aw-shadow-xs);
}

.aw-switch-card input:checked + span {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(216,247,250,0.95));
  border-color: var(--aw-primary-500) !important;
  box-shadow: 0 18px 36px rgba(34, 199, 214, 0.14);
}

.aw-switch-card input:focus-visible + span {
  outline: 3px solid rgba(34, 199, 214, 0.26);
  outline-offset: 3px;
}

/* =========================
   PARTNER CARDS
   ========================= */
.aw-partner-card {
  height: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--aw-border);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--aw-shadow-sm);
  text-align: center;
  transition: var(--aw-transition);
}

.aw-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--aw-shadow-md);
}

.aw-partner-card span {
  display: block;
  color: var(--aw-text-strong);
  font-size: 0.94rem;
  font-weight: 800;
}

/* =========================
   FAQ / ACCORDION
   ========================= */
.aw-faq .accordion-item {
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--aw-border);
  border-radius: 22px !important;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--aw-shadow-xs);
}

.aw-faq .accordion-item:last-child {
  margin-bottom: 0;
}

.aw-faq .accordion-header {
  margin: 0;
}

.aw-faq .accordion-button {
  padding: 1.2rem 1.3rem;
  color: var(--aw-text-strong);
  background: transparent;
  box-shadow: none !important;
  font-weight: 800;
  border-radius: 0 !important;
}

.aw-faq .accordion-button:not(.collapsed) {
  color: var(--aw-primary-900);
  background: rgba(34,199,214,0.04);
}

.aw-faq .accordion-button:focus {
  box-shadow: none;
}

.aw-faq .accordion-body {
  padding: 0 1.3rem 1.25rem;
  color: var(--aw-text);
}

/* =========================
   CTA
   ========================= */
.aw-cta-box {
  position: relative;
  overflow: hidden;
  padding: 2.3rem;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, rgba(11,42,70,0.98), rgba(20,152,219,0.90));
  box-shadow: var(--aw-shadow-xl);
}

.aw-cta-box::before {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.aw-cta-box::after {
  content: "";
  position: absolute;
  inset: -90px auto auto -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(34,199,214,0.12);
  filter: blur(8px);
}

.aw-cta-box h2,
.aw-cta-box h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.aw-cta-box p {
  color: rgba(255,255,255,0.84);
}

/* =========================
   FLOATING MOBILE CTA
   ========================= */
.aw-floating-mobile-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1050;
  padding: 0.9rem 0 calc(0.9rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.88);
  border-top: 1px solid rgba(14, 118, 188, 0.12);
  box-shadow: 0 -14px 36px rgba(8, 28, 44, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* =========================
   FOOTER
   ========================= */
.aw-footer {
  background:
    radial-gradient(circle at top left, rgba(34,199,214,0.08), transparent 24%),
    linear-gradient(180deg, #0a1723, #0a1620);
  color: rgba(255,255,255,0.84);
}

.aw-footer__brand {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.aw-footer__muted {
  color: rgba(255,255,255,0.68);
}

.aw-footer .badge {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}

.aw-footer a {
  color: rgba(255,255,255,0.76);
}

.aw-footer a:hover {
  color: #fff;
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes awFloatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.04);
  }
}

@keyframes awPulseSoft {
  0%, 100% {
    opacity: 0.78;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes awFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.aw-heading,
.aw-card,
.aw-benefit-card,
.aw-project-card,
.aw-step-card,
.aw-form-box,
.aw-cta-box,
.aw-impact-panel,
.aw-partner-card {
  animation: awFadeUp 0.8s ease both;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1199.98px) {
  :root {
    --aw-section-y: 98px;
  }

  .aw-hero-shell {
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  :root {
    --aw-nav-height: 78px;
  }

  .section-aw {
    padding: var(--aw-section-y-tablet) 0;
  }

  .aw-navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(14,118,188,0.08);
    background: rgba(255,255,255,0.96);
    box-shadow: var(--aw-shadow-md);
  }

  .aw-navbar .nav-link {
    padding-block: 0.75rem !important;
  }

  .aw-hero-shell {
    padding: 116px 0 72px;
    min-height: auto;
  }

  .aw-card__body,
  .aw-form-box,
  .aw-cta-box {
    padding: 1.55rem;
  }
}

@media (max-width: 767.98px) {
  .section-aw {
    padding: var(--aw-section-y-mobile) 0;
  }

  .aw-hero-shell {
    padding: 102px 0 58px;
    min-height: auto;
    text-align: center;
  }

  .aw-hero-shell .lead {
    margin-inline: auto;
  }

  .aw-heading {
    margin-bottom: 2rem;
  }

  .aw-heading__title {
    font-size: clamp(1.72rem, 8vw, 2.28rem);
  }

  .aw-heading__text {
    font-size: 0.98rem;
  }

  .aw-card__body,
  .aw-form-box,
  .aw-cta-box,
  .aw-impact-panel {
    padding: 1.35rem !important;
  }

  .aw-trust-band {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: min(100% - 20px, var(--aw-container-max));
  }

  .aw-btn,
  .aw-btn-sm {
    width: 100%;
    min-height: 50px;
    padding: 0.88rem 1.1rem;
  }

  .aw-card__icon {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
  }

  .aw-cta-box h2,
  .aw-cta-box h3 {
    font-size: 1.5rem;
  }

  .aw-form-box,
  .aw-card,
  .aw-benefit-card,
  .aw-project-card,
  .aw-step-card,
  .aw-impact-panel,
  .aw-partner-card {
    border-radius: 20px;
  }

  .aw-amount-box {
    min-height: 78px;
    padding: 1rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}