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

body {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 0 0, #050816 0, #020617 45%, #000 100%);
  color: #e5e7eb;
  line-height: 1.7;
  direction: rtl;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15,23,42,0.96), rgba(15,23,42,0.85), transparent);
  border-bottom: 1px solid rgba(148,163,184,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #e5e7eb;
}

.logo span {
  color: #facc6b;
}

.nav {
  flex: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.nav-links a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #cbd5f5;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(15,23,42,0.9);
  color: #facc6b;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.16rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.desktop-cta {
  font-size: 0.8rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: radial-gradient(circle at 30% 0, #fed7aa, #facc6b, #d97706);
  color: #111827;
  box-shadow: 0 0 24px rgba(250,204,21,0.45);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(250,204,21,0.6);
}

.btn-outline {
  border-color: rgba(148,163,184,0.6);
  color: #e5e7eb;
  background: rgba(15,23,42,0.5);
}

.btn-outline:hover {
  background: rgba(15,23,42,0.9);
  border-color: #facc6b;
}

.full-width {
  width: 100%;
}

/* BACKGROUND ANIMATIONS */

.bg-orbit,
.bg-lines,
.bg-flow {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
}

.bg-orbit::before,
.bg-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
  background: radial-gradient(circle at 50% 0, rgba(250,204,21,0.45), transparent 55%);
}

.bg-orbit::before {
  width: 520px;
  height: 520px;
  top: -220px;
  right: -140px;
  animation: orbitGlow 36s linear infinite alternate;
}

.bg-orbit::after {
  width: 440px;
  height: 440px;
  bottom: -180px;
  left: -160px;
  background: radial-gradient(circle at 10% 90%, rgba(56,189,248,0.3), transparent 60%);
  animation: orbitGlowAlt 42s linear infinite alternate;
}

@keyframes orbitGlow {
  0% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(-40px,30px,0) rotate(15deg) scale(1.05); }
  100% { transform: translate3d(20px,-20px,0) rotate(30deg) scale(1.03); }
}

@keyframes orbitGlowAlt {
  0% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(50px,-30px,0) rotate(-10deg) scale(1.02); }
  100% { transform: translate3d(-30px,10px,0) rotate(12deg) scale(1.04); }
}

.bg-lines::before,
.bg-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(148,163,184,0.18) 1px, transparent 1px),
    linear-gradient(to left, rgba(51,65,85,0.15) 1px, transparent 1px);
  background-size: 100% 64px, 72px 100%;
  mix-blend-mode: soft-light;
  opacity: 0.25;
  transform-origin: center;
}

.bg-lines::before {
  animation: subtleDrift 64s linear infinite;
}

.bg-lines::after {
  animation: subtleDriftAlt 90s linear infinite;
  opacity: 0.18;
}

@keyframes subtleDrift {
  0% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-32px,0); }
  100% { transform: translate3d(0,0,0); }
}

@keyframes subtleDriftAlt {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-20px,-20px,0) scale(1.02); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

.bg-flow::before,
.bg-flow::after {
  content: "";
  position: absolute;
  inset-inline: 10%;
  top: -50%;
  height: 200%;
  background: radial-gradient(circle at 50% 0, rgba(37,99,235,0.12), transparent 55%);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: flowDown 32s linear infinite;
}

.bg-flow::after {
  inset-inline: auto 15%;
  background: radial-gradient(circle at 50% 0, rgba(15,118,110,0.15), transparent 55%);
  animation: flowDownAlt 40s linear infinite;
}

@keyframes flowDown {
  0% { transform: translate3d(0,-10%,0); }
  50% { transform: translate3d(0,10%,0); }
  100% { transform: translate3d(0,-10%,0); }
}

@keyframes flowDownAlt {
  0% { transform: translate3d(0,5%,0); }
  50% { transform: translate3d(0,-10%,0); }
  100% { transform: translate3d(0,5%,0); }
}

/* HERO */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: 3.5rem 4.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(15,23,42,1) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(15,23,42,0.9) 0, transparent 60%);
  z-index: -1;
}

.hero-candles {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-panel {
  max-width: 760px;
  margin-inline: auto;
  border-radius: 24px;
  padding: 1.8rem 1.8rem 2.2rem;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.85), rgba(15,23,42,0.96));
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow:
    0 20px 50px rgba(15,23,42,0.8),
    0 0 0 1px rgba(15,23,42,0.8);
  backdrop-filter: blur(18px);
}

.hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(248,250,252,0.15);
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.hero-badge span:first-child {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(22,163,74,0.15);
  color: #bbf7d0;
  font-weight: 600;
}

.hero-badge strong {
  color: #facc6b;
}

.hero-badge-note {
  opacity: 0.88;
}

.hero-text {
  text-align: right;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.4;
  margin-bottom: 0.7rem;
  color: #f9fafb;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 48rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-microstats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #cbd5f5;
  margin-bottom: 0.9rem;
}

.hero-microstats li {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.5);
}

.hero-note {
  font-size: 0.8rem;
  color: #94a3b8;
}

.highlight {
  color: #facc6b;
}

/* SECTIONS */

.section {
  padding-block: 3.5rem;
}

.section-soft {
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.85), rgba(15,23,42,0.96));
  border-block: 1px solid rgba(30,64,175,0.7);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: #f9fafb;
}

.section-header p {
  color: #9ca3af;
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.card {
  padding: 1.3rem 1.4rem;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.8), rgba(15,23,42,0.95));
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 14px 32px rgba(15,23,42,0.85);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.card p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 0.8rem;
}

.card-list {
  font-size: 0.86rem;
  color: #9ca3af;
}

.card-list li {
  padding-right: 1rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.card-list li::before {
  content: "•";
  position: absolute;
  right: 0.1rem;
  top: 0;
  color: #facc6b;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0,2.1fr) minmax(0,1.3fr);
  gap: 1.8rem;
  align-items: start;
}

.about-text p {
  font-size: 0.94rem;
  color: #e5e7eb;
  margin-bottom: 0.7rem;
}

.about-card {
  padding: 1.3rem 1.4rem;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.8), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 12px 30px rgba(15,23,42,0.9);
}

.about-card h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.about-card ul {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.about-card li {
  padding-right: 1rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.about-card li::before {
  content: "›";
  position: absolute;
  right: 0;
  color: #facc6b;
}

/* SECTION CTA */

.section-cta {
  text-align: center;
  margin-top: 1.8rem;
}

/* VALETAX SECTION */

.valetax-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.5fr);
  gap: 1.8rem;
  align-items: start;
}

.valetax-card {
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.85), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.8);
  box-shadow: 0 16px 40px rgba(15,23,42,0.9);
}

.valetax-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.valetax-card p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 0.7rem;
}

.valetax-note {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #e5e7eb;
}

.inline-link {
  color: #facc6b;
  text-decoration: underline;
  text-decoration-style: dotted;
}

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

.step-card {
  position: relative;
  padding: 1rem 1.2rem 1.1rem;
  border-radius: 18px;
  background: rgba(15,23,42,0.94);
  border: 1px solid rgba(30,64,175,0.8);
  box-shadow: 0 10px 26px rgba(15,23,42,0.9);
}

.step-number {
  position: absolute;
  inset-inline-start: 1rem;
  top: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(250,204,21,0.7);
  color: #facc6b;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  padding-inline-start: 2.3rem;
}

.step-card p {
  font-size: 0.88rem;
  color: #cbd5f5;
  padding-inline-start: 2.3rem;
}

/* JOURNEY */

.journey-section {
  background: radial-gradient(circle at 100% 0, rgba(15,23,42,0.88), rgba(15,23,42,0.97));
  border-block: 1px solid rgba(30,64,175,0.7);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
}

.journey-step {
  position: relative;
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15,23,42,0.93);
  border: 1px solid rgba(148,163,184,0.7);
}

.journey-badge {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(250,204,21,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc6b;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.journey-step h3 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.journey-step p {
  font-size: 0.84rem;
  color: #cbd5f5;
}

/* RESULTS */

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr);
  justify-content: center;
}

.results-text-card {
  padding: 1.4rem 1.4rem 1.7rem;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.85), rgba(15,23,42,0.97));
  border: 1px solid rgba(148,163,184,0.8);
  box-shadow: 0 18px 44px rgba(15,23,42,0.9);
}

.results-text-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.results-text-card p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 0.6rem;
}

.results-note {
  font-size: 0.84rem;
  color: #e5e7eb;
  margin-bottom: 0.9rem;
}

.disclaimer {
  margin-top: 1.8rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(15,23,42,0.95);
  border: 1px dashed rgba(248,250,252,0.3);
  font-size: 0.8rem;
  color: #e5e7eb;
}

.disclaimer h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* JOIN SECTION */

.join-section {
  background: radial-gradient(circle at 50% 0, rgba(15,23,42,0.9), rgba(15,23,42,0.99));
  border-block: 1px solid rgba(30,64,175,0.7);
}

.join-card {
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.95), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.9);
  box-shadow: 0 20px 46px rgba(15,23,42,0.9);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: center;
}

.join-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.join-card p {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.join-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

.join-tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(250,204,21,0.6);
  font-size: 0.8rem;
  color: #facc6b;
}

/* TOOLS */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.tool-card {
  padding: 1.2rem 1.3rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.9), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 16px 36px rgba(15,23,42,0.9);
}

.tool-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 20% 0, #facc6b, #f97316);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.tool-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.tool-card p {
  font-size: 0.88rem;
  color: #cbd5f5;
}

/* PERFORMANCE */

.performance-section {
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.92), rgba(15,23,42,0.99));
  border-block: 1px solid rgba(30,64,175,0.7);
}

.performance-chart-wrapper--simple {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(15,23,42,0.97);
  border: 1px dashed rgba(148,163,184,0.7);
  margin-bottom: 1.4rem;
}

.performance-chart-simple-text {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.perf-card {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(15,23,42,0.97);
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 12px 30px rgba(15,23,42,0.9);
}

.perf-month {
  font-size: 0.9rem;
  color: #facc6b;
  margin-bottom: 0.6rem;
}

.perf-metric {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #cbd5f5;
  margin-bottom: 0.25rem;
}

.perf-metric strong {
  color: #f9fafb;
}

/* SUCCESS STORY */

.success-card {
  padding: 1.3rem 1.4rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.9), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.8);
  box-shadow: 0 18px 40px rgba(15,23,42,0.95);
  font-size: 0.9rem;
  color: #cbd5f5;
}

.success-card p + p {
  margin-top: 0.7rem;
}

/* TESTIMONIALS */

.testimonials-section {
  background: radial-gradient(circle at 100% 0, rgba(15,23,42,0.9), rgba(15,23,42,1));
  border-block: 1px solid rgba(30,64,175,0.7);
}

.testimonials-slider {
  position: relative;
  margin-bottom: 1.2rem;
  min-height: 150px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 1.3rem 1.4rem;
  border-radius: 20px;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.8);
  box-shadow: 0 16px 40px rgba(15,23,42,0.95);
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-text {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.8rem;
}

.testimonial-meta {
  font-size: 0.82rem;
  color: #cbd5f5;
  display: flex;
  gap: 0.6rem;
}

.testimonial-country {
  opacity: 0.8;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148,163,184,0.6);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  width: 18px;
  background: #facc6b;
}

/* QUIZ */

.quiz-card {
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.92), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.9);
  box-shadow: 0 20px 46px rgba(15,23,42,0.95);
}

.quiz-question + .quiz-question {
  margin-top: 1rem;
}

.quiz-question h3 {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.quiz-option {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  padding: 0.45rem 0.9rem;
  font-size: 0.86rem;
  color: #e5e7eb;
  text-align: right;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quiz-option:hover {
  border-color: #facc6b;
}

.quiz-option.correct {
  background: rgba(22,163,74,0.18);
  border-color: rgba(22,163,74,0.8);
}

.quiz-option.wrong {
  background: rgba(220,38,38,0.18);
  border-color: rgba(220,38,38,0.7);
}

.quiz-result {
  margin-top: 1rem;
  font-size: 0.88rem;
}

/* WHY */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.why-card {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.8);
  box-shadow: 0 14px 34px rgba(15,23,42,0.9);
  font-size: 0.88rem;
  color: #cbd5f5;
}

.why-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  justify-content: center;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.96);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1rem;
  color: #facc6b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.9rem;
  font-size: 0.86rem;
  color: #cbd5f5;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.open .faq-answer {
  padding-bottom: 0.7rem;
  max-height: 160px;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-card,
.contact-info-card {
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.95), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.8);
  box-shadow: 0 18px 44px rgba(15,23,42,0.95);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.form-row label {
  font-size: 0.84rem;
  color: #e5e7eb;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  padding: 0.45rem 0.7rem;
  font-family: inherit;
  font-size: 0.88rem;
  color: #e5e7eb;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #facc6b;
  box-shadow: 0 0 0 1px rgba(250,204,21,0.4);
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.form-status {
  margin-top: 0.4rem;
  font-size: 0.84rem;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.contact-list {
  font-size: 0.88rem;
  color: #cbd5f5;
  margin-bottom: 0.7rem;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-list span {
  display: block;
  color: #9ca3af;
  font-size: 0.82rem;
}

.contact-list a {
  color: #facc6b;
}

/* FLOATING BUTTON */

.floating-btn {
  position: fixed;
  inset-inline-end: 1.2rem;
  inset-block-end: 1.2rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #facc6b, #f59e0b);
  color: #111827;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
  border: 1px solid rgba(15,23,42,0.9);
  z-index: 40;
}

/* FOOTER */

.footer {
  padding-block: 1.4rem 2.2rem;
  border-top: 1px solid rgba(30,64,175,0.7);
  background: linear-gradient(to top, rgba(15,23,42,1), rgba(15,23,42,0.96));
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: #e5e7eb;
}

.footer-logo span {
  color: #facc6b;
}

.footer-note {
  margin-top: 0.25rem;
  font-size: 0.78rem;
}

/* SCROLL ANIMATION */

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(15,23,42,0.99);
    border-bottom: 1px solid rgba(30,64,175,0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav.open {
    max-height: 310px;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 1.3rem 0.9rem;
  }
  .desktop-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-panel {
    padding-inline: 1.1rem;
  }
  .about-grid,
  .valetax-layout,
  .contact-layout,
  .join-card {
    grid-template-columns: minmax(0,1fr);
  }
  .join-card {
    text-align: right;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.6rem, 100%);
  }
  .section {
    padding-block: 2.8rem;
  }
  .hero {
    padding-block: 2.6rem 3.4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-microstats {
    flex-direction: column;
  }
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .floating-btn {
    inset-inline-end: 0.9rem;
    inset-block-end: 0.9rem;
  }
}
