/* --- GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
:root {
  --primary-purple: #5a4bff;
  --dark-navy: #0a2540;
  --text-gray: #4b5563;
}
html { scroll-behavior: smooth; }
body { background: #f8f9fc; color: #111; overflow-x: hidden; }

/* --- NAVBAR STYLES --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(36, 8, 8, 0.85); 
  backdrop-filter: blur(15px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.about-navbar {
  background:  #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 .logo img {
      height: 40px; /* Adjust based on your logo size */
      display: block;
    }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { text-decoration: none; color: #fff; font-weight: 500; font-size: 15px; position: relative; transition: 0.3s; }
.about-navbar .nav-link { color: var(--text-gray) !important; }
.nav-link.active-page { color: var(--primary-purple) !important; }

.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--primary-purple); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active-page::after { width: 100%; }
.nav-link:hover { color: var(--primary-purple) !important; }

.btn-login { background: var(--primary-purple); color: #fff !important; padding: 10px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(90, 75, 255, 0.3); }

/* --- MOBILE SIDEBAR --- */
.mobile-menu-btn { display: none; font-size: 24px; color: #fff; cursor: pointer; }
.about-navbar .mobile-menu-btn { color: var(--dark-navy) !important; }

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .navbar-container { padding: 0 20px; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #ffffff; flex-direction: column; padding: 100px 30px; gap: 30px; transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); z-index: 999; visibility: hidden; opacity: 0; pointer-events: none; }
  .nav-menu.active { right: 0; visibility: visible; opacity: 1; pointer-events: auto; }
  .nav-menu a { color: var(--dark-navy) !important; font-size: 18px; width: 100%; text-align: left; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; }
  .btn-login { width: 100%; text-align: center; margin-top: 20px; }
}

/* --- ABOUT HERO & STATS --- */
.about-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.about-hero { padding: 140px 0 100px; background: #ffffff; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.owner-eyebrow { display: block; color: var(--primary-purple); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.about-text h2 { font-size: 52px; font-weight: 800; color: var(--dark-navy); line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.about-text p { font-size: 18px; color: var(--text-gray); line-height: 1.7; margin-bottom: 45px; }
.stats-row { display: flex; gap: 40px; padding-top: 30px; border-top: 1px solid #f0f0f0; }
.stat-number { display: block; font-size: 32px; font-weight: 800; color: var(--primary-purple); margin-bottom: 5px; }
.stat-label { font-size: 14px; font-weight: 600; color: #6b7280; text-transform: uppercase; }

.about-visual .image-wrapper { position: relative; z-index: 1; }
.about-visual img { width: 100%; border-radius: 40px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); display: block; }
.accent-float { position: absolute; width: 200px; height: 200px; background: var(--primary-purple); bottom: -30px; right: -30px; border-radius: 40px; z-index: -1; opacity: 0.1; }

/* --- PARTNERS --- */
.partners-section { padding: 40px 0; }
.partners-banner.purple-variant { background: linear-gradient(135deg, #f6f5ff 0%, #edeaff 100%); padding: 35px 60px; border-radius: 30px; border: 1px solid rgba(90, 75, 255, 0.1); }
.partners-grid { display: flex; justify-content: space-around; align-items: center; gap: 30px; flex-wrap: wrap; }
.partner-item { display: flex; align-items: center; gap: 12px; }
.partner-logo-box { width: 40px; height: 40px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-purple); font-size: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.partner-item span { font-size: 18px; font-weight: 700; color: var(--dark-navy); }
/* --- FEATURES SECTION (Updated Responsive Grid) --- */
.features-section { padding: 100px 0; background: #ffffff; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 42px; color: var(--dark-navy); margin: 10px 0 20px; font-weight: 800; }

.features-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px; 
}

.feature-card { background: #fcfcff; padding: 40px; border-radius: 24px; border: 1px solid #f0f0f8; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-10px); background: #ffffff; box-shadow: 0 20px 40px rgba(90, 75, 255, 0.08); border-color: rgba(90, 75, 255, 0.2); }
.feature-icon { width: 60px; height: 60px; background: rgba(90, 75, 255, 0.1); color: var(--primary-purple); display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: 16px; margin-bottom: 25px; }
.feature-card h3 { font-size: 22px; color: var(--dark-navy); margin-bottom: 15px; font-weight: 700; }
.feature-card p { font-size: 15px; color: var(--text-gray); line-height: 1.6; }

/* Features Mobile Override: 2 Cards per row */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .feature-card { padding: 20px 15px; border-radius: 15px; }
    .feature-icon { width: 45px; height: 45px; font-size: 18px; margin-bottom: 15px; }
    .feature-card h3 { font-size: 16px; margin-bottom: 8px; }
    .feature-card p { font-size: 12px; line-height: 1.4; }
    .section-header h2 { font-size: 28px; }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .stats-row { justify-content: center; }
}
/* --------- Base Footer Styles --------- */
:root {
  --footer-bg: #051a33; /* Darker navy to match image */
  --footer-text: #adbdcc;
  --footer-heading: #ffffff;
  --accent: #7b61ff;
}

.vynest-footer {
  background-color: var(--footer-bg);
  padding: 80px 0 30px;
  color: var(--footer-text);
  font-family: 'Inter', sans-serif;
  width: 100%;
}

.footer-container {
  max-width: 1400px; 
  margin: 0 auto;
  padding: 0 40px; 
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* 4 columns for desktop */
  gap: 40px;
}

.footer-logo {
  color: var(--footer-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span { color: var(--accent); }

.footer-brand p {
  line-height: 1.6;
  font-size: 14.5px;
  margin-bottom: 25px;
}

.social-links { display: flex; gap: 15px; }

.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--footer-heading);
  transition: 0.3s;
}

.footer-links h4 {
  color: var(--footer-heading);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  text-decoration: none;
  color: var(--footer-text);
  font-size: 14.5px;
  transition: 0.3s;
}

/* ================= MOBILE FOOTER COMPRESSION (Matches Image) ================= */
@media (max-width: 768px) {
  .vynest-footer {
    padding-top: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr; /* 2-column link layout */
    gap: 30px 20px;
    padding: 0 24px;
  }

  /* Brand section: Full width and Centered */
  .footer-brand {
    grid-column: 1 / -1; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-logo {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 90%; /* Keeps text tight */
  }

  .social-links {
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Link Sections: Left-aligned within their 2-column grid */
  .footer-links {
    text-align: center; /* Set to 'left' if you want links aligned left */
  }

  /* Force "Product" column to center if it looks lonely, 
     or let it sit in the grid like the image shows */
  .footer-links:last-of-type {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .footer-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  /* Bottom footer */
  .footer-bottom {
    margin-top: 30px;
    padding: 20px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 0;
  }

  .bottom-legal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
  }

  .bottom-legal a {
    margin-left: 0;
    font-size: 13px;
  }
}

/* ================= DESKTOP RESPONSIVE — FOOTER BOTTOM ONLY ================= */
@media (min-width: 769px) {

  .bottom-container {
    display: flex;
    flex-wrap: wrap;          /* allow wrapping */
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
  }

  /* Text blocks */
  .bottom-container p,
  .footer-credit {
    white-space: nowrap;      /* keep text clean */
  }

  /* Legal links */
  .bottom-legal {
    display: flex;
    gap: 16px;
    white-space: nowrap;
  }

  /* When desktop width is tight */
  @media (max-width: 1100px) {
    .bottom-legal {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
    }
  }
}
/* ================= DESKTOP FIX — FOOTER BOTTOM ================= */
@media (min-width: 769px) {

  .footer-bottom {
    padding-top: 28px;
  }

  .bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left | center | right */
    align-items: center;
    gap: 20px;
  }

  /* Left text */
  .bottom-container p {
    justify-self: start;
    white-space: nowrap;
  }

  /* Center credit */
  .footer-credit {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
  }

  /* Right legal links */
  .bottom-legal {
    justify-self: end;
    display: flex;
    gap: 18px;
    white-space: nowrap;
  }

  /* Smaller desktop safety */
  @media (max-width: 1100px) {
    .bottom-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .bottom-container p,
    .footer-credit,
    .bottom-legal {
      justify-self: center;
    }
  }
}
/* ================= DESKTOP — WHITE BOTTOM FOOTER TEXT ================= */
@media (min-width: 769px) {

  /* Made with ❤️ by WebPrimeSite */
  .footer-credit,
  .footer-credit a {
    color: #ffffff !important;
  }

  /* Privacy Policy & Terms */
  .bottom-legal a {
    color: #ffffff !important;
  }

  /* Optional: subtle hover */
  .footer-credit a:hover,
  .bottom-legal a:hover {
    opacity: 0.85;
    text-decoration: underline;
  }
}
/* ================= BOTTOM FOOTER — WHITE TEXT (ALL DEVICES) ================= */

/* Made with ❤️ by WebPrimeSite */
.footer-credit,
.footer-credit a {
  color: #ffffff !important;
}

/* Privacy Policy & Terms of Service */
.bottom-legal a {
  color: #ffffff !important;
}

/* Optional hover effect */
.footer-credit a:hover,
.bottom-legal a:hover {
  opacity: 0.85;
  text-decoration: underline;
}
/* ================= REMOVE UNDERLINE — BOTTOM FOOTER ================= */

.footer-credit a,
.bottom-legal a {
  text-decoration: none !important;
}

.footer-credit a:hover,
.bottom-legal a:hover {
  text-decoration: none !important;
  opacity: 0.85;
}




/* --- ABOUT HERO VARIANT --- */
.about-hero-variant {
    /* High-quality workspace/living room image */
    background: linear-gradient(rgba(10, 37, 64, 0.5), rgba(10, 37, 64, 0.5)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 450px; /* Slightly taller for more visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.rooms-hero-content .sub-heading {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #a89fff; /* Light purple accent */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.rooms-hero-content h1 {
    font-size: 4.5rem; /* Large, bold premium font */
    font-weight: 800;
    margin: 0;
    letter-spacing: -2px;
    line-height: 1;
}

.h-line {
    width: 60px;
    height: 4px;
    background: #5a4bff; /* Vynest Primary Purple */
    margin: 25px auto;
    border-radius: 2px;
}

.rooms-hero-content p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rooms-hero-content h1 {
        font-size: 3rem;
    }
    .about-hero-variant {
        height: 350px;
        padding: 0 20px;
    }
}

/* =====================================================
   MOBILE OPTIMIZATION — ABOUT HERO TEXT
   ===================================================== */
@media (max-width: 768px) {

  .about-hero {
    padding: 60px 16px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* Eyebrow text */
  .about-text .owner-eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  /* Main heading */
  .about-text h2 {
    font-size: 28px;          /* 👈 reduced from large */
    line-height: 1.2;
    margin-bottom: 14px;
  }

  /* Paragraph */
  .about-text p {
    font-size: 14px;          /* 👈 readable on mobile */
    line-height: 1.7;
    color: #475569;
    margin-bottom: 28px;
  }

  /* Stats row */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .stat-box {
    padding: 12px 8px;
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
  }

  .stat-number {
    font-size: 18px;
    font-weight: 800;
  }

  .stat-label {
    font-size: 11px;
    margin-top: 4px;
    color: #64748b;
  }

  /* Image spacing */
  .about-visual {
    margin-top: 10px;
  }

  .image-wrapper img {
    border-radius: 18px;
  }
}
/* =====================================================
   MOBILE OPTIMIZATION — PARTNERS SECTION
   ===================================================== */
@media (max-width: 768px) {

  .partners-section {
    padding: 40px 0;
  }

  .partners-banner {
    padding: 24px 16px;
    border-radius: 18px;
  }

  /* Grid layout for mobile */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 layout */
    gap: 16px;
  }

  .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* Logo box */
  .partner-logo-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  /* Partner name */
  .partner-item span {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
  }
}

/* =====================================================
   MOBILE OPTIMIZATION — ROOMS / ABOUT HERO
   ===================================================== */
@media (max-width: 768px) {

  .rooms-hero {
    padding: 70px 16px 60px;
    text-align: center;
  }

  .rooms-hero-content {
    max-width: 90%;
    margin: 0 auto;
  }

  /* Small eyebrow */
  .rooms-hero-content .sub-heading {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.9;
  }

  /* Main heading */
  .rooms-hero-content h1 {
    font-size: 32px;       /* 👈 reduced for mobile */
    line-height: 1.1;
    margin-bottom: 10px;
  }

  /* Divider line */
  .rooms-hero-content .h-line {
    width: 50px;
    height: 3px;
    margin: 12px auto;
  }

  /* Description text */
  .rooms-hero-content p {
    font-size: 14px;       /* 👈 readable, not bulky */
    line-height: 1.7;
    color: #e5e7eb;
    margin-top: 14px;
  }
} 

:root {
  --primary-teal: #0f766e;
  --accent-teal: #14b8a6;
  --text-gray: #475569;
}

/* MAIN LAYOUT */
.brand-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SECTION */
.top-section {
  padding: 0;
}

.brand-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748b;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 16px 0 50px;
}

.main-title span {
  color: var(--primary-teal);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sprout { background: #ecfdf5; }
.handshake { background: #eff6ff; }
.platform { background: #f5f3ff; }

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.quote-container {
  background: #f9fafb;
  border-left: 5px solid var(--accent-teal);
  padding: 20px 30px;
  font-style: italic;
  color: var(--text-gray);
  border-radius: 0 8px 8px 0;
}

/* RIGHT IMAGE PANEL */
.right-image {
  position: relative;
  height: 600px;
  border-radius: 32px;

  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 95, 70, 0.9),
    rgba(13, 148, 136, 0.75)
  );
}

/* GLASS CARD */
.glass-card {
  position: relative;
  z-index: 2;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;

  padding: 50px;
  width: 90%;
  max-width: 480px;

  text-align: center;
  color: white;

  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-icon {
  background: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: var(--primary-teal);
}

.glass-card h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 40px;
}

.grid-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.mini-badge,
.long-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #065f46;
  border-radius: 12px;
  font-weight: 700;
}

.mini-badge {
  padding: 12px;
  font-size: 0.9rem;
}

.long-badge {
  padding: 15px;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .brand-layout {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .right-image {
    height: 500px;
  }
}





.roadmap-card {
  text-align: center;
}

.roadmap-icon {
  font-size: 36px;
  background: #ffffff22;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.roadmap-card h3 {
  font-size: 22px;
  margin: 20px 0 6px;
}

.roadmap-card p {
  font-size: 14px;
  opacity: 0.9;
}

.roadmap-tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.roadmap-tags span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff22;
  font-size: 13px;
}

.roadmap-tags .wide {
  width: 100%;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .brand-container {
    grid-template-columns: 1fr;
  }

  .brand-left h2 {
    font-size: 32px;
  }

  .brand-right {
    padding: 35px;
  }
}
.how-it-works {
  padding: 80px 20px;
  background: #ffffff;
}

.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.how-header p {
  color: #64748b;
  margin-top: 8px;
}

/* STEPS */
.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.step {
  text-align: center;
  max-width: 140px;
}

.step h4 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
}

.step p {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* ICONS */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: auto;
  border: 2px solid currentColor;
}

.icon.green {
  color: #0f766e;
}

.icon.blue {
  color: #2563eb;
}

.icon.purple {
  color: #7c3aed;
}

/* CONNECTOR LINE */
.connector {
  width: 40px;
  height: 2px;
  background: #e5e7eb;
}

/* MOBILE */
@media (max-width: 900px) {
  .steps-wrapper {
    gap: 30px;
  }

  .connector {
    display: none;
  }

  .step {
    max-width: 100%;
  }
}
/* ===============================
   FORCE SINGLE LINE ON DESKTOP
   =============================== */
@media (min-width: 1024px) {

  .steps-wrapper {
    flex-wrap: nowrap;              /* ❗ prevents wrapping */
    justify-content: space-between; /* even spacing */
    gap: 0;
  }

  .step {
    max-width: 150px;
    flex: 0 0 auto;                 /* fixed width items */
  }

  .connector {
    display: block;
    width: 60px;                    /* longer line */
  }
}
@media (max-width: 900px) {
  .steps-wrapper {
    flex-wrap: wrap;
  }

  .connector {
    display: none;
  }
}
.advantage {
  padding: 90px 20px;
  background: #f8fafc;
}

.advantage-header {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.advantage-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
}

.advantage-header p {
  color: #64748b;
  margin-top: 6px;
}

.legend {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #475569;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dot.green { background: #22c55e; }
.dot.red { background: #ef4444; }

/* TABLE */
.advantage-table {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  padding: 18px 22px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.table-head {
  background: #f1f5f9;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  font-size: 12px;
}

.highlight {
  background: linear-gradient(90deg, #ecfeff, #f0fdfa);
  border-left: 4px solid #0ea5a4;
}

.provider {
  font-weight: 700;
}

.badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  border-radius: 6px;
}

.good {
  color: #047857;
  font-weight: 600;
}

.bad {
  color: #b91c1c;
  font-weight: 600;
}

.neutral {
  color: #92400e;
  font-weight: 600;
}

small {
  display: block;
  font-weight: 400;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 900px) {
  .table-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .table-head {
    display: none;
  }
}
/* ===============================
   MARKET PROBLEMS vs VYNEST SOLUTION
   COMPACT & CLEAN VERSION
   =============================== */

.problem-solution {
  max-width: 1400px;          /* controls width */
  margin: 0 auto;             /* centers section */
  padding: 50px 60px;         /* MORE side space */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  background: #f8fafc;
}

/* Columns */
.ps-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Section Titles */
.ps-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ps-title.danger {
  color: #991b1b;
}

.ps-title.success {
  color: #065f46;
}

/* Cards */
.ps-card {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  border-left: 4px solid;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.ps-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.ps-card p {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* Variants */
.ps-card.danger {
  border-color: #ef4444;
  background: #fff5f5;
}

.ps-card.success {
  border-color: #10b981;
  background: #f0fdf4;
}

/* Center Divider */
.ps-divider {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #94a3b8;
  font-weight: 700;
}

/* ===============================
   MOBILE RESPONSIVE
   =============================== */
@media (max-width: 900px) {
  .problem-solution {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .ps-divider {
    display: none;
  }
}
