/* --------------------------------------------------
   THEME VARIABLES
-------------------------------------------------- */
:root {
  --blue:  #3661D8;
  --blue-dark: #1e3a8a;
  --orange: #f04f0f;
  --orange-dark: #c2410c;

  --bg-dark: #0b0f19;
  --bg-light: #f8fafc;

  --text-dark: #f1f5f9;
  --text-light: #0b0c0f;

  --card-dark: #111827;
  --card-light: #ffffff;

  --border-dark: #1f2937;
  --border-light: #e2e8f0;
}

[data-theme="dark"] {
  --bg: var(--bg-dark);
  --text: var(--text-dark);
  --card: var(--card-dark);
  --border: var(--border-dark);
}

[data-theme="light"] {
  --bg: var(--bg-light);
  --text: var(--text-light);
  --card: var(--card-light);
  --border: var(--border-light);
}

.text-muted{
  color:#c4cbd4;
}
/* Smooth transitions */
* {
  transition: background-color .25s ease,
              color .25s ease,
              border-color .25s ease;
}

/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1600px) {
  .hero-left { margin-left: 4rem; }
  .container {
    max-width: 1400px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.section { padding: 1rem 0; }

/* --------------------------------------------------
   UTILITIES
-------------------------------------------------- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

.text-sm { font-size: .85rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.25rem; }
.text-xl { font-size: 1.75rem; }

.gradient-brand {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /*
   font-family: 'Inter', sans-serif;
   */
   font-family: 'Manrope', sans-serif;

  font-weight: 800;
  letter-spacing: -2px;
}


/* --------------------------------------------------
   NAVIGATION + HAMBURGER
-------------------------------------------------- */
.nav-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bg);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1600px) {
  .hero-left { margin-left: 4rem; }
  .nav-inner { padding: 1rem 3rem; }
}

.brand {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.brand-plus {
  font-size: 2.4rem;
  margin-left: 0.25rem;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-2px);
}

.links.desktop-only {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.links.desktop-only a {
  text-decoration: none;
  color: var(--text);
  opacity: 0.75;
  font-size: 0.9rem;
}

.links.desktop-only a:hover { opacity: 1; }

.theme-toggle {
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.8rem;
}

.hamburger.mobile-only { display: none; }

@media (max-width: 900px) {
  .links.desktop-only { display: none; }
  .hamburger.mobile-only {
    display: flex;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
  }
  .hamburger.mobile-only span {
    height: 3px;
    width: 100%;
    background: var(--text);
    border-radius: 3px;
    transition: 0.3s;
  }
  .hamburger.mobile-only.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.mobile-only.open span:nth-child(2) { opacity: 0; }
  .hamburger.mobile-only.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
}

.mobile-menu a {
  padding: 0.75rem 0;
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
}

.mobile-menu.open { display: flex; }

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary {
  background: var(--orange);
  color: white;
}
.btn-secondary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.fullscreen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-left: 16px;
  margin-right: 16px;
}

@media (max-width: 900px) {
  .fullscreen {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1rem;
  }
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 450;
  line-height: 1.45;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-left p {
  max-width: 480px;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero-buttons { justify-content: center; }
}

.hero-oval {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 3 / 1.7;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

.hero-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-oval::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 92%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* --------------------------------------------------
   FEATURES
-------------------------------------------------- */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color:#334155;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
}

@media (min-width: 900px) {
  .hero-left { margin-left: 4rem; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  /* border-radius: 16px; */
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------
   MULTI‑STEP MODAL (FINAL VERSION)
-------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

.modal-title {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-top:1.2rem;
  color: #222222;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
  opacity: 0.7;
}
.modal-close:hover { opacity: 1; }

.form-step {
  display: none;
  animation: slideIn 0.35s ease;
}
.form-step.active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(25px); }
  to   { opacity: 1; transform: translateX(0); }
}

.modal-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.25rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
  outline: 2px solid var(--blue);
}

.modal-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23aaa' height='18' viewBox='0 0 20 20' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548l4.484 4.484 4.484-4.484L16 8.548l-6 6-6-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 0.9rem;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.error {
  display: none;
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.error.show { display: block; }

.field-error { border-color: #ff6b6b !important; }

.error-required {
  display: none;
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.error-required.show { display: block; }

.form-success {
  display: none;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-success h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 1rem;
  opacity: 0.9;
}

.start-step {
  display: none;
  animation: slideIn 0.35s ease;
}
.start-step.active {
  display: block;
}

/* MAIN TOOLTIP */
.card-tooltip {
  position: fixed;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 3000;
  animation: fadeIn 0.25s ease;
}

.card-tooltip h4 {
  margin: 0 0 .5rem 0;
  font-size: 1.1rem;
}

.card-tooltip ul {
  padding-left: 1.2rem;
  margin: .5rem 0 0 0;
}

.card-tooltip li {
  margin-bottom: .4rem;
  position: relative;
}

/* QUESTION MARK ICON */
.qmark {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  margin-right: .4rem;
}

/* MICRO TOOLTIP
.micro-tip {
  position: fixed;
  background: var(--card);
  border: 1px solid var(--border);
  padding: .4rem .6rem;
  border-radius: 6px;
  font-size: .8rem;
  max-width: 180px;
  display: none;
  z-index: 4000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
 */
/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tt-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  line-height: 1;
}

.tt-close:hover {
  opacity: 1;
}

.micro-tip {
  position: fixed;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  max-width: 200px;
  display: none;
  z-index: 99999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  pointer-events: none; /* important: prevents blocking touches */
  white-space: normal;
}


/* Section Wrapper - Takes up 100% width without side margins */
.woms-features-section {
  width: 100%;
  padding: 60px 0;
  background-color: #f8f9fa; /* Light neutral background to make cards pop */
  box-sizing: border-box;
}

/* Responsive Grid Container */
.woms-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns on desktop */
  gap: 24px; /* Space between cards */
  padding: 0 24px; /* Internal padding so text doesn't touch screen edges */
  box-sizing: border-box;
}

/* Individual Card Styling */
.woms-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px; /* Generous padding to utilize horizontal space well */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  
  /* Smooth transition for interactivity */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Clean, Simple Hover Effect */
.woms-card:hover {
  transform: translateY(-4px); /* Subtle lift */
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Soft, professional shadow */
  cursor: pointer;
}

/* Typography & Elements */
.woms-icon {
  font-size: 2rem;
  margin-bottom: 16px;
 /* background-color: #475569;  */
  
  /* CHANGES HERE: Collapses the phantom top space inside the text string */
  display: flex;
  align-items: center;
  line-height: 1;
}

.woms-card-title {
  font-size: 1.5rem;
  color: #334155; /* Dark slate slate text */
  margin: 0 0 16px 0;
  font-family: sans-serif;
  font-weight: 600;
}

.woms-card-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569; /* Balanced, easy-to-read text color */
  margin: 0 0 24px 0;
  font-family: sans-serif;
}

/* Bottom Result Tag */
.woms-result-tag {
  font-size: 0.95rem;
  font-family: sans-serif;
  color: #1e3a8a; /* Soft dark blue for the metric emphasis */
  background-color: #eff6ff; /* Soft light blue background tint */
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-block;
  align-self: flex-start; /* Keeps the tag from stretching full width inside card */
  margin-top: auto; /* Pushes the tag to the absolute bottom of the card */
}

/* Mobile Responsiveness (Screen sizes below 900px) */
@media (max-width: 900px) {
  .woms-container {
    grid-template-columns: 1fr; /* Stacks cards into 1 column */
    gap: 20px;
  }
  
  .woms-card {
    padding: 30px 20px; /* Slightly tighter padding on small mobile screens */
  }
}

/* Section Wrapper */
.woms-bridge-section {
  width: 100%;
  padding: 60px 24px 20px 24px; /* Generous top padding, tight bottom padding to sit close to cards */
  background-color: #f8f9fa; /* Matches your feature section background */
  box-sizing: border-box;
  text-align: center;
}

/* Container to handle layout width constraints safely */
.woms-bridge-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Main Heading Structural Controller */
.woms-bridge-heading {
  display: flex;
  flex-direction: column; /* Forces the two spans onto separate lines */
  gap: 12px; /* Clean, controlled vertical spacing between line 1 and line 2 */
  max-width: 800px; /* Keeps line lengths optimal for comfortable reading */
  margin: 0;
  font-family: sans-serif;
}

/* Line 1: The Playful Hook (Your light-color solution) */
.heading-playful {
  font-size: 1.75rem;
  color: #64748b; /* Soft, lighter slate blue—noticeable but non-aggressive */
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Line 2: The Practical Resolution */
.heading-main {
  font-size: 2.25rem;
  color: #334155; /* Deep, rich dark slate for maximum structural readability */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

/* Styling the "What" and "How" emphasis tags inside Line 2 */
.heading-main em {
  font-style: normal; /* Removes standard messy browser italics */
  color: #1e3a8a; /* Swaps them to your brand's signature accent blue */
  text-decoration: underline; /* Adds subtle execution contrast */
  text-underline-offset: 4px;
}

/* Mobile Responsiveness (Screen sizes below 768px) */
@media (max-width: 768px) {
  .woms-bridge-section {
    padding: 40px 20px 10px 20px;
  }
  
  .heading-playful {
    font-size: 1.4rem;
  }
  
  .heading-main {
    font-size: 1.75rem;
  }
}



/* Header Block Layout */
.woms-section-header {
  max-width: 900px;
  margin: 0 auto 48px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px; /* Slightly more vertical breathing room between the thoughts */
  padding: 0 24px;
  box-sizing: border-box;
}

/* Line 1: Playful Hook */
.header-playful {
  font-size: 1.85rem; /* Made a tiny bit larger for premium legibility */
  color: #64748b; /* Soft slate gray */
  font-weight: 500;
  letter-spacing: -0.02em;
  font-family: sans-serif;
}

/* The Styled "How?" Accent */
.header-playful .accent-italic {
  font-style: italic;
  color:  #64748b;/*#1e3a8a; Soft, commanding brand blue */
  font-weight: 600; /* Slightly heavier than the gray text so it pops, but not blocky */
}

/* Line 2: The Core Product Category */
.header-main {
  font-size: 2rem;
  color: #334155; /* Deep charcoal slate */
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin: 0;
  font-family: sans-serif;
}

/* Highlighted SEO Keyword Styling */
.header-main strong {
  font-weight: 700;
  color: #0b0c0f;  
  background-image: linear-gradient(120deg, #eff6ff 0%, #eff6ff 100%); /* Adds a very soft blue highlight block behind the keyword */
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 80%;
}

.woms-button {
  background-color: #F04F0F;
  color: #ffffff;
  
  /* Font styling based on your choice */
  font-family: 'Manrope', sans-serif; 
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  
  /* FIXED: Removed the border radius completely for a sharp edge */
  border-radius: 0;
  border: none;
  
  /* FIXED: Leaner vertical padding, generous horizontal padding */
  padding: 10px 28px; 
  
  /* Layout layout alignment helpers */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  
  /* Anti-aliasing text crispness fixes */
  letter-spacing: 0.02em; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* Smooth transition wrapper for the hover color swap */
  transition: background-color 0.2s ease;
}

/* NEW: Hover state with a balanced, slightly darker premium shade */
.woms-button:hover {
  background-color: #D64105; 
}

@media (max-width: 900px) {
  .hero-oval {
    aspect-ratio: 3 / 1.2; /* tighter, shorter */
    max-width: 420px;      /* optional: keeps it from ballooning */
    margin-top: 1rem;      /* optional: adds breathing room */
  }

  .hero-right {
    margin-top: -10px;     /* pulls image up slightly */
  }
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
  .woms-section-header {
    margin-bottom: 32px;
  }
  .header-playful { font-size: 1.45rem; }
  .header-main { font-size: 1.65rem; }
}