@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  background: #111241;
  padding: 2rem 0;
  /* position: sticky; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 0.125rem 1.25rem rgba(20, 69, 228, 0.3);
}
.sub-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 2rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    background:
      linear-gradient(#111241, #111241) padding-box,
      linear-gradient(90deg, #2255F5, #FFFFFF) border-box;
}

.nav-link:hover {
    border: 0.125rem solid transparent;
} */

.nav-link {
  position: relative;
  z-index: 0;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.1rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.125rem; /* border thickness */
  background: linear-gradient(90deg, #2255f5, #ffffff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0; /* start invisible */
  transition: opacity 0.3s ease; /* smooth fade */
}

.nav-link:hover::before {
  opacity: 1; /* fade in gradient border */
}

/* Login/Sign Up nav link with permanent gradient border */
.nav-link.login-signup::before {
  opacity: 1; /* permanent gradient border */
}

.nav-link.login-signup {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid transparent;
}

.nav-link.login-signup:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 0.75rem rgba(34, 85, 245, 0.3);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* Ensure anchor tags with button classes look like buttons */
a.btn {
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-primary {
  background: #e5e8f2;
  color: #2254f5;
  border: 0.125rem solid #e8edf5;
}

.btn-primary:hover {
  /* background: #f8f9fa; */
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(20, 69, 228, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: #e5e8f2;
  color: #111;
  border: 0.125rem solid #2254f5;
}

.btn-outline:hover {
  background: #e5e8f2;
  color: white;
}

/* Hero Section */
.hero {
  background: #0a1128;
  color: white;
  padding: 10vh 0 0;
  text-align: center;
  min-height: auto;
  /* display: flex; */
  /* align-items: center; */
  position: relative;
  overflow: hidden;
}

.pb-8 {
  padding-bottom: 8vh !important;
}

/* Light Effect Ellipse */
.hero-light-ellipse {
  position: absolute;
  width: 40.67rem;
  height: 40.59rem;
  top: -17.49rem;
  left: 28.41rem;
  background: #0038ff;
  border-radius: 50%;
  filter: blur(15rem);
  /* opacity: 0.4; */
  z-index: 1;
  pointer-events: none;
  transform: rotate(90deg);
  mix-blend-mode: screen;
}

/* Responsive adjustments for the light effect */
@media (max-width: 1200px) {
  .hero-light-ellipse {
    width: 37.5rem;
    height: 37.5rem;
    left: 18.75rem;
    filter: blur(18.75rem);
  }
}

@media (max-width: 768px) {
  .hero-light-ellipse {
    width: 25rem;
    height: 25rem;
    left: 12.5rem;
    top: -12.5rem;
    filter: blur(12.5rem);
  }
}

/* Use default container width to keep content nicely centered */

.hero-content {
  /* max-width: 800px; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 5.1875rem;
  letter-spacing: -0.125rem;
}

.highlight {
  font-size: 4.3rem;
  display: block;
  /* margin-top: 0.6rem; */
}

.hero-description {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 4rem;
  border-radius: 2rem;
  font-weight: 700;
  background-color: #fff;
  color: #2254f5;
  font-size: 1.2rem;
}

.store-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.store-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.2);
}

.availability {
  font-size: 0.9rem;
  font-weight: 100;
  opacity: 0.7;
}

.hero-video {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-video video {
  width: 70vw;
  max-width: 75rem;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.capture-detect,
.chat-voice,
.ai-assistant {
  padding: 2.5rem 0;
  background: #f5f5f5;
}

.capture-detect .container,
.chat-voice .container {
  background: #e5e8f2;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.08);
}

.ai-assistant .container {
  background: transparent;
  border-radius: 1.5rem;
  padding: 0;
  box-shadow: none;
}

/* CTA Button Active States */
.cta-buttons .btn.active {
  background: #1445e4;
  color: white;
  border-color: #1445e4;
}

.cta-buttons .btn:not(.active) {
  color: #111;
  border-color: #2254f5;
}

/* Content Panel Toggle Styles */
.content-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-panel.active {
  display: flex !important;
  gap: 4rem;
  align-items: center;
  opacity: 1;
}

/* Ensure first panel is visible by default */
.content-panel:first-child {
  display: flex;
  opacity: 1;
}

/* Full-width content for detect panel */
.content-panel[data-panel='detect'] .image-content {
  flex: 1 1 100%;
}

.interface-left {
  background: #f8fafc;
  padding: 1.5rem;
  position: relative;
}

.three-d-view {
  height: 100%;
  position: relative;
}

.view-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.control-icon {
  width: 2rem;
  height: 2rem;
  background: white;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.control-icon:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.three-d-scene {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  height: 18.75rem;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}

.annotation {
  position: absolute;
  background: rgba(20, 69, 228, 0.9);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 0.125rem solid white;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
}

.annotation.window {
  top: 20%;
  left: 15%;
}

.annotation.floor {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.annotation.pipe {
  top: 30%;
  right: 20%;
}

.interface-right {
  background: white;
  padding: 1.5rem;
  border-left: 0.0625rem solid #e2e8f0;
}

.comments-header {
  margin-bottom: 1.5rem;
}

.comments-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.search-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-filter input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.375rem;
  font-size: 0.9rem;
}

.filter-icon {
  width: 2rem;
  height: 2rem;
  background: #f8fafc;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border: 0.0625rem solid #e2e8f0;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-title {
  font-weight: 600;
  color: #1e293b;
}

.status.resolved {
  background: #d1fae5;
  color: #065f46;
  padding: 0.125rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
}

.comment-item p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.reply-link {
  color: #2254f5;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
}

.reply-link:hover {
  text-decoration: underline;
}

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

.section-header h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #07133a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.5rem;
  color: #07133a;
  max-width: 50rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.section-content .image-content,
.section-content .text-content {
  flex: 1 1 45%;
}

.section-content .image-content video {
  width: 100%;
  height: auto;
  max-height: 28.125rem;
  /* adjust as needed */
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
}

.text-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1.4rem;
  color: #07133a;
  line-height: 1.7;
}

.image-content img,
.image-content video {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
}

/* .video-placeholder {
    background: #f1f5f9;
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 1.1rem;
} */

.text-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
}

.text-box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.text-box p {
  color: #64748b;
  line-height: 1.6;
}

/* AI Assistant Interface */
.ai-assistant-image {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}

.ai-assistant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}

.interface-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  background: #e2e8f0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-icon.voice {
  background: #1445e4;
  color: white;
}

.arrow {
  font-size: 2rem;
  color: #1445e4;
  font-weight: bold;
}

.left-arrow {
  transform: rotate(0deg);
}

.right-arrow {
  transform: rotate(180deg);
}

.feature-text {
  font-weight: 500;
  color: #64748b;
  text-align: center;
}

.central-logo {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo-icon {
  width: 6.25rem;
  height: 6.25rem;
  background: #1445e4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.central-logo h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1445e4;
  margin-bottom: 0.5rem;
}

.central-logo p {
  color: #64748b;
  font-size: 1.1rem;
}

/* Interface Screenshot */
.interface-screenshot {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.screenshot-header {
  background: #f8fafc;
  padding: 1rem 1.5rem;
  border-bottom: 0.0625rem solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.dropdown {
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
}

.search-bar input {
  padding: 0.5rem 1rem;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.5rem;
  width: 12.5rem;
}

.header-right {
  display: flex;
  gap: 0.5rem;
}

.header-btn {
  padding: 0.5rem 1rem;
  background: white;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.375rem;
  color: #64748b;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Table Styles */
.screenshot-table {
  overflow-x: auto;
}

.screenshot-table table {
  width: 100%;
  border-collapse: collapse;
}

.screenshot-table th,
.screenshot-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 0.0625rem solid #f1f5f9;
}

.screenshot-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #475569;
  font-size: 0.9rem;
}

.screenshot-table td {
  color: #1e293b;
  font-size: 0.9rem;
}

.status {
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.status.pending {
  background: #fef3c7;
  color: #92400e;
}

.status.review {
  background: #dbeafe;
  color: #1e40af;
}

.status.progress {
  background: #fed7aa;
  color: #c2410c;
}

.status.completed {
  background: #d1fae5;
  color: #065f46;
}

/* Contact Section */
.contact {
  background: white;
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #475569;
}

.contact-item .icon {
  font-size: 1.5rem;
  width: 2.5rem;
  text-align: center;
}

.contact-form {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  border: 0.0625rem solid #e2e8f0;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1445e4;
  box-shadow: 0 0 0 3px rgba(20, 69, 228, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 6.25rem;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* Early Bird Access Section */
.early-bird {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.early-bird-content {
  max-width: 53.125rem;
  margin: 0 auto;
}

.early-bird h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.early-bird p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.5;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.countdown-number {
  background: white;
  color: #1445e4;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  min-width: 5rem;
  display: inline-block;
}

.countdown-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.signup-form {
  max-width: 31.25rem;
  margin: 0 auto;
}

.input-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  min-width: 15.625rem;
}

.email-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.signup-btn {
  padding: 1rem 4rem;
  font-size: 1.1rem;
  border-radius: 12px;
  white-space: nowrap;
  background-color: #2254f5;
  color: #fff;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

.checkbox {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #1445e4;
}

.terms-checkbox strong {
  color: white;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 2rem 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 1rem;
  font-weight: 500;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Policy Pages Common Styles */
.policy-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.policy-content {
  background: #e5e8f2;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.08);
  max-width: 60rem;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 1rem;
  border: 0.0625rem solid #cbd5e1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: white;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  padding: 1.5rem;
  cursor: pointer;
  background: #f8fafc;
  border-bottom: 0.0625rem solid #e2e8f0;
  transition: background-color 0.3s ease;
  position: relative;
}

.policy-section h2:hover {
  background: #f1f5f9;
}

.policy-section h2::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #64748b;
  transition: transform 0.3s ease;
}

.policy-section.active h2::after {
  transform: translateY(-50%) rotate(45deg);
}

.policy-section h3 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.policy-section p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.policy-section ul {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: #1e293b;
  font-weight: 600;
}

.last-updated {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.contact-form-container {
  background: #e5e8f2;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.08);
  max-width: 50rem;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: white;
  color: #1e293b;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1445e4;
  box-shadow: 0 0 0 0.1875rem rgba(20, 69, 228, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.submit-btn {
  background: #1445e4;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #0d33a8;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(20, 69, 228, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Highlight Box for Terms of Use */
.highlight-box {
  background: #f8fafc;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box h4 {
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact Info Box for Refund Policy */
.contact-info {
  background: #f8fafc;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: #1e293b;
}

/* Logo Link Styles */
.logo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.logo a img {
  margin-right: 0.5rem;
}

/* Mobile Navigation - Hide Login/Sign Up on mobile */
@media (max-width: 768px) {
  .nav-link.login-signup {
    display: none;
  }

  .nav {
    gap: 1rem;
  }
}

/* Desktop Navigation - Show both nav links */
@media (min-width: 769px) {
  .nav-link.login-signup {
    display: inline-block;
  }

  .nav {
    gap: 1.25rem;
  }
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
  .policy-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .policy-section h2 {
    font-size: 1.1rem;
    padding: 1.25rem;
  }

  .policy-section h3 {
    font-size: 1rem;
  }

  .policy-section p,
  .policy-section ul {
    font-size: 0.8rem;
  }

  .contact-form-container {
    padding: 2rem;
    margin: 0 1rem;
  }

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

  /* Mobile header adjustments for legal pages */
  .policy-hero .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .policy-hero .hero-description {
    font-size: 1.1rem !important;
    max-width: 35rem;
  }

  /* Mobile header adjustments for contact page */
  .contact-hero .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .contact-hero .hero-description {
    font-size: 1.1rem !important;
    max-width: 35rem;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .highlight {
    font-size: 3.5rem;
  }

  .hero-description {
    font-size: 1.3rem;
    max-width: 45rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1.3rem;
    max-width: 40rem;
  }

  .text-content h3 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 1.2rem;
  }

  .early-bird h2 {
    font-size: 2.2rem;
  }

  .early-bird p {
    font-size: 1.2rem;
  }

  .countdown-number {
    font-size: 2.2rem;
    padding: 0.9rem 1.3rem;
  }

  .contact-info h3 {
    font-size: 1.8rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
    line-height: 3.5rem;
  }

  .highlight {
    font-size: 2.8rem;
  }

  .hero-description {
    font-size: 1.2rem;
    max-width: 35rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero .btn {
    padding: 0.9rem 3rem;
    font-size: 1.1rem;
  }

  .early-bird h2 {
    font-size: 2rem;
  }

  .early-bird p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .countdown-number {
    font-size: 1.8rem;
    padding: 0.8rem 1.2rem;
    min-width: 4.375rem;
  }

  .countdown-label {
    font-size: 0.8rem;
  }

  .input-group {
    flex-direction: column;
    align-items: center;
  }

  .email-input {
    min-width: 100%;
    max-width: 18.75rem;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
  }

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

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

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.2rem;
    max-width: 35rem;
  }

  .text-content h3 {
    font-size: 1.6rem;
  }

  .text-content p {
    font-size: 1.1rem;
  }

  .content-panel.active {
    flex-direction: column;
    gap: 2rem;
  }

  .interface-overview {
    flex-direction: column;
    gap: 2rem;
  }

  .central-logo {
    position: static;
    transform: none;
    margin: 2rem 0;
  }

  .logo-icon {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
  }

  .central-logo h3 {
    font-size: 1.6rem;
  }

  .central-logo p {
    font-size: 1rem;
  }

  .cta-buttons {
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .screenshot-header {
    align-items: stretch;
  }

  .header-left,
  .header-right {
    justify-content: center;
  }

  .search-bar input {
    width: 10rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .header-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info h3 {
    font-size: 1.6rem;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }

  .contact-form .btn {
    padding: 0.9rem;
    font-size: 1rem;
  }

  .text-box {
    padding: 1.5rem;
  }

  .text-box h4 {
    font-size: 1.3rem;
  }

  .text-box p {
    font-size: 0.95rem;
  }

  .feature-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }

  .arrow {
    font-size: 1.6rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }
}

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

  .hero-title {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .highlight {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
    max-width: 25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1.1rem;
    max-width: 25rem;
  }

  .text-content h3 {
    font-size: 1.4rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .app-stores {
    gap: 0.625rem;
    margin-bottom: 0.8rem;
  }

  .store-icon {
    width: 3.125rem;
    height: 3.125rem;
  }

  .availability {
    font-size: 0.8rem;
  }

  .early-bird h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .early-bird p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .countdown-timer {
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .countdown-number {
    font-size: 1.6rem;
    padding: 0.7rem 1rem;
    min-width: 3.75rem;
  }

  .countdown-label {
    font-size: 0.75rem;
  }

  .email-input {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    min-width: 12.5rem;
  }

  .signup-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }

  .terms-checkbox {
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .checkbox {
    width: 1rem;
    height: 1rem;
  }

  .contact-info h3 {
    font-size: 1.4rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.5rem 0.7rem;
    font-size: 0.9rem;
  }

  .contact-form .btn {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .text-box {
    padding: 1.2rem;
  }

  .text-box h4 {
    font-size: 1.2rem;
  }

  .text-box p {
    font-size: 0.9rem;
  }

  .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }

  .arrow {
    font-size: 1.4rem;
  }

  .feature-text {
    font-size: 0.8rem;
  }

  .logo-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .central-logo h3 {
    font-size: 1.4rem;
  }

  .central-logo p {
    font-size: 0.9rem;
  }

  .cta-buttons .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .search-bar input {
    width: 8rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }

  .header-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }

  .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  /* Small mobile header adjustments for legal pages */
  .policy-hero .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .policy-hero .hero-description {
    font-size: 1rem !important;
    max-width: 25rem;
  }

  /* Small mobile header adjustments for contact page */
  .contact-hero .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .contact-hero .hero-description {
    font-size: 1rem !important;
    max-width: 25rem;
  }

  .policy-content {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .policy-section h2 {
    font-size: 1rem;
    padding: 1rem;
  }

  .policy-section h3 {
    font-size: 0.9rem;
  }

  .policy-section p,
  .policy-section ul {
    font-size: 0.75rem;
  }

  .contact-form-container {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }

  .highlight {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 20rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 1rem;
    max-width: 20rem;
  }

  .text-content h3 {
    font-size: 1.3rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }

  .early-bird h2 {
    font-size: 1.6rem;
  }

  .early-bird p {
    font-size: 0.95rem;
  }

  .countdown-number {
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
    min-width: 3.125rem;
  }

  .email-input {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
    min-width: 10rem;
  }

  .signup-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .nav-link {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  /* Extra small mobile header adjustments for legal pages */
  .policy-hero .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .policy-hero .hero-description {
    font-size: 0.9rem !important;
    max-width: 20rem;
  }

  .policy-content {
    padding: 1rem;
    margin: 0 0.25rem;
  }

  .policy-section h2 {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .policy-section h3 {
    font-size: 0.8rem;
  }

  .policy-section p,
  .policy-section ul {
    font-size: 0.7rem;
  }

  .contact-form-container {
    padding: 1rem;
    margin: 0 0.25rem;
  }

  /* Extra small mobile header adjustments for contact page */
  .contact-hero .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .contact-hero .hero-description {
    font-size: 0.9rem !important;
    max-width: 20rem;
  }
}

/* Section 1 */
.section-hero {
  background-color: #000229;
  color: #fff;
  text-align: center;
  padding: 5rem 0 0;
  /* border-bottom-left-radius: 2.5rem; */
  border-bottom-right-radius: 2.5rem;
}

.section-hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-hero p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.section-hero .cta-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #1951ff;
  color: #fff;
  border-radius: 3.125rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.section-hero .cta-btn:hover {
  background-color: #0e53d8;
}

.section2 video,
.section3-img video {
  width: 85vw;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
}

.app-stores {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0 1rem;
}

.store-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.store-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.2);
}

.availability {
  font-size: 0.9rem;
  font-weight: 100;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.section-hero-img {
  width: 100%;
  /* max-width: 75rem; */
  /* margin: 2.5rem auto 0; */
  border-radius: 100px 100px 48px 48px;
  overflow: hidden;
  position: relative;
}

.section-hero-img img {
  width: 100%;
  display: block;
}

.section-hero-img .caption {
  position: absolute;
  top: 10rem;
  right: 1.875rem;
  font-weight: 700;
  color: #2254f5;
  font-size: 2.5rem;
  max-width: 40rem;
  text-align: left;
}

/* Section 2 */
.section2 {
  position: relative;
  text-align: center;
  padding: 5rem 1.25rem;
}

.section2 .top-left-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 25rem;
}

.scetion2-content {
  width: 60%;
  /* margin: 0 auto 9.375rem; */
  margin-bottom: 10rem;
  margin-left: auto;
  text-align: left;
}

.section2 .heading {
  color: #2254f5;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.375rem;
}

.section2 h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #2254f5;
  margin-bottom: 0.75rem;
  line-height: normal;
}

.section2 p {
  font-size: 2rem;
  max-width: 33.75rem;
  font-weight: 400;
  /* margin: 0 auto 2.5rem; */
}

.section2 .hero-video img.overlay-img {
  position: absolute;
  top: -8.75rem; /* position above the video */
  right: 0; /* align to right edge */
  width: 22%; /* scale with video width */
  max-width: 15rem; /* cap size on large screens */
  height: auto;
  z-index: 2;
  pointer-events: none;
  transform: none; /* remove centering transform */
}

/* keep wrapper sizing rules */
.hero-video .video-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 3rem; /* add space above for the overlay image */
}

/* responsive tweaks */

@media (max-width: 1280px) {
  .section2 .hero-video img.overlay-img {
    width: 26%;
  }
  .section2 .top-left-img {
    width: 15rem;
  }
  .scetion2-content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 150px;
  }
  .section-hero-img .caption {
    top: 3rem;
    font-size: 2rem;
    margin-left: auto;
    max-width: 50%;
    text-align: end;
  }
}

@media (max-width: 1024px) {
  .section2 .hero-video img.overlay-img {
    width: 26%;
    top: -6rem;
  }

  .hero-video .video-wrapper {
    margin-top: 2.5rem;
    position: static;
  }
  .section2 h2 {
    font-size: 3rem;
  }
  .section2 p {
    font-size: 1.8rem;
  }
}

@media (max-width: 850px) {
  .section2 .hero-video img.overlay-img {
    top: -5rem;
  }
}

@media (max-width: 768px) {
  .section2 .hero-video img.overlay-img {
    width: 30%;
    max-width: 9rem;
    top: -3.5rem;
  }

  .hero-video .video-wrapper {
    margin-top: 2rem;
    position: static;
  }

  .section-hero-img {
    border-radius: 40px 40px 25px 25px;
  }
}

@media (max-width: 480px) {
  .section2 .hero-video img.overlay-img {
    width: 36%;
    max-width: 7.5rem;
    top: -3rem;
  }

  .hero-video .video-wrapper {
    margin-top: 1.5rem;
    position: static;
  }
}

/* Section 3 */
.section3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  padding: 5rem 0 5rem 2.5rem;
  overflow: scroll;
  /* remove scrollbar */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  width: 100%;
}

/* max width 640px make full padding */
@media (max-width: 640px) {
  .section3 {
    padding: 5rem 1.25rem 5rem 1.25rem;
  }
}

.section3-text {
  flex: 1;
  min-width: 17.5rem;
}

.section3-text .heading {
  font-size: 2rem;
  color: #3366ff;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: normal;
}

.section3-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #3366ff;
  margin-bottom: 1.5rem;
  line-height: normal;
}

.section3-text p {
  font-size: 1.8rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.section3-img {
  flex: 1;
  min-width: 17.5rem;
  border-radius: 1.875rem;
  /* overflow: hidden; */
}

.section3-img img {
  width: 90%;
  display: block;
}

/* Section 4 */
.section4 {
  background-color: #f5f7fa;
  padding: 5rem 1.25rem 0;
  text-align: center;
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
}

.section4 .heading {
  color: #2254f5;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.375rem;
}

.section4 h2 {
  color: #2254f5;
  font-size: 3.8rem;
  margin-bottom: 4rem;
  line-height: normal;
  font-weight: 400;
}

.section4 p {
  font-size: 1.8rem;
  max-width: 50rem;
  margin: 0 auto 2.5rem;
}

.section4 .image-wrapper {
  width: 90%;
  max-width: 900px;
  margin: 28px auto -60px; /*  <— THIS pulls image down into footer */
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 3; /*  <— higher than the footer */
}

.section4-footer {
  background-color: #1445e4;
  color: #fff;
  padding: 64px 20px 120px;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  position: relative;
  z-index: 1; /* lower than the image */
}

.section4 .image-wrapper img {
  width: 80%;
  margin: auto;
  display: block;
}

/* .section4-footer {
    background-color: #1445E4;
    color: #fff;
    padding: 2.5rem 1.25rem;
    text-align: center;
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    margin-top: -0.0625rem;
  } */

.section4-footer h3 {
  font-size: 3.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section4-footer p {
  font-size: 2rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

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

.section4-footer .buttons a {
  padding: 0.75rem 1.75rem;
  border-radius: 3.125rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.section4-footer .buttons a.try {
  background-color: #000;
  color: #fff;
}

.section4-footer .buttons a.contact {
  background-color: #fff;
  color: #2254f5;
}

.input-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.signup-btn {
  padding: 1rem 4rem;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  white-space: nowrap;
  background-color: #2254f5;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.signup-btn:hover {
  background-color: #1a47d1;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(34, 84, 245, 0.3);
}

@media (max-width: 48rem) {
  .header span {
    display: none;
  }

  .section-hero h1 {
    font-size: 1.5rem;
  }

  .section-hero p {
    font-size: 1rem;
    padding: 0 2rem;
  }

  .section-hero-img .caption {
    top: 3rem;
    font-size: 1rem;
    max-width: 10rem;
  }

  .section2 h2,
  .section4 h2 {
    font-size: 1.6rem;
  }

  .section2 video,
  .section3-img video {
    max-width: 75rem;
  }

  .section2 .top-left-img {
    width: 8rem;
  }

  .scetion2-content {
    width: 90%;
    margin: 7rem auto 10.375rem;
    padding: 0;
  }

  .section2 p {
    font-size: 1rem;
  }

  .section3-text h2 {
    font-size: 2rem;
  }

  .section3-text p {
    font-size: 1rem;
  }

  .section4 h2 {
    margin-bottom: 2rem;
  }

  .section4 p {
    font-size: 1rem;
  }

  .section4-footer h3 {
    font-size: 2rem;
  }

  .section4-footer p {
    font-size: 1rem;
  }
}

/* Toggle Tabs */
.page-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.25rem;
  margin: 0 2rem;
}

.toggle-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 0.0625rem solid transparent;
  position: relative;
}

.toggle-tab:first-child {
  margin-right: 0.25rem;
}

.toggle-tab:last-child {
  margin-left: 0.25rem;
}

.toggle-tab.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.toggle-tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile responsive for toggle tabs */
@media (max-width: 48rem) {
  .page-toggle {
    margin: 0 1rem;
  }

  .toggle-tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 30rem) {
  .page-toggle {
    margin: 0 0.5rem;
  }

  .toggle-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}
