/* ===== CSS VARIABLES & RESET ===== */
:root {
  --green-primary: #1EE4A0;
  --green-dark: #17b87e;
  --green-light: #75FFCF;
  --green-pale: #BFF8E7;
  --teal: #48BFA6;
  --gray-light: #f5f5f5;
  --gray-mid: #6b7280;
  --gray: #9ca3af;
  --gray-dark: #374151;
  --dark: #111827;
  --bg: #ffffff;
  --bg-subtle: #f9fafb;
  --bg-card: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.04);
  --font-display: "Quicksand", sans-serif;
  --font-body: "Quicksand", sans-serif;
  --container-max: 1400px;
  --container-narrow: 1050px;
  --site-margin: clamp(1.5rem, 1.08rem + 3.92vw, 5rem);
  --transition: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--site-margin);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--site-margin);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 2rem + 3vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--green-dark), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--transition);
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 228, 160, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--bg-subtle);
  color: var(--text-primary);
}

.btn--secondary:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 4.25rem;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--site-margin);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav__logo img {
  height: 28px;
}

.nav__logo-icon {
  height: 32px;
  width: 32px;
}

.nav__logo-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-dark);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

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

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
}

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

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

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

.nav__mobile {
  display: none;
  position: fixed;
  top: 4.25rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 2rem var(--site-margin);
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile a {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav__mobile a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .nav__links, .nav__actions {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4.25rem;
  overflow: hidden;
}

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

.hero__gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.hero__gradient--1 {
  top: -200px;
  right: -200px;
  background: var(--green-primary);
}

.hero__gradient--2 {
  bottom: -300px;
  left: -200px;
  background: var(--teal);
  opacity: 0.08;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--site-margin);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: rgba(30, 228, 160, 0.08);
  border: 1px solid rgba(30, 228, 160, 0.2);
  font-size: 0.8125rem;
  color: var(--green-dark);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dark);
  animation: pulse 2s infinite;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero p {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.25rem);
  max-width: none;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero__visual {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero__dashboard {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0,0,0,0.04);
}

.hero__dashboard-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 1.25rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.hero__dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero__dashboard-dot:nth-child(1) { background: #ff5f57; }
.hero__dashboard-dot:nth-child(2) { background: #ffbd2e; }
.hero__dashboard-dot:nth-child(3) { background: #28c840; }

.hero__dashboard-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  min-height: 340px;
}

.hero__dashboard-sidebar {
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}

.hero__sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.hero__sidebar-item--active {
  background: rgba(30, 228, 160, 0.08);
  color: var(--green-dark);
}

.hero__sidebar-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero__sidebar-item--active .hero__sidebar-icon {
  background: rgba(30, 228, 160, 0.15);
}

.hero__dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__dashboard-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  background: rgba(30, 228, 160, 0.1);
  color: var(--green-dark);
  border: 1px solid rgba(30, 228, 160, 0.2);
}

.hero__dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero__stat-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero__stat-change {
  font-size: 0.75rem;
  color: var(--green-dark);
  margin-top: 0.25rem;
}

.hero__chart-area {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.hero__chart-title {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding-top: 0.5rem;
}

.hero__chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 1s ease;
}

/* Filings dashboard table */
.hero__filings-area {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  overflow: hidden;
}

.hero__filings-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero__filings-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__filing-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0.375rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-primary);
}

.hero__filing-row:last-child {
  border-bottom: none;
}

.hero__filing-row--header {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 0.5rem;
}

.hero__filing-col--region {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__filing-flag {
  font-size: 0.875rem;
  line-height: 1;
}

.hero__filing-col--owner {
  font-size: 0.6875rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero__filing-col--status {
  text-align: right;
}

.hero__filing-badge {
  display: inline-block;
  padding: 0.175rem 0.5rem;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero__filing-badge--filed {
  background: rgba(30,228,160,0.12);
  color: var(--green-dark);
}

.hero__filing-badge--upcoming {
  background: rgba(217,119,6,0.1);
  color: #d97706;
}

.hero__filing-badge--review {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.hero__filing-badge--scheduled {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .hero__dashboard-content {
    grid-template-columns: 1fr;
  }
  .hero__dashboard-sidebar {
    display: none;
  }
  .hero__dashboard-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
}

.section--light {
  background: var(--bg-subtle);
  position: relative;
}

/* Brand notch — inspired by PlanPal icon's center curve */
.section--light::before,
.section--light::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  z-index: 2;
}

.section--light::before {
  top: -1px;
  background: var(--bg-primary);
  border-radius: 0 0 30px 30px;
}

.section--light::after {
  bottom: -1px;
  background: var(--bg-primary);
  border-radius: 30px 30px 0 0;
}

.section__header {
  text-align: center;
  max-width: none;
  margin: 0 auto 4rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section__header h2 {
  margin-bottom: 1rem;
}

.section__header p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--teal));
  transform: scaleX(0);
  transition: transform 0.4s var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 228, 160, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30, 228, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOW IT WORKS / STEPS ===== */
.steps {
  position: relative;
}

.steps__line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-dark), var(--teal), transparent);
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(30, 228, 160, 0.1);
  border: 1px solid rgba(30, 228, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}

.step__content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.step__content p {
  font-size: 1rem;
  max-width: 500px;
}

.step__visual {
  margin-top: 1.5rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .step {
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
  }
  .step__number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .steps__line {
    left: 24px;
  }
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(30, 228, 160, 0.3);
  background: linear-gradient(to bottom, rgba(30, 228, 160, 0.04), var(--bg-card));
  transform: scale(1.03);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  background: var(--green-dark);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  margin-bottom: 2rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
}

.pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card__features {
  margin-bottom: 2rem;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-card__feature:last-child {
  border-bottom: none;
}

.pricing-card__check {
  color: var(--green-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card--featured {
    transform: none;
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ===== CTA SECTION ===== */
.cta {
  position: relative;
  padding: clamp(4rem, 3rem + 5vw, 7rem) 0;
  overflow: visible;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  z-index: 2;
}

.cta::before {
  top: -1px;
  background: var(--bg-primary);
  border-radius: 0 0 30px 30px;
}

.cta::after {
  bottom: -1px;
  background: var(--bg-primary);
  border-radius: 30px 30px 0 0;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 228, 160, 0.06), rgba(72, 191, 166, 0.04));
  border-radius: 24px;
}

.cta__content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta__content h2 {
  margin-bottom: 1rem;
}

.cta__content p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FORMS ===== */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form__input,
.form__select,
.form__textarea {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(30, 228, 160, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background: var(--bg);
  color: var(--text-primary);
}

.form .btn {
  margin-top: 0.5rem;
}

.form-info h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.form-info p {
  margin-bottom: 2rem;
}

.form-info__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-info__item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.form-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(30, 228, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.form-info__text h4 {
  font-family: var(--font-body);
  margin-bottom: 0.25rem;
}

.form-info__text p {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .form-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid p {
  margin-bottom: 1rem;
}

.about-visual {
  position: relative;
}

.about-visual__graphic {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30, 228, 160, 0.1), rgba(72, 191, 166, 0.05));
  border: 1px solid rgba(30, 228, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual__globe {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(30, 228, 160, 0.25);
  position: relative;
  animation: spin 30s linear infinite;
}

.about-visual__globe::before,
.about-visual__globe::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 228, 160, 0.12);
}

.about-visual__globe::before {
  inset: 20px;
}

.about-visual__globe::after {
  inset: 50px;
}

.about-visual__dots {
  position: absolute;
  inset: 0;
}

.about-visual__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
  animation: pulse 3s infinite;
}

.about-visual__dot:nth-child(1) { top: 25%; left: 30%; animation-delay: 0s; }
.about-visual__dot:nth-child(2) { top: 40%; right: 25%; animation-delay: 0.5s; }
.about-visual__dot:nth-child(3) { bottom: 30%; left: 45%; animation-delay: 1s; }
.about-visual__dot:nth-child(4) { top: 60%; left: 20%; animation-delay: 1.5s; }
.about-visual__dot:nth-child(5) { top: 20%; right: 35%; animation-delay: 2s; }

.about-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 228, 160, 0.06);
}

.about-visual__ring:nth-child(1) { inset: -20px; }
.about-visual__ring:nth-child(2) { inset: -50px; }

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(30, 228, 160, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.value-card__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.value-card p {
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: none;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-item__icon {
  transition: transform 0.3s ease;
  font-size: 1.25rem;
  color: var(--text-muted);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: var(--green-dark);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition);
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
}

.faq-item__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: var(--bg-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer__logo img {
  height: 24px;
}

.footer__logo-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.375rem 0;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--green-dark);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: span 2;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: visible;
}

.page-header::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 60px;
  height: 20px;
  background: var(--bg-primary);
  border-radius: 30px 30px 0 0;
  z-index: 2;
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-primary);
}

.page-header h1 {
  position: relative;
  margin-bottom: 1rem;
}

.page-header p {
  position: relative;
  max-width: none;
  margin: 0 auto;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

/* ===== WIZARD PREVIEW ===== */
.wizard-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
}

.wizard-preview__header {
  padding: 1rem 1.5rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wizard-preview__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.wizard-preview__steps {
  display: flex;
  gap: 0.5rem;
}

.wizard-preview__step {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
}

.wizard-preview__step--active {
  background: var(--green-dark);
}

.wizard-preview__step--done {
  background: var(--teal);
}

.wizard-preview__body {
  padding: 1.5rem;
}

.wizard-preview__field {
  margin-bottom: 1rem;
}

.wizard-preview__field-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wizard-preview__field-value {
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--transition);
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== ILLUSTRATIONS ===== */
.illus {
  max-width: 100%;
  height: auto;
}

.illus--float,
.illus--float-slow {
  animation: none;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.illus--hero {
  width: 320px;
  max-width: 80%;
}

.illus--section {
  width: 280px;
  max-width: 100%;
}

.illus--card {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.illus--contact {
  width: 300px;
  max-width: 100%;
  margin-bottom: 2rem;
}

.illus--page-header {
  width: 200px;
  max-width: 60%;
  margin-top: 1.5rem;
}

/* Feature cards with illustrations */
.feature-card__illus {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* About page illustration grid */
.about-visual__illus {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Value cards with illustrations */
.value-card__illus {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* CTA illustration */
.cta__illus {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Page header — side-by-side layout */
.page-header__split {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.page-header__text {
  flex: 1;
}

.page-header__illus {
  flex-shrink: 0;
}

.page-header__illus .illus {
  width: 240px;
}

/* Reverse variant: illustration on left, text on right */
.page-header__split--reverse {
  flex-direction: row-reverse;
}

/* Centered page header (no illustration) */
.page-header__content {
  text-align: center;
  max-width: none;
}

@media (max-width: 768px) {
  .page-header__split,
  .page-header__split--reverse {
    flex-direction: column;
    text-align: center;
  }
  .page-header__illus .illus {
    width: 180px;
  }
}

/* CTA — split layout: text left, illustration right */
.cta__content.cta__content--split {
  display: flex;
  align-items: center;
  gap: 4rem;
  text-align: left;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.cta__text {
  flex: 1;
  min-width: 0;
}

.cta__content--split .cta__text h2 {
  text-align: left;
}

.cta__content--split .cta__text p {
  text-align: left;
  max-width: none;
  margin: 0 0 2rem;
}

.cta__content--split .cta__actions {
  justify-content: flex-start;
}

.cta__illus-side {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__illus-side .illus {
  width: 240px;
  height: auto;
}

@media (max-width: 768px) {
  .cta__content.cta__content--split {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .cta__content--split .cta__text h2,
  .cta__content--split .cta__text p {
    text-align: center;
  }
  .cta__content--split .cta__text p {
    margin: 0 auto 2rem;
  }
  .cta__content--split .cta__actions {
    justify-content: center;
  }
  .cta__illus-side .illus {
    width: 160px;
  }
}

/* Capabilities header — side-by-side layout */
.capabilities-header {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.capabilities-header__illus {
  flex-shrink: 0;
}

.capabilities-header__illus .illus {
  width: 260px;
}

.capabilities-header__text {
  flex: 1;
}

.capabilities-header__text .section__label {
  text-align: left;
}

.capabilities-header__text h2 {
  text-align: left;
}

.capabilities-header__text p {
  text-align: left;
}

@media (max-width: 768px) {
  .capabilities-header {
    flex-direction: column;
    text-align: center;
  }
  .capabilities-header__illus .illus {
    width: 200px;
  }
  .capabilities-header__text .section__label,
  .capabilities-header__text h2,
  .capabilities-header__text p {
    text-align: center;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--site-margin);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--green-dark);
  text-decoration: underline;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
