/* Hide reCAPTCHA v3 badge */
.grecaptcha-badge { visibility: hidden !important; }

/* === CSS Custom Properties === */
:root {
  --color-primary: #FFD54F;
  --color-primary-light: #FFE082;
  --color-primary-dark: #FFC107;
  --color-background: #FAF8F3;
  --color-neutral: #D8D9D6;
  --color-neutral-light: #E8E9E6;
  --color-neutral-dark: #B8B9B6;
  --color-accent: #3479F6;
  --color-accent-light: #5A94F8;
  --color-accent-dark: #2563EB;
  --color-text: #222831;
  --color-text-light: #393E46;
  --color-text-muted: #6B7280;
  --color-white: #FFFFFF;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --section-spacing: 5rem;
  --container-max: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font-family);
  font-feature-settings: "rlig" 1, "calt" 1;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
  font-weight: 500;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

/* === Links === */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 200ms;
}

a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* === Container === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, transform 100ms, box-shadow 200ms;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-text);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-neutral);
}

.btn-secondary:hover {
  background: var(--color-neutral-light);
  color: var(--color-text);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

/* === Cards === */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(216, 217, 214, 0.3);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 200ms, transform 200ms;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* === Badges === */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.badge-coming-soon {
  background: var(--color-primary-light);
  color: var(--color-text);
}

.badge-popular {
  background: var(--color-accent);
  color: var(--color-white);
}

.badge-available {
  background: #D1FAE5;
  color: #065F46;
}

/* === Header / Navigation === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-neutral);
  height: var(--header-height);
  transition: box-shadow 200ms;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.header-logo:hover {
  text-decoration: none;
  color: var(--color-text);
}

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

.header-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.nav-dropdown > a.active::after {
  content: '';
  position: static;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.375rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  background: none;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  white-space: nowrap;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.375rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-neutral);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 0.375rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms, visibility 200ms;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 150ms, color 150ms;
}

.dropdown-menu a:hover {
  background: var(--color-neutral-light);
  text-decoration: none;
  color: var(--color-text);
}

.dropdown-menu .badge {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.dropdown-menu .badge-available {
  background: #ECFDF5;
  color: #059669;
}

.dropdown-menu .badge-coming-soon {
  background: transparent;
  color: var(--color-text-muted);
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* === Mobile Navigation === */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 200;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-neutral);
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--color-neutral-light);
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav-links a:hover {
  background: var(--color-neutral-light);
  text-decoration: none;
}

.mobile-nav-links .sub-item a {
  padding-left: 2.5rem;
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.mobile-nav-cta {
  padding: 1.5rem;
  border-top: 1px solid var(--color-neutral);
}

.mobile-nav-cta .btn {
  width: 100%;
}

/* === Hero Section === */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero .container {
  max-width: 720px;
}

.hero-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

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

.hero-logo span {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero .text-large {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

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

/* === Section === */
.section {
  padding: var(--section-spacing) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

.section-alt {
  background: var(--color-white);
}

.section-cta {
  background: linear-gradient(135deg, #fef9e7 0%, #fdf2e9 100%);
}

/* === Product Cards Grid === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.product-card .card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.product-card .card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.product-card h2 {
  margin: 0;
}

.product-card h3 {
  margin: 0;
}

.product-card .card-description {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.product-card .feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-card .feature-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.product-card .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* === Trust Section === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.trust-item h4 {
  margin-bottom: 0.375rem;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* === Steps / How It Works === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step-item {
  text-align: center;
  counter-increment: step;
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.step-item h3 {
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* === Integrations === */
.integrations-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.integration-tag {
  background: var(--color-white);
  border: 1px solid var(--color-neutral);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: border-color 200ms, background 200ms;
}

.integration-tag:hover {
  border-color: var(--color-primary);
  background: #FFFDE7;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  padding: var(--section-spacing) 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section .text-large {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto 1rem;
}

.cta-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-neutral);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color 200ms;
}

.cta-form input:focus {
  border-color: var(--color-accent);
}

.cta-form input::placeholder {
  color: var(--color-text-muted);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: #D1FAE5;
  border-radius: var(--border-radius);
  color: #065F46;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* === Pricing === */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.pricing-toggle span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-toggle span.active {
  color: var(--color-text);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 28px;
  background: var(--color-neutral);
  border-radius: 14px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 200ms;
}

.toggle-switch.active {
  background: var(--color-accent);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 200ms;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle-switch.active::after {
  transform: translateX(20px);
}

.save-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #065F46;
  background: #D1FAE5;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  border-width: 2px;
  transform: scale(1.02);
}

.pricing-card .pricing-header {
  margin-bottom: 1.5rem;
  min-height: 11rem;
}

.pricing-card .plan-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  min-height: 2rem;
}

.pricing-card .plan-name h3 {
  margin: 0;
}

.pricing-card .plan-name .badge {
  flex-shrink: 0;
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
}

.pricing-card .plan-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  min-height: 2.625rem;
}

.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

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

.pricing-card .price-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  min-height: 1.25rem;
}

.pricing-card .feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-card .feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}

.pricing-card .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

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

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

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

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 300ms;
  color: var(--color-text-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* === Feature Sections (alternating) === */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-content h3 {
  margin-bottom: 1rem;
}

.feature-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.feature-visual {
  background: var(--color-neutral-light);
  border-radius: var(--border-radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-visual svg.feature-illustration {
  width: 100%;
  height: 100%;
}

.feature-visual svg:not(.feature-illustration) {
  width: 64px;
  height: 64px;
  color: var(--color-text-muted);
}

/* === Use Cases === */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.use-case-card .card-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.use-case-card .card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-text);
}

.use-case-card h4 {
  margin-bottom: 0.5rem;
}

.use-case-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* === Values === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card .card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* === Company Info === */
.company-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.info-item h4 {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.info-item p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

/* === Contact Form === */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-neutral);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color 200ms;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

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

.form-group .optional {
  color: var(--color-text-muted);
  font-weight: 400;
}

.contact-sidebar h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9375rem;
}

/* === Security === */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.security-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.security-card .card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.security-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.security-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* === Legal / Content Pages === */
.legal-content {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

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

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

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

.legal-content li {
  margin-bottom: 0.375rem;
}

.legal-content strong {
  color: var(--color-text);
  font-weight: 600;
}

/* === Coming Soon Page === */
.coming-soon-hero {
  padding: 5rem 0;
  text-align: center;
}

.coming-soon-hero .container {
  max-width: 600px;
}

.coming-soon-hero h1 {
  margin-bottom: 1rem;
}

.coming-soon-hero .text-large {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.coming-soon-hero .feature-list {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 2.5rem;
}

.coming-soon-hero .feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.coming-soon-hero .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.coming-soon-hero .launch-date {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* === Roadmap Timeline === */
.roadmap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--color-neutral);
}

.roadmap-item {
  text-align: center;
  flex: 1;
  max-width: 240px;
  position: relative;
}

.roadmap-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-neutral);
  margin: 16px auto 1rem;
  position: relative;
  z-index: 1;
}

.roadmap-dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(52, 121, 246, 0.2);
}

.roadmap-item h4 {
  margin-bottom: 0.25rem;
}

.roadmap-item p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* === Footer === */
.site-footer {
  border-top: 1px solid var(--color-neutral);
  padding: 4rem 0 0;
  margin-top: auto;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer-brand .footer-logo:hover {
  text-decoration: none;
  color: var(--color-text);
}

.footer-brand .footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand .footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 240px;
}

.footer-column h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--color-text-light);
  font-size: 0.875rem;
  transition: color 200ms;
}

.footer-column a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--color-neutral);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-neutral);
  padding: 1rem 2rem;
  z-index: 300;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-inner p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0;
}

.cookie-inner a {
  color: var(--color-accent);
}

.cookie-dismiss {
  flex-shrink: 0;
}

/* === 404 === */
.error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.error-page h1 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-neutral);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.error-page p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

  .pricing-card.featured {
    transform: none;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --section-spacing: 3.5rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row.reverse {
    direction: ltr;
  }

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

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

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

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

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .cta-form {
    flex-direction: column;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .roadmap {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .roadmap::before {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

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

  .company-info {
    grid-template-columns: 1fr;
  }

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

  .legal-content {
    padding: 2rem 1.25rem;
  }
}

/* === Print === */
@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .mobile-nav,
  .mobile-nav-overlay,
  .hero-buttons,
  .cta-section,
  .cta-form,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 1.5rem 0;
  }
}
