:root {
  --orange-50: #fff3e0;
  --orange-100: #ffe0b2;
  --orange-200: #ffcc80;
  --orange-300: #ffb74d;
  --orange-400: #ffa726;
  --orange-500: #ff9800;
  --orange-600: #fb8c00;
  --orange-700: #f57c00;
  --orange-800: #ef6c00;
  --orange-900: #e65100;
  --amber: #ff8f00;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --charcoal: #263238;
  --gray100: #f5f5f5;
  --gray200: #eeeeee;
  --gray300: #e0e0e0;
  --gray500: #9e9e9e;
  --gray700: #616161;
  --gray800: #424242;
  --white: #ffffff;
  --green: #66bb6a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
.solaris-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
}

/* Pages */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0 24px;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(8px);
}
.nav-scrolled {
  background: rgba(26, 26, 46, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
}
.nav-logo-text {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  color: var(--orange-300);
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}
.nav-logo-text a {
  color: var(--orange-300);
}
.nav-logo-text .logo-sub {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--orange-300);
  opacity: 0.55;
  letter-spacing: 0px;
}
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-link {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  font-family: inherit;
}
.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.nav-link-active {
  color: var(--orange-300) !important;
  background: rgba(255, 152, 0, 0.12) !important;
}
.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange-300);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(16px);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open {
  display: flex;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark2) 50%,
    #1a237e 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  transition: background 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero.weather-cleared {
  background: linear-gradient(
    135deg,
    #1a237e 0%,
    #1e3a8a 35%,
    #1565c0 70%,
    #1976d2 100%
  );
}
.hero.no-transition,
.hero.no-transition * {
  transition: none !important;
}

/* Weather */
.weather-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.cloud-layer {
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  pointer-events: none;
  transition:
    opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cloud-layer-1 {
  opacity: 0.3;
  transition-delay: 0s;
}
.cloud-layer-2 {
  opacity: 0.22;
  transition-delay: 0.2s;
}
.cloud-layer-3 {
  opacity: 0.16;
  transition-delay: 0.4s;
}
.weather-cleared .cloud-layer-1 {
  opacity: 0 !important;
  transform: translateY(-60px) !important;
}
.weather-cleared .cloud-layer-2 {
  opacity: 0 !important;
  transform: translateY(-90px) scale(0.95) !important;
}
.weather-cleared .cloud-layer-3 {
  opacity: 0 !important;
  transform: translateY(-70px) scale(0.9) !important;
}
.rain-container {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.weather-cleared .rain-container {
  opacity: 0;
}
.raindrop {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(150, 200, 255, 0.6));
  border-radius: 0 0 2px 2px;
  animation: rain-fall linear infinite;
}
@keyframes rain-fall {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
.hero-sun {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 204px;
  height: 204px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.2) translateY(40px);
  transition:
    opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s,
    transform 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}
.weather-cleared .hero-sun {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.sun-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ffe082,
    #ffd54f 40%,
    #ffa726 70%,
    transparent 100%
  );
  box-shadow:
    0 0 60px 25px rgba(255, 167, 38, 0.45),
    0 0 130px 55px rgba(255, 152, 0, 0.15);
  transition: box-shadow 2s ease 1.2s;
}
.weather-cleared .sun-core {
  box-shadow:
    0 0 80px 35px rgba(255, 167, 38, 0.5),
    0 0 160px 70px rgba(255, 152, 0, 0.2);
}
.sun-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 204px;
  height: 204px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 183, 77, 0.35),
    rgba(255, 152, 0, 0.1) 45%,
    transparent 70%
  );
}
.sun-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 187px;
  height: 187px;
  opacity: 0;
  transition: opacity 1.5s ease 1.5s;
}
.weather-cleared .sun-rays {
  opacity: 1;
  animation: sun-spin 25s linear infinite;
}
@keyframes sun-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  max-width: 650px;
  text-align: center;
}
.hero-text h1 {
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
}
.hero-text h1 span {
  background: linear-gradient(135deg, var(--orange-300), var(--orange-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.35);
}
.btn-primary a {
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.45);
}
.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--orange-300);
  border: 2px solid rgba(255, 152, 0, 0.4);
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.btn-secondary a {
  color: var(--orange-300);
}
.btn-secondary:hover {
  border-color: var(--orange-400);
  background: rgba(255, 152, 0, 0.08);
}

/* Stats */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255, 152, 0, 0.15);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item h3 {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--orange-400);
  margin-bottom: 4px;
}
.stat-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 80px 24px;
}
.section-dark {
  background: var(--gray100);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--orange-50);
  color: var(--orange-700);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 17px;
  color: var(--gray700);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray200);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  opacity: 0;
  transition: opacity 0.3s;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.audience-card:hover::before {
  opacity: 1;
}
.audience-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.audience-card p {
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.6;
}

/* Help Grid */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.help-card-centered {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
  margin: 0 auto;
}
.help-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--gray200);
  transition: all 0.3s;
}
.help-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.help-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
}
.help-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.help-card p {
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray200);
  transition: all 0.3s;
}
.process-step:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.process-step:nth-child(even) {
  direction: rtl;
}
.process-step:nth-child(even) > * {
  direction: ltr;
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.step-number-circle {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 800;
}
.step-content h3 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--charcoal);
}
.step-content p {
  font-size: 15px;
  color: var(--gray700);
  line-height: 1.7;
}
.step-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Contact */
.contact-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.08), transparent);
}
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.contact-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(10px);
}
.contact-box h2 {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  color: white;
  margin-bottom: 8px;
  text-align: center;
}
.contact-box > p {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 32px;
  font-size: 15px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--orange-400);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
textarea.form-input {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  grid-column: 1 / -1;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.4);
}
.form-submit.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  background: rgba(102, 187, 106, 0.15);
  border-radius: 12px;
  color: var(--green);
  font-weight: 600;
  border: 1px solid rgba(102, 187, 106, 0.3);
  display: none;
}
.form-success.show {
  display: block;
}
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--orange-500);
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.form-consent-text a {
  color: var(--orange-300);
  text-decoration: underline;
  cursor: pointer;
}
.form-consent-text a:hover {
  color: var(--orange-400);
}
.form-disclosure {
  grid-column: 1 / -1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  text-align: center;
  margin-top: -4px;
}

/* About */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}
.about-hero h1 span {
  background: linear-gradient(135deg, var(--orange-300), var(--orange-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text h2 {
  font-family: "DM Serif Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.about-story-text p {
  font-size: 16px;
  color: var(--gray700);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-story-visual-inner {
  width: 320px;
  height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--orange-50), var(--orange-100));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray200);
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--gray200);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: var(--orange-200);
}
.faq-item.active {
  border-color: var(--orange-300);
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.1);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  flex: 1;
  padding-right: 16px;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--orange-600);
  font-size: 20px;
  font-weight: 300;
}
.faq-item.active .faq-toggle {
  background: var(--orange-500);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--gray700);
  line-height: 1.7;
}

/* Legal */
.legal-page {
  padding: 140px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: "DM Serif Display", serif;
  font-size: 36px;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page p {
  font-size: 15px;
  color: var(--gray700);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page li {
  font-size: 15px;
  color: var(--gray700);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-page a {
  color: var(--orange-600);
  cursor: pointer;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--dark);
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-text {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--orange-300);
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}
.footer-brand-text .logo-sub {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--orange-300);
  opacity: 0.55;
  letter-spacing: 0px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.footer-link:hover {
  color: var(--orange-300);
}
.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 32px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-menu .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
  }
  .hero-inner {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    margin: 0 auto 32px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-sun {
    top: 5%;
    right: 5%;
    width: 119px;
    height: 119px;
  }
  .sun-core {
    width: 42px;
    height: 42px;
  }
  .sun-glow {
    width: 119px;
    height: 119px;
  }
  .sun-rays {
    width: 110px;
    height: 110px;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .help-grid {
    grid-template-columns: 1fr;
  }
  .help-card-centered {
    max-width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .process-step {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .section-header h2,
  .about-hero h1 {
    font-size: 32px;
  }
  .contact-box {
    padding: 28px 20px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
