/* =========================================================
   Delivery Partner Jobs — Modern Professional Landing
   ========================================================= */

:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --line: #e2e8f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #dbeafe;
  --accent: #f97316;
  --accent-soft: #ffedd5;
  --success: #059669;
  --success-soft: #d1fae5;
  --whatsapp: #25d366;
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 10px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
}

.container {
  max-width: 1140px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header .brand-mark {
  color: #fff;
}

.site-header .header-nav {
  color: rgba(255, 255, 255, 0.88);
}

.site-header .header-nav a:hover {
  color: #fff;
}

.site-header .btn-outline-header {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-header .btn-outline-header:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

/* Solid header after scroll */
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.site-header.is-scrolled .brand-mark {
  color: #fff;
}

.site-header.is-scrolled .header-nav {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .header-nav a:hover {
  color: #fff;
}

.site-header.is-scrolled .btn-outline-header {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .btn-outline-header:hover {
  border-color: #fff;
  color: #111;
  background: #fff;
}

.site-header.is-scrolled .btn-cta {
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: #f1f5f9;
  --bs-btn-hover-border-color: #f1f5f9;
  --bs-btn-hover-color: #000;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.25s ease;
  line-height: 1.2;
}

.brand-name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: inherit;
  opacity: 0.9;
  line-height: 1.2;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  font-size: 1.15rem;
}

.brand-logo-img {
  display: block;
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-logo-img--footer {
  height: 40px;
  flex-shrink: 0;
}

.header-nav {
  gap: 1.75rem;
  font-weight: 500;
  font-size: 0.925rem;
  transition: color 0.25s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-outline-header {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

/* ---------- Buttons ---------- */
.btn-cta {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  color: #fff;
}

.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.06);
  animation: hero-kenburns 18s ease-out forwards;
  filter: saturate(1.15) contrast(1.05) brightness(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(8, 15, 35, 0.94) 0%,
      rgba(15, 23, 42, 0.82) 38%,
      rgba(15, 23, 42, 0.35) 62%,
      rgba(249, 115, 22, 0.18) 100%),
    linear-gradient(to top, rgba(8, 15, 35, 0.75) 0%, transparent 42%),
    radial-gradient(ellipse 50% 60% at 75% 45%, transparent 20%, rgba(8, 15, 35, 0.25) 100%);
}

.hero-glow {
  position: absolute;
  right: 8%;
  top: 18%;
  width: min(420px, 45vw);
  height: min(420px, 45vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(10px);
  animation: glow-pulse 5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
  animation: badge-blink 1.8s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  max-width: 12ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  line-height: 1.08;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 600;
  color: #fdba74;
  margin-bottom: 0.9rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
  margin-bottom: 1.85rem;
  line-height: 1.65;
}

.hero-lead strong {
  color: #fff;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.35), rgba(249, 115, 22, 0.1));
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero .btn-cta {
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0;
  border-top: 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero-stat > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.2);
  font-size: 1.05rem;
  color: #fdba74;
}

.hero-stat strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-float-card {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1140px) / 2 + 1rem));
  bottom: 12%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  animation: float-card 4.5s ease-in-out infinite;
}

.hero-float-card > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-size: 1.15rem;
}

.hero-float-card strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-float-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

@keyframes hero-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

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

/* ---------- Platform strip ---------- */
.platform-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.platform-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.platform-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.platform-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.platform-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.section-head.text-start {
  margin-left: 0;
  text-align: left;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Features */
.section-why {
  background: var(--bg);
}

.why-carousel {
  padding: 0 0 2.5rem;
}

.why-carousel .feature-card {
  margin: 0 auto;
  max-width: 100%;
  background: #fff;
  box-shadow: var(--shadow);
}

.why-carousel-dots {
  position: static;
  margin: 1rem 0 0;
  gap: 0.35rem;
}

.why-carousel-dots [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: 0;
  opacity: 1;
  margin: 0;
  text-indent: 0;
}

.why-carousel-dots .active {
  background-color: var(--primary);
  width: 1.5rem;
  border-radius: 999px;
}

.feature-card {
  height: 100%;
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cbd5e1;
  background: #fff;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.icon-orange { background: var(--accent-soft); color: #ea580c; }
.icon-blue { background: var(--primary-soft); color: var(--primary); }
.icon-green { background: var(--success-soft); color: var(--success); }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-teal { background: #ccfbf1; color: #0d9488; }
.icon-red { background: #fee2e2; color: #dc2626; }

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.925rem;
}

/* Role */
.section-role {
  background: var(--bg-soft);
}

.media-frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.media-badge i {
  color: var(--success);
}

.role-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.role-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.role-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.15rem;
}

.role-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.role-list span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Eligibility */
.section-eligibility {
  background: #fff;
}

.info-panel {
  height: 100%;
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-panel-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.info-panel-head > i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
}

.info-panel-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.req-item i {
  color: var(--primary);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.req-item small {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.docs-panel {
  background: linear-gradient(160deg, #eff6ff 0%, #f8fafc 100%);
}

.doc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.doc-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.doc-list li:last-child {
  border-bottom: 0;
}

.doc-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 1.15rem;
}

.panel-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--success-soft);
  color: #047857;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.panel-note i {
  margin-top: 0.15rem;
}

/* Earnings */
.section-earnings {
  background: var(--bg-soft);
}

.earnings-highlight {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.earnings-highlight img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.earnings-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.earn-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.earn-card > i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--bg-muted);
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.earn-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  border: 0;
  color: #fff;
}

.earn-card.featured > i {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.earn-card.featured .earn-label {
  color: rgba(255, 255, 255, 0.75);
}

.earn-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.earn-card strong {
  font-size: 1.1rem;
}

/* Who */
.section-who {
  background: #fff;
}

.who-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.35rem 0.75rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.who-card:hover {
  border-color: var(--primary);
  background: #fff;
  transform: translateY(-3px);
}

.who-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.35rem;
}

.who-card span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Steps */
.section-steps {
  background: var(--bg-soft);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.step-card {
  position: relative;
  padding: 1.35rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.step-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-card > i {
  display: block;
  font-size: 1.75rem;
  color: var(--primary);
  margin: 0.5rem 0 0.75rem;
}

.step-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.step-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* FAQ */
.section-faq {
  background: #fff;
}

.faq-intro {
  top: calc(var(--header-h) + 16px);
}

.faq-visual {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faq-wrap {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-color: var(--ink);
  --bs-accordion-active-color: var(--ink);
}

.faq-wrap .accordion-item {
  background: var(--bg-soft);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-wrap .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: none;
}

.faq-wrap .accordion-button i {
  color: var(--primary);
}

.faq-wrap .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #fff;
}

.faq-wrap .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-wrap .accordion-body {
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft);
  background: #fff;
}

/* Apply */
.section-apply {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  color: #fff;
}

.apply-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.apply-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 64, 175, 0.88) 100%);
}

.section-apply .container {
  z-index: 1;
}

.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.apply-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 0.65rem;
}

.apply-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: #fff;
  margin-bottom: 0.85rem;
}

.apply-copy > p {
  color: rgba(255, 255, 255, 0.8);
}

.apply-perks {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.apply-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.apply-perks i {
  color: #34d399;
  font-size: 1.15rem;
}

.qr-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
}

.qr-placeholder img {
  width: 100% !important;
  height: 100% !important;
}

.qr-block strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.qr-block p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.apply-form-wrap {
  background: #fff;
  color: var(--ink);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.form-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.form-title > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.25rem;
}

.form-title h3 {
  margin: 0;
  font-size: 1.1rem;
}

.form-title p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.lead-form .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

.lead-form .form-label span {
  color: #ef4444;
}

.input-icon {
  position: relative;
}

.input-icon > i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  z-index: 2;
  font-size: 1rem;
  width: 1.1rem;
  text-align: center;
}

.lead-form .form-control,
.lead-form .form-select {
  border-radius: var(--radius-sm);
  border-color: var(--line);
  padding: 0.7rem 0.9rem;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.925rem;
}

.lead-form .input-icon .form-control {
  padding-left: 2.75rem;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  background: #fff;
}

.lead-form .form-check-label {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.form-alert {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-alert.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.form-alert.is-success {
  background: var(--success-soft);
  color: #047857;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  max-width: 360px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-cta {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-cta:hover {
  color: #93c5fd;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.05rem;
  background: var(--whatsapp);
  color: #fff !important;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
}

.whatsapp-float i {
  font-size: 1.3rem;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* Success modal */
.success-modal {
  border: 0;
  border-radius: var(--radius);
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-size: 1.75rem;
}

.success-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.success-modal p {
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-float-card {
    display: none;
  }

  .hero-media img {
    object-position: 75% center;
  }

  .hero-overlay {
    background:
      linear-gradient(100deg,
        rgba(8, 15, 35, 0.92) 0%,
        rgba(15, 23, 42, 0.78) 50%,
        rgba(15, 23, 42, 0.55) 100%),
      linear-gradient(to top, rgba(8, 15, 35, 0.8) 0%, transparent 50%);
  }

  .steps-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .apply-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-visual {
    display: none;
  }

  .req-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 2rem) 0 2.75rem;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 1.25rem;
  }

  .hero-title {
    max-width: none;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 0.65rem 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.85rem;
  }

  .platform-logos {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .platform-item {
    flex: 1 1 calc(33.333% - 0.45rem);
    min-width: 0;
    justify-content: center;
    padding: 0.45rem 0.35rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .platform-item i {
    font-size: 0.9rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .earnings-cards {
    grid-template-columns: 1fr;
  }

  .earn-card.featured {
    grid-column: auto;
  }

  .steps-track {
    grid-template-columns: 1fr;
  }

  .qr-block {
    display: none;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .apply-form-wrap {
    padding: 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-media img,
  .hero-glow,
  .hero-float-card,
  .badge-dot {
    animation: none !important;
  }
  .hero-media img {
    transform: scale(1.04);
  }
}
