/* ============================================
   Botlo Landing Page - Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --sage: #A3B18A;
  --emerald: #2D6A4F;
  --emerald-light: #40916C;
  --emerald-pale: #52B788;
  --sand: #F4F1DE;
  --sky: #CAF0F8;
  --coral: #F2CC8F;
  --coral-hover: #e8b96e;
  --dark: #1a1a2e;
  --text: #2c3e2d;
  --text-light: #5a6b5c;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(45, 106, 79, 0.08);
  --shadow-lg: 0 16px 48px rgba(45, 106, 79, 0.12);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Text Gradient ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Tag ---------- */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(45, 106, 79, 0.08);
  color: var(--emerald);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald);
  transition: var(--transition);
}

.nav-logo:hover {
  transform: scale(1.04);
}

.brand-sub {
  font-size: 0.6em;
  font-weight: 500;
  opacity: 0.65;
}

.logo-icon {
  width: 28px;
  height: 28px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.mock-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--emerald);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--emerald);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 106, 79, 0.08);
  border: 1.5px solid rgba(45, 106, 79, 0.15);
  border-radius: 8px;
  padding: 5px 12px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #1B4332;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
}

.lang-switch:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.25);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  overflow: hidden;
  background: var(--sand);
}

.hero-wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--sky);
  top: -10%;
  right: -10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--sage);
  bottom: -5%;
  left: -5%;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  top: 40%;
  left: 50%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(45, 106, 79, 0.1);
  color: var(--emerald);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(45, 106, 79, 0.15);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-highlight {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
  max-width: 460px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

/* Store badges */
.store-badge,
.store-badge-lg {
  position: relative;
  display: inline-block;
}

.store-badge img,
.store-badge-lg img {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition);
  border-radius: 8px;
  display: block;
}

.store-badge:hover img,
.store-badge-lg:hover img {
  transform: scale(1.07) translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 26, 46, 0.25);
}

.store-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.coming-soon-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a2e;
  opacity: 1;
}

/* Coming-soon toast */
.coming-soon-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark, #1a1a2e);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}

.coming-soon-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Hero Visual - 3-phone fan layout */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 3;
}

.scroll-icon {
  width: 24px;
  height: 24px;
  color: var(--sage);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.12));
  color: var(--accent, var(--emerald));
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.15), rgba(82, 183, 136, 0.2));
}

.feature-icon-wrap i,
.feature-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(45, 106, 79, 0.06);
  border-radius: 50px;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners {
  padding: 120px 0;
  background: #e8f5e9;
}

.partners-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.partners-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.partners-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.partners-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.partners-perks li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.perk-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.12));
  border-radius: 14px;
  color: var(--emerald);
  transition: var(--transition);
}

.partners-perks li:hover .perk-icon {
  transform: scale(1.12) rotate(-8deg);
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.18), rgba(82, 183, 136, 0.25));
}

.perk-icon i,
.perk-icon svg {
  width: 22px;
  height: 22px;
}

.partners-perks strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.partners-perks span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   BOTLO SECTION
   ============================================ */
.botlo {
  padding: 120px 0;
  background: var(--white);
}

.botlo-wave-bottom {
  line-height: 0;
  background: var(--white);
  margin-bottom: -2px;
}

.botlo-wave-bottom svg {
  display: block;
  width: 100%;
  height: 70px;
}

.botlo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.botlo-tag {
  background: rgba(196, 149, 12, 0.1);
  color: #9A7B0A;
}

.botlo-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.botlo-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.botlo-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.botlo-perks li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.botlo-perk-icon {
  background: linear-gradient(135deg, rgba(196, 149, 12, 0.1), rgba(242, 204, 143, 0.2)) !important;
  color: #9A7B0A !important;
}

.botlo-perks li:hover .perk-icon {
  transform: scale(1.12) rotate(-8deg);
}

.botlo-perks strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.botlo-perks span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.btn-botlo {
  padding: 16px 36px;
  background: #C4950C;
  color: var(--white);
  border-radius: 16px;
  box-shadow:
    0 6px 0 0 #7a5c06,
    0 10px 24px rgba(196, 149, 12, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-botlo:hover {
  background: #b0860a;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 9px 0 0 #7a5c06,
    0 14px 32px rgba(196, 149, 12, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-botlo:hover i,
.btn-botlo:hover svg {
  animation: wiggle 0.5s ease;
}

.btn-botlo:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 0 #7a5c06,
    0 4px 12px rgba(196, 149, 12, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition-duration: 0.1s;
}

.btn-botlo i,
.btn-botlo svg {
  width: 18px;
  height: 18px;
}

/* Earnings cards */
.botlo-earnings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.earning-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 106, 79, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.earning-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 149, 12, 0.15);
}

.earning-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 149, 12, 0.08), rgba(242, 204, 143, 0.15));
  border-radius: 12px;
  color: #9A7B0A;
  transition: var(--transition);
}

.earning-card:hover .earning-icon {
  transform: rotate(-10deg) scale(1.1);
}

.earning-icon i,
.earning-icon svg {
  width: 20px;
  height: 20px;
}

.earning-info {
  flex: 1;
}

.earning-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.earning-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.earning-amount {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(45, 106, 79, 0.06);
  padding: 6px 14px;
  border-radius: 50px;
}

.earning-amount-highlight {
  color: #9A7B0A;
  background: rgba(196, 149, 12, 0.1);
  font-size: 1.3rem;
}

.earning-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(196, 149, 12, 0.06), rgba(242, 204, 143, 0.1));
  border: 1px dashed rgba(196, 149, 12, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 4px;
}

.earning-summary-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 149, 12, 0.12);
  border-radius: 10px;
  color: #9A7B0A;
}

.earning-summary-icon i,
.earning-summary-icon svg {
  width: 20px;
  height: 20px;
}

.earning-summary p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}

.earning-summary strong {
  color: #9A7B0A;
  font-weight: 700;
}


/* ============================================
   WIN-WIN-WIN
   ============================================ */
.www-wave-bottom {
  line-height: 0;
  background: var(--sand);
  margin-bottom: -2px;
}

.www-wave-bottom svg {
  display: block;
  width: 100%;
  height: 70px;
}

.features-wave-bottom {
  line-height: 0;
  background: var(--white);
  margin-bottom: -2px;
}

.features-wave-bottom svg {
  display: block;
  width: 100%;
  height: 70px;
}

.win-win-win {
  padding: 100px 0 120px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.www-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* --- Cards: each pillar gets its own accent via CSS custom props --- */
.www-card {
  --card-accent: var(--emerald);
  --card-bg: var(--sand);
  --card-bg-hover: #ede9d4;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.www-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.www-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--card-accent);
  background: var(--card-bg-hover);
}

/* Per-pillar accents */
.www-card[data-www-color="warm"] {
  --card-accent: #8B7355;
  --card-bg: #faf7f0;
  --card-bg-hover: #f2ede2;
}

.www-card[data-www-color="gold"] {
  --card-accent: #C4950C;
  --card-bg: #fdf8eb;
  --card-bg-hover: #f7eecd;
}

.www-card[data-www-color="green"] {
  --card-accent: var(--emerald);
  --card-bg: #eef7f1;
  --card-bg-hover: #dcf0e2;
}

.www-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--card-accent);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.www-card:hover .www-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255, 255, 255, 0.9);
}

.www-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

/* Botlo tooltip */
.www-title-with-tooltip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.www-tooltip-trigger {
  position: relative;
  display: inline-flex;
  cursor: help;
  outline: none;
}

.www-tooltip-icon {
  width: 16px !important;
  height: 16px !important;
  color: var(--card-accent);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.www-tooltip-trigger:hover .www-tooltip-icon,
.www-tooltip-trigger:focus .www-tooltip-icon {
  opacity: 1;
}

.www-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  padding: 12px 16px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  z-index: 10;
}

.www-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--dark);
}

.www-tooltip-trigger:hover .www-tooltip,
.www-tooltip-trigger:focus .www-tooltip {
  opacity: 1;
  visibility: visible;
}

.www-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--card-accent);
  margin-bottom: 14px;
}

.www-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.www-tagline {
  display: inline-block;
  margin-top: auto;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--card-accent);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
}

/* Arrows between cards */
.www-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.www-arrow-svg {
  width: 48px;
  height: 24px;
  color: var(--emerald-pale);
}

/* Pulsating glow animation on arrows */
.www-arrow-svg path {
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

/* Arrow flow light animation */
.www-arrow-svg {
  animation: arrowFlow 2.5s ease-in-out infinite;
}

@keyframes arrowFlow {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; }
}

/* ---------- FAQ Cards (About page - Dla kogo) ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.06);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--emerald-pale), var(--coral));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(45, 106, 79, 0.12);
}

.faq-card:hover::before {
  opacity: 1;
}

.faq-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card:hover .faq-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.faq-icon-wrap i,
.faq-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.faq-icon--youth {
  background: rgba(100, 149, 237, 0.12);
  color: #4472C4;
}

.faq-icon--student {
  background: rgba(155, 89, 182, 0.12);
  color: #8E44AD;
}

.faq-icon--senior {
  background: rgba(231, 76, 60, 0.1);
  color: #C0392B;
}

.faq-icon--parent {
  background: rgba(242, 204, 143, 0.25);
  color: #B8860B;
}

.faq-icon--worker {
  background: rgba(45, 106, 79, 0.1);
  color: var(--emerald);
}

.faq-icon--eco {
  background: rgba(82, 183, 136, 0.12);
  color: var(--emerald-pale);
}

.faq-body {
  flex: 1;
  min-width: 0;
}

.faq-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.faq-earning {
  display: inline-block;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-pale));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ---------- Mission block (About page) ---------- */
.about-mission-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 20px;
}

.about-mission-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.15));
  border-radius: 22px;
  color: var(--emerald);
  animation: missionFloat 4s ease-in-out infinite;
}

.about-mission-icon i,
.about-mission-icon svg {
  width: 32px;
  height: 32px;
}

@keyframes missionFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-mission-block h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-mission-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- Value icons (About page) ---------- */
.value-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-icon-wrap {
  transform: scale(1.15) rotate(-8deg);
}

.value-icon-wrap i,
.value-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.value-icon--joy {
  background: linear-gradient(135deg, rgba(242, 204, 143, 0.3), rgba(242, 204, 143, 0.15));
  color: #B8860B;
}

.value-icon--transparency {
  background: linear-gradient(135deg, rgba(100, 149, 237, 0.15), rgba(100, 149, 237, 0.08));
  color: #4472C4;
}

.value-icon--community {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.15), rgba(45, 106, 79, 0.1));
  color: var(--emerald);
}

/* ============================================
   BUTTONS - Fun Claymorphism with animations
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Shimmer shine effect on all buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
  border-radius: inherit;
}

.btn:hover::after {
  animation: shimmerSlide 0.6s ease forwards;
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  100% { left: 120%; }
}

/* "How it works" link below store badges */
.hero-how-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: #1B4332;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.hero-how-link:hover {
  color: var(--emerald-light);
  gap: 8px;
}

.hero-how-link i,
.hero-how-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-how-link:hover i,
.hero-how-link:hover svg {
  transform: translateY(3px);
}

.btn-partner {
  padding: 16px 36px;
  background: var(--coral);
  color: var(--dark);
  border-radius: 16px;
  box-shadow:
    0 4px 0 0 #d4a96d,
    0 8px 20px rgba(242, 204, 143, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-partner:hover {
  background: var(--coral-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 4px 0 0 #d4a96d,
    0 16px 36px rgba(242, 204, 143, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-partner:hover i,
.btn-partner:hover svg {
  animation: wiggle 0.5s ease;
}

.btn-partner:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 0 #d4a96d,
    0 4px 12px rgba(242, 204, 143, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition-duration: 0.1s;
}

.btn-partner i,
.btn-partner svg {
  width: 18px;
  height: 18px;
}

/* Job apply button */
.btn-job {
  padding: 10px 24px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow:
    0 4px 0 #1b4332,
    0 6px 16px rgba(45, 106, 79, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-job:hover {
  background: var(--emerald-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 7px 0 #1b4332,
    0 12px 24px rgba(45, 106, 79, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-job:active {
  transform: translateY(1px) scale(0.97);
  box-shadow:
    0 1px 0 #1b4332,
    0 3px 8px rgba(45, 106, 79, 0.25);
  transition-duration: 0.1s;
}

/* Press kit download button – green, same style as btn-botlo/btn-partner */
.btn-press {
  padding: 16px 36px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 16px;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow:
    0 6px 0 0 #1b4332,
    0 10px 24px rgba(45, 106, 79, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-press:hover {
  background: var(--emerald-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 9px 0 0 #1b4332,
    0 14px 32px rgba(45, 106, 79, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-press:hover i,
.btn-press:hover svg {
  animation: wiggle 0.5s ease;
}

.btn-press:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 0 #1b4332,
    0 4px 12px rgba(45, 106, 79, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition-duration: 0.1s;
}

.btn-press i,
.btn-press svg {
  width: 20px;
  height: 20px;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(4deg); }
}

/* Sparkle particles (spawned by JS) */
.sparkle-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  pointer-events: none;
  animation: sparkleUp 0.6s ease-out forwards;
  z-index: 10;
}

.sparkle-particle:nth-child(odd) {
  background: var(--emerald-pale);
  width: 4px;
  height: 4px;
}

.sparkle-particle:nth-child(3n) {
  background: var(--sky);
  width: 5px;
  height: 5px;
}

@keyframes sparkleUp {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx, 20px), var(--dy, -30px)) scale(0);
  }
}

/* Partners Visual - Benefits Grid */
.partners-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 106, 79, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.12));
  border-radius: 14px;
  color: var(--emerald);
  margin-bottom: 16px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.12) rotate(-8deg);
}

.benefit-icon i,
.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================
   APP SECTION
   ============================================ */
.app-wave-top {
  line-height: 0;
  background: #e8f5e9;
  margin-top: -2px;
}

.app-wave-top svg {
  display: block;
  width: 100%;
  height: 70px;
}

.app-wave-bottom {
  line-height: 0;
  background: var(--sand);
  margin-bottom: -2px;
}

.app-wave-bottom svg {
  display: block;
  width: 100%;
  height: 70px;
}

.app-section {
  padding: 100px 0 120px;
  background: var(--sand);
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-phones {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  perspective: 800px;
}

.app-phone {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
}

.app-phone-1 {
  transform: rotate(-8deg) translateY(-30px);
  z-index: 2;
}

.app-phone-2 {
  transform: rotate(10deg) translateY(40px) translateX(10px);
  margin-left: -50px;
  z-index: 1;
}

.app-phone-1:hover {
  transform: rotate(-3deg) translateY(-38px) scale(1.1);
  z-index: 10;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}

.app-phone-2:hover {
  transform: rotate(2deg) translateY(20px) translateX(10px) scale(1.1);
  z-index: 10;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}

/* (Old mini-screen styles removed - replaced by preview-phone screens) */

/* App Content */
.app-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.app-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.app-download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   IMPACT COUNTER
   ============================================ */
/* Wave transition into impact section */
.impact {
  padding: 100px 0 120px;
  background: var(--emerald);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.impact::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.2), transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.impact > .section-container {
  position: relative;
  z-index: 1;
}

.impact .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--sky);
}

.impact .section-header h2 {
  color: var(--white);
}

.impact .section-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.impact .text-gradient {
  background: linear-gradient(135deg, var(--sky), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Impact manifesto */
.impact-manifesto {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
}

/* Impact Fact Slider */
.facts-slider {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding-bottom: 8px;
}

.facts-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.impact-fact {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}

.impact-fact-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--coral);
}

.impact-fact-icon i,
.impact-fact-icon svg {
  width: 28px;
  height: 28px;
}

.impact-fact-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.impact-fact-text strong {
  color: var(--coral);
  font-weight: 700;
}

/* Slider dots - leaf shaped */
.facts-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.facts-dot {
  width: 12px;
  height: 12px;
  border-radius: 50% 2px 50% 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  transform: rotate(45deg);
}

.facts-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.facts-dot.active {
  background: var(--coral);
  transform: rotate(45deg) scale(1.4);
}

/* Wave transition: impact → faq */
.impact-wave-bottom {
  line-height: 0;
  background: var(--emerald);
  margin-bottom: -2px;
}

.impact-wave-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 100px 0 80px;
  background: var(--white);
}

.faq-category {
  max-width: 760px;
  margin: 0 auto 40px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage);
}



.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--sand);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--emerald);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--emerald);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.faq-answer em {
  display: inline-block;
  margin-top: 8px;
  color: var(--emerald);
  font-weight: 600;
  font-style: normal;
}

.faq-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--emerald);
  color: white;
}

.faq-category-icon svg {
  width: 18px;
  height: 18px;
}

.faq-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.faq-more-wrap .btn-contact {
  width: auto;
  display: inline-flex;
}

/* FAQ subpage - sidebar + panels layout */
.faq-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 100%;
  overflow: hidden;
}

.faq-sidebar {
  position: static;
}

/* Mobile FAQ category dropdown - hidden on desktop */
.faq-mobile-select {
  display: none;
}

.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: all 0.2s ease;
}

.faq-nav-item:hover {
  background: var(--sand);
  color: var(--forest);
}

.faq-nav-item.active {
  background: var(--emerald);
  color: white;
}

.faq-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.faq-nav-icon svg {
  width: 18px;
  height: 18px;
}

.faq-nav-item.active .faq-nav-icon {
  color: white;
}

/* Panels */
.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

.faq-page .faq-category {
  margin: 0;
}

.faq-page .faq-category-title {
  display: none;
}

@media (max-width: 768px) {
  .faq-page-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-sidebar {
    display: none;
  }

  .faq-mobile-select {
    display: block;
    position: relative;
    z-index: 9000;
  }

  .faq-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--emerald);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
  }

  .faq-mobile-toggle:active {
    background: var(--forest);
  }

  .faq-mobile-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    flex-shrink: 0;
  }

  .faq-mobile-toggle-icon svg {
    width: 16px;
    height: 16px;
  }

  .faq-mobile-toggle-label {
    flex: 1;
    text-align: left;
  }

  .faq-mobile-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: transform 0.3s ease;
  }

  .faq-mobile-toggle.open .faq-mobile-chevron {
    transform: rotate(180deg);
  }

  .faq-mobile-dropdown {
    display: none;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 6px;
    z-index: 9000;
    overflow: hidden;
  }

  .faq-mobile-dropdown.open {
    display: flex;
  }

  .faq-mobile-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
  }

  .faq-mobile-option:hover,
  .faq-mobile-option:active {
    background: var(--sand);
  }

  .faq-mobile-option.active {
    background: var(--emerald);
    color: var(--white);
  }

  .faq-mobile-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .faq-mobile-option-icon svg {
    width: 16px;
    height: 16px;
  }

  .faq-panels {
    min-width: 0;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-question span {
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 0.88rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

.faq-cta-block {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 0;
}

.faq-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--emerald);
  color: white;
  margin-bottom: 20px;
}

.faq-cta-icon svg {
  width: 28px;
  height: 28px;
}

.faq-cta-block h2 {
  margin-bottom: 8px;
}

.faq-cta-block p {
  color: var(--text);
  margin-bottom: 24px;
}

/* Wave transition: faq → contact */
.faq-wave-bottom {
  line-height: 0;
  background: var(--white);
  margin-bottom: -2px;
}

.faq-wave-bottom svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--sand);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.12));
  border-radius: 14px;
  color: var(--emerald);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.12) rotate(-8deg);
}

.contact-item-icon i,
.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-item a {
  color: var(--emerald);
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--emerald-light);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(45, 106, 79, 0.12);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald-pale);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-contact {
  width: 100%;
  justify-content: center;
  padding: 16px 36px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 16px;
  box-shadow:
    0 6px 0 0 #1b4332,
    0 10px 24px rgba(45, 106, 79, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-contact:hover {
  background: var(--emerald-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 9px 0 0 #1b4332,
    0 14px 32px rgba(45, 106, 79, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-contact:hover i,
.btn-contact:hover svg {
  animation: wiggle 0.5s ease;
}

.btn-contact:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 0 #1b4332,
    0 4px 12px rgba(45, 106, 79, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition-duration: 0.1s;
}

.btn-contact i,
.btn-contact svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-top: 0;
}

.footer-wave {
  color: var(--dark);
  margin-top: -2px;
  /* Default: sand bg (for subpages) */
  background: var(--sand);
}

/* On index page, footer comes after contact (white bg) */
body:has(.contact) .footer-wave {
  background: var(--sand);
}

/* On subpages where last section before footer is white */
body:has(.subpage-hero-legal) .footer-wave,
body:has(.subpage-press-contact) .footer-wave {
  background: var(--white);
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h3 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-col a:hover {
  color: var(--coral);
  transform: translateX(6px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-socials a:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-4px) scale(1.1) rotate(-5deg);
}

.footer-socials i,
.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SUBPAGES - Shared layout
   ============================================ */
.subpage-hero {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--emerald);
  margin-bottom: 32px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.back-link i,
.back-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-link:hover {
  color: var(--emerald-light);
  gap: 10px;
}

.back-link:hover i,
.back-link:hover svg {
  transform: translateX(-6px);
}

.subpage-header {
  max-width: 640px;
}

.subpage-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
}

.subpage-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 8px;
}

.subpage-content {
  padding: 40px 0 120px;
}

/* Content cards */
.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 106, 79, 0.04);
}

.content-card.highlight-card {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.04), rgba(82, 183, 136, 0.06));
  text-align: center;
  border: 1px solid rgba(45, 106, 79, 0.1);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.15));
  border-radius: 18px;
  color: var(--emerald);
}

.highlight-icon i,
.highlight-icon svg {
  width: 28px;
  height: 28px;
}

.content-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.content-card p,
.content-card .lead {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

.content-card .lead {
  font-size: 1.15rem;
  font-weight: 500;
}

/* Prose for legal pages */
.prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.prose p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

.prose ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--emerald-pale);
  border-radius: 50%;
}

.prose a {
  color: var(--emerald);
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 106, 79, 0.2);
  transition: var(--transition);
}

.prose a:hover {
  color: var(--emerald-light);
  border-bottom-color: var(--emerald-light);
}

.legal-card {
  max-width: 800px;
}

/* Legal tables */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-light);
}

.legal-table th {
  background: var(--light);
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.legal-table tbody tr:hover {
  background: rgba(45, 106, 79, 0.03);
}

@media (max-width: 768px) {
  .legal-table {
    font-size: 0.82rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
  }
}

/* Ordered lists in legal prose */
.prose ol {
  list-style: none;
  counter-reset: legal-counter;
  margin-bottom: 16px;
  padding-left: 0;
}

.prose ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  counter-increment: legal-counter;
}

.prose ol li::before {
  content: counter(legal-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--emerald);
}

/* Legal numbered lists: 1. 2. 3. */
.prose ol.legal-numbered {
  counter-reset: legal-num;
}

.prose ol.legal-numbered > li {
  counter-increment: legal-num;
  padding-left: 32px;
}

.prose ol.legal-numbered > li::before {
  content: counter(legal-num) ".";
  font-weight: 700;
  color: var(--emerald);
}

/* Legal lettered lists: a) b) c) */
.prose ol.legal-lettered {
  counter-reset: legal-letter;
  margin-top: 8px;
  margin-bottom: 8px;
}

.prose ol.legal-lettered > li {
  counter-increment: legal-letter;
  padding-left: 28px;
  margin-bottom: 4px;
}

.prose ol.legal-lettered > li::before {
  content: counter(legal-letter, lower-alpha) ")";
  font-weight: 600;
  color: var(--emerald-light, var(--emerald));
}

/* § paragraph headers */
.legal-prose h2 {
  font-size: 1.3rem;
}

/* Nested lists in legal docs */
.prose ul ul,
.prose ol ul,
.prose ol ol {
  margin-top: 8px;
  margin-bottom: 8px;
}

.prose strong {
  color: var(--dark);
}

/* Sub section title */
.sub-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}

/* Values grid (About page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 106, 79, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* value-emoji class kept for backwards compat - replaced by value-icon-wrap */

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Perks grid (Careers page) */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.perk-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 106, 79, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.perk-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 106, 79, 0.12);
}

.perk-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.12));
  border-radius: 12px;
  color: var(--emerald);
  transition: var(--transition);
}

.perk-card:hover .perk-card-icon {
  transform: rotate(-10deg) scale(1.1);
}

.perk-card-icon i,
.perk-card-icon svg {
  width: 20px;
  height: 20px;
}

/* Jobs list (Careers page) */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 106, 79, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 106, 79, 0.1);
  transform: translateX(6px);
}

.job-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.job-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.job-loc i,
.job-loc svg {
  width: 14px;
  height: 14px;
}

.careers-contact {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

.careers-contact a {
  color: var(--emerald);
  font-weight: 700;
  border-bottom: 2px solid rgba(45, 106, 79, 0.2);
  transition: var(--transition);
}

.careers-contact a:hover {
  border-bottom-color: var(--emerald);
}

/* ============================================
   SUBPAGES - Styled Hero & Wave Transitions
   ============================================ */

/* Styled hero with emerald gradient (about, careers) */
.subpage-hero-styled {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 50%, var(--emerald-pale) 100%);
}

.subpage-hero-styled .back-link {
  color: rgba(255, 255, 255, 0.8);
}

.subpage-hero-styled .back-link:hover {
  color: var(--white);
}

.subpage-hero-styled .subpage-header h1 {
  color: var(--white);
}

.subpage-hero-styled .subpage-header h1 .text-gradient {
  background: linear-gradient(135deg, var(--coral), #ffe0b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subpage-hero-styled .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.subpage-hero-styled .subpage-date {
  color: rgba(255, 255, 255, 0.7);
}

.subpage-hero-styled .hero-bg-shapes .shape {
  background: rgba(255, 255, 255, 0.06);
}

.subpage-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  margin-top: 16px;
}

/* Navbar white text on emerald hero */
body:has(.subpage-hero-styled) .navbar:not(.scrolled) .nav-logo {
  color: var(--white);
}

body:has(.subpage-hero-styled) .navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

body:has(.subpage-hero-styled) .navbar:not(.scrolled) .nav-links a:hover,
body:has(.subpage-hero-styled) .navbar:not(.scrolled) .nav-links a.active {
  color: var(--white);
}

body:has(.subpage-hero-styled) .navbar:not(.scrolled) .nav-links a::after {
  background: var(--white);
}

body:has(.subpage-hero-styled) .navbar:not(.scrolled) .lang-switch {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

body:has(.subpage-hero-styled) .navbar:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

/* Styled hero wave bottom */
.subpage-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.subpage-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* Legal hero - subtle emerald */
.subpage-hero-legal {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, var(--sand) 100%);
}

.subpage-hero-legal .subpage-header h1 {
  color: var(--dark);
}

.subpage-hero-legal .section-tag {
  background: rgba(45, 106, 79, 0.1);
  color: var(--emerald);
}

/* Subpage section alternating backgrounds */
.subpage-section-white {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow-x: hidden;
}

.subpage-section-sand {
  background: var(--sand);
  padding: 80px 0;
  position: relative;
}

.subpage-section-white .sub-section-title,
.subpage-section-sand .sub-section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Wave dividers between subpage sections */
.subpage-wave {
  line-height: 0;
  position: relative;
  z-index: 1;
}

.subpage-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.subpage-wave-white-to-sand {
  background: var(--white);
}

.subpage-wave-sand-to-white {
  background: var(--sand);
}

/* Careers CTA section */
.careers-cta-section {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.careers-cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.careers-cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.careers-cta-section .btn-cta-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--emerald);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.careers-cta-section .btn-cta-email:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.careers-cta-section .btn-cta-email i,
.careers-cta-section .btn-cta-email svg {
  width: 18px;
  height: 18px;
}

/* About page - What we do grid */
.about-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-what-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 106, 79, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-what-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.about-what-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.12));
  border-radius: 16px;
  color: var(--emerald);
}

.about-what-icon i,
.about-what-icon svg {
  width: 26px;
  height: 26px;
}

.about-what-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-what-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* About page - Timeline Steps */
.about-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  max-width: 220px;
}

.timeline-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--emerald-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.1);
}

.timeline-circle:hover {
  transform: scale(1.1);
  border-color: var(--emerald);
  box-shadow: 0 8px 32px rgba(45, 106, 79, 0.18);
}

.timeline-circle--final {
  border-color: var(--emerald);
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.06), rgba(82, 183, 136, 0.1));
}

.timeline-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald-pale);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 2px;
}

.timeline-circle i,
.timeline-circle svg {
  width: 28px;
  height: 28px;
  color: var(--emerald);
}

.timeline-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.timeline-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 88px;
  color: var(--emerald-pale);
  padding: 0 4px;
}

.timeline-arrow svg {
  width: 48px;
  height: 20px;
  animation: timelineArrowPulse 2.5s ease-in-out infinite;
}

@keyframes timelineArrowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .www-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 440px;
    margin: 0 auto;
  }

  .www-arrow {
    transform: rotate(90deg);
    padding: 0;
    height: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .about-timeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .timeline-step {
    max-width: 400px;
  }

  .timeline-arrow {
    height: auto;
    padding: 8px 0;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text) !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary) !important;
  }

  .lang-switch {
    margin-top: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .partners-layout {
    grid-template-columns: 1fr;
  }

  .partners-content .btn-partner {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .partners-visual {
    order: 1;
  }

  .partners-benefits {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .botlo-layout {
    grid-template-columns: 1fr;
  }

  .botlo-content .btn-botlo {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .botlo-visual {
    order: 1;
  }

  .botlo-earnings {
    max-width: 440px;
    margin: 0 auto;
  }



  .www-grid {
    max-width: 400px;
  }

  .www-card {
    padding: 32px 24px;
  }

  .faq {
    padding: 60px 0;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-question span {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 0.88rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .app-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-content p {
    margin: 0 auto 32px;
  }

  .app-download-btns {
    justify-content: center;
  }

  /* app phones scale down via phone-screens.css responsive */

  .impact-fact {
    padding: 28px 20px;
  }

  .impact-fact-text {
    font-size: 0.95rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Subpage responsive */
  .content-card {
    padding: 32px 24px;
  }

  .about-what-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 40px;
  }

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

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  .subpage-section-white,
  .subpage-section-sand {
    padding: 60px 0;
  }

  /* Reduce spacing on mobile */
  .section-header {
    margin-bottom: 36px;
  }

  .features {
    padding: 60px 0;
  }

  .win-win-win {
    padding: 60px 0 70px;
  }

  .botlo {
    padding: 60px 0;
  }

  .partners {
    padding: 60px 0;
  }

  .features-wave-bottom svg,
  .www-wave-bottom svg,
  .botlo-wave-bottom svg,
  .app-wave-top svg,
  .app-wave-bottom svg,
  .impact-wave-bottom svg,
  .faq-wave-bottom svg {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-visual {
    justify-content: center;
  }

  .footer-links-group {
    grid-template-columns: 1fr 1fr;
  }

  .partners-benefits {
    gap: 14px;
  }

  .subpage-hero,
  .subpage-hero-styled,
  .subpage-hero-legal {
    padding: 120px 0 50px;
  }

  .subpage-hero-wave svg {
    height: 40px;
  }

  .subpage-wave svg {
    height: 40px;
  }

  .subpage-section-white,
  .subpage-section-sand {
    padding: 48px 0;
  }

  .faq-question {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .faq-answer {
    padding: 0 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 14px 14px;
  }

  .faq-answer p {
    font-size: 0.84rem;
    line-height: 1.6;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10000;
  width: calc(100% - 48px);
  max-width: 600px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 0 rgba(45, 106, 79, 0.06),
    0 20px 60px rgba(45, 106, 79, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 28px 32px;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  font-family: 'Quicksand', sans-serif;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner.hiding {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.14));
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cookie-banner h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner p a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner p a:hover {
  color: var(--emerald-light);
}

/* --- Buttons --- */
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  min-width: 0;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cookie-btn-accept {
  background: var(--emerald);
  color: var(--white);
  box-shadow:
    0 4px 0 0 #1b4332,
    0 6px 16px rgba(45, 106, 79, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cookie-btn-accept:hover {
  background: var(--emerald-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 6px 0 0 #1b4332,
    0 12px 28px rgba(45, 106, 79, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-btn-accept:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 0 #1b4332,
    0 4px 12px rgba(45, 106, 79, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition-duration: 0.1s;
}

.cookie-btn-settings {
  background: var(--coral);
  color: var(--dark);
  box-shadow:
    0 4px 0 0 #d4a96d,
    0 6px 16px rgba(242, 204, 143, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cookie-btn-settings:hover {
  background: var(--coral-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 6px 0 0 #d4a96d,
    0 12px 28px rgba(242, 204, 143, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 0 #d4a96d,
    0 4px 12px rgba(242, 204, 143, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition-duration: 0.1s;
}

.cookie-btn-reject {
  background: var(--sand);
  color: var(--text-light);
  box-shadow:
    0 4px 0 0 #ddd8c4,
    0 6px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cookie-btn-reject:hover {
  color: var(--text);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 6px 0 0 #ddd8c4,
    0 12px 28px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cookie-btn-reject:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 0 #ddd8c4,
    0 4px 8px rgba(0, 0, 0, 0.05);
  transition-duration: 0.1s;
}

/* --- Cookie settings panel --- */
.cookie-settings {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(45, 106, 79, 0.08);
}

.cookie-settings.open {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.cookie-category + .cookie-category {
  border-top: 1px solid rgba(45, 106, 79, 0.06);
}

.cookie-cat-info {
  flex: 1;
}

.cookie-cat-info span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.cookie-cat-info small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(45, 106, 79, 0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--emerald);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-settings-save {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: var(--emerald);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 4px 0 0 #1b4332,
    0 6px 16px rgba(45, 106, 79, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cookie-settings-save:hover {
  background: var(--emerald-light);
  transform: translateY(-3px);
  box-shadow:
    0 6px 0 0 #1b4332,
    0 12px 28px rgba(45, 106, 79, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-settings-save:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 0 #1b4332,
    0 4px 12px rgba(45, 106, 79, 0.2);
  transition-duration: 0.1s;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 20px;
    border-radius: var(--radius);
  }

  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-btn {
    flex: none;
    width: 100%;
  }
}
