/* Import a clean, modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9faff;
  color: #111;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── NAVBAR ───────────────────────────────────────────────────────── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 150px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-cta .btn + .btn {
  margin-left: 15px;
}
/* ─── DROPDOWN NAV ───────────────────────────────────────────────────── */
.nav-links li {
  position: relative;
}

.nav-links .dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links .caret {
  font-size: 0.7em;
  transition: transform 0.2s;
}

.nav-links .dropdown:hover .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  list-style: none;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
}

.dropdown-menu li a:hover {
  background: #f0f4ff;
}

/* show menu on hover */
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
/* ─── CHEVRON ARROW ───────────────────────────────────────────────── */
.nav-links .dropdown > a {
  position: relative;
  padding-right: 20px;      /* space for the chevron */
  display: inline-block;
}

/* the arrow itself */
.nav-links .dropdown > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  transition: transform 0.2s;
}

/* flip on hover */
.nav-links .dropdown:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}

/* keep your existing dropdown-on-hover logic */
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}


/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
}

/* ─── HERO SECTION ────────────────────────────────────────────────── */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef6ff 0%, #dbeaff 100%);

}


.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.trusted-by {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.875rem;
  color: #777;
}

.trusted-by img {
  height: 24px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* animate the little text span */
.modality {
  display: inline-block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* fade up & out */
.modality.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

/* fade in from below */
.modality.fade-in {
  opacity: 1;
  transform: translateY(0);
}


/* ─── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    order: -1;
  }
}


/* ─── VALUE PROPOSITION SECTION (STACKED) ────────────────────────── */
.value-prop {
  background: #fff;
  padding: 60px 0;
}

.value-content {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center children horizontally */
  text-align: center; 
  gap: 32px;    /* space between text and image */
}

.value-text h3 {
  font-size: 2rem;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 12px;
}

.value-text p {
  font-size: 1.125rem;
  color: #4b5563;
}

.value-image img {
  width: 100%;
  max-width: 1000px; /* or whatever your desired max is */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}


/* ─── REGIONS SPOTLIGHT ────────────────────────────────────────────── */
.regions-spotlight {
  background: #f9fbff;
  padding: 60px 0;
}

.regions-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.regions-header h2 {
  font-size: 2.25rem;
  color: #111827;
  margin-bottom: 12px;
}

.regions-header p {
  font-size: 1.125rem;
  color: #4b5563;
}

/* grid of region “cards” */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}

.region-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

/* staggered delays */
.region-item:nth-child(1) { animation-delay: 0.1s; }
.region-item:nth-child(2) { animation-delay: 0.2s; }
.region-item:nth-child(3) { animation-delay: 0.3s; }
.region-item:nth-child(4) { animation-delay: 0.4s; }
.region-item:nth-child(5) { animation-delay: 0.5s; }
.region-item:nth-child(6) { animation-delay: 0.6s; }

.region-item i {
  font-size: 2rem;
  color: #3b82f6;
  display: block;
  margin-bottom: 8px;
}

.region-item span {
  display: block;
  font-weight: 500;
  color: #111827;
}

/* fade in + up keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive tweak */
@media (max-width: 480px) {
  .region-item {
    padding: 20px 8px;
  }
  .regions-header h2 {
    font-size: 1.75rem;
  }
}

/* ─── REGION SWITCHER BUTTONS ─────────────────────────────────────── */
.regions-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.region-item {
  padding: 12px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}

.region-item span {
  font-weight: 500;
  color: #111827;
}

.region-item.active {
  border-color: #3b82f6;
}

.region-item.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
}

/* ─── DISPLAY AREA ───────────────────────────────────────────────── */
.regions-display {
  text-align: center;
}

.regions-display img {
  max-width: 100%;
  width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: opacity 0.3s ease;
  opacity: 1;
  border: 3px solid transparent;
  box-sizing: border-box;
}

/* fade image out */
.regions-display img.fade-out {
  opacity: 0;
}

/* fade image in */
.regions-display img.fade-in {
  opacity: 1;
}
.regions-display img.highlight {
  border-color: #3b82f6;
}




/* ─── FINAL CALL-TO-ACTION ───────────────────────────────────────── */
.final-cta {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 32px;
}

.btn-xl {
  padding: 16px 32px;
  font-size: 1.125rem;
}


/* ─── FAQ ACCORDION ─────────────────────────────────────────────── */
.faq {
  background: #fafbfc;
  padding: 80px 0;
}

.faq h2 {
  text-align: center;
  font-size: 2.25rem;
  color: #111827;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 12px;
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 1.125rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #111827;
}

.faq-question .arrow {
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer p,
.faq-answer a {
  color: inherit;
}

.faq-item.open .faq-answer {
  max-height: 500px; /* big enough to fit your longest answer */
  padding: 12px 0 24px;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(90deg);
}




/* ─── FOOTER ───────────────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 60px 0 20px;
  font-size: 0.95rem;
  color: #4b5563;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Branding column */
.footer-brand {
  flex: 1 1 220px;
}

.footer-brand .logo img {
  height: 150px;
}

.footer-brand .tagline {
  margin-bottom: 16px;
  color: #6b7280;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
}

.social-icons img {
  height: 20px;
  filter: grayscale(100%);
  transition: filter 0.2s;
}

.social-icons a:hover img {
  filter: none;
}

/* Link columns */
.footer-col {
  flex: 1 1 140px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-weight: 600;
  color: #111827;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #06080e;
  text-decoration: underline black 2px;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  color: #9ca3af;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    margin-top: 30px;
  }
}













/* ─── THIS IS FOR THE PRICING PAGE ───────────────────────────────────────────────────── */
.pricing {
  background: #fff;
  padding: 80px 0;
  min-height: 100vh;
  box-sizing: border-box;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-header h2 {
  font-size: 2.25rem;
  color: #111827;
}

.pricing-subtitle {
  color: #6b7280;
  margin-top: 8px;
}

/* ─── CARDS ─────────────────────────────────────────────────────── */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.2s, border-color 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.featured {
  border-color: #3b82f6;
  background: #eff8ff;
}

.plan-card h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.plan-price .period {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 4px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #3b82f6;
  color: #3b82f6;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #3b82f6;
  color: #fff;
}

.btn-third {
  display: inline-block;
  padding: 12px 28px;
  background: #3b82f6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-third:hover {
  background: #2563eb;
}

/* ─── TABLE ────────────────────────────────────────────────────── */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
}

/* Center all column headers except the first one */
.pricing-table th {
  text-align: center;
  padding: 16px 12px;
}

/* Left-align the “Limits” header with extra padding */
.pricing-table th:first-child {
  text-align: left;
  padding-left: 24px;
}

/* Ensure the first data column matches the “Limits” alignment */
.pricing-table td:first-child {
  text-align: left;
  padding-left: 24px;
}

/* ─── HINT ICON ───────────────────────────────────────────────── */
.hint {
  font-size: 0.875rem;
  color: #6b7280;
  margin-left: 4px;
  cursor: help;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }
}











































/* ─── SMOKE SCREEN (CONSTRUCTION PAGE) ───────────────────────────────────────────────── */
/* ─── COMING SOON / UNDER DEVELOPMENT SMOKE SCREEN ─────────────── */
.coming-soon {
  background: #eef6ff;
  padding: 80px 0;
  text-align: center;
  /* new: make it span the full viewport height */
  min-height: 100vh;
  box-sizing: border-box;
}

.coming-soon h1 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 16px;
}

.coming-soon p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 40px;
}

.cs-options {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cs-option {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  width: 280px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.cs-option h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 8px;
}

.cs-option p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 16px;
}

/* waitlist form */
#waitlist-form {
  display: flex;
  gap: 8px;
}

#waitlist-form input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
}

#waitlist-form button {
  flex-shrink: 0;
}

/* button variations inherit your existing styles */
.btn-outline {
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

@media (max-width: 768px) {
  .cs-options {
    flex-direction: column;
    align-items: center;
  }
}
/* 1) Center the dotLottie animation */
.coming-soon dotlottie-wc {
  display: block;
  margin: 0 auto 24px;  /* auto-center + bottom gap */
}

/* 2) Ensure the waitlist button lives inside its card */
/* Center the email form’s contents */
.cs-option form {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center both input and button */
  gap: 12px;
  margin-top: 16px;
}

/* make the input stretch nicely */
#waitlist-form input {
  width: 100%;
  max-width: 240px;     /* or whatever fits your card */
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* keep the button from growing, centered by the flex container */
#waitlist-form button {
  width: auto;
  min-width: 140px;     /* or whatever you like */
}

/* on narrow screens stack them vertically */
@media (max-width: 600px) {
  .cs-option form {
    flex-direction: column;
  }
  #waitlist-form button {
    width: 100%;
  }
}
