
    :root {
      --pri: rgb(22, 124, 128)
      --sec: #355969;
      --bg: #f6fbfa;
      --txt: #1a2530;
      --muted: #ffffff;
      --card: #fff;
      --radius: 22px;
      --shadow: 0 6px 32px rgba(0,0,0,0.11);
      --maxw: 1200px;
    }

    
    * { box-sizing: border-box; margin:0; padding:0;}
    body {
      font-family: 'Inter',sans-serif;
      background: var(--bg);
      color: var(--txt);
      min-width: 100vw; min-height: 100vh;
      width: 100vw; overflow-x: hidden;
    }
    a { color: var(--pri); text-decoration: none;}
    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px;}

    header {
      background: var(--card);
      box-shadow: var(--shadow);
      padding: 10px 0 10px 0;
      position: sticky; top:0;
         
    }

    .nav {
      display: flex; justify-content: space-between; align-items: center;
      max-width: var(--maxw); margin: 0 auto;
    }


    .logo {
      font-size: 1.625rem; font-weight: 500; letter-spacing: 0.07rem;
      color: var(--pri);
      margin-left: 6px;
    }
    .nav-btns {
      display: flex; gap: 22px;
    }
  
    /* === Premium Header Buttons === */

.nav-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Base */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px; /* pill */
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

/* Login – subtle */
.btn-login {
  background: transparent;
  color: #0f172a;
  border: 1.5px solid rgba(15, 23, 42, 0.18);
}


.btn-login:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.4);
}

/* Primary CTA – Demo */
.btn-primary {
  background: linear-gradient(180deg, #0f766e, #0d6b63);
  color: #ffffff;
  padding: 9px 22px;
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.32);
}




/* === Why QweeClin (Premium) === */
/* === Why QweeClin (Clean & Premium) === */

.why-qweeclin {
  padding: 32px 0 28px;   /* reduced height */
  background: #f6fbfa;
}

.why-title {
  text-align: center;
  font-size: 1.32rem;
  font-weight: 600;
  color: #313131;
  letter-spacing: 0.04rem;
  margin-bottom: 60px;
}

/* =========================================
   WHY TITLE – SOFT FADE IN
========================================= */

.why-title {
  opacity: 0;
  transform: translateY(8px);
  animation: whyFadeIn 1.4s ease-out forwards;
  animation-delay: 0.75s;   /* gentle pause */
}

@keyframes whyFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.why-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.why-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f766e;
  white-space: nowrap;        /* 🔥 FORCE ONE LINE */
}



/* ===============================
   MODULES — FINAL PREMIUM AUTO
   (STABLE & SMOOTH)
================================ */

.modules-unified {
  padding: 90px 0 110px;
  background: radial-gradient(
    circle at 50% 0%,
    #f6fbfa 0%,
    #eefaf8 100%
  );
  overflow: hidden;
}

.modules-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 44px;
  color: #0f172a;
}

/* Spotlight container */
.module-spotlight {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   MODULE CARD (BASE)
================================ */

.module-card {
  position: absolute;
  width: 680px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;

  /* IMPORTANT: stable base shadow */
  box-shadow:
    0 18px 48px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.85);

  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.94);

  transition:
    opacity 0.6s ease,
    transform 0.85s cubic-bezier(.22,1,.36,1),
    box-shadow 0.6s ease;

  pointer-events: none;

  /* GPU hint — CRITICAL */
  will-change: transform, opacity;
}

/* ===============================
   ACTIVE CARD (SINGLE SOURCE)
================================ */

.module-card.active {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  pointer-events: auto;
  z-index: 2;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.16),
    0 8px 22px rgba(0,0,0,0.08);
}

/* ===============================
   IMAGE — CLEAN & LARGE
================================ */

.module-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 18px;
  background: #f8fafc;
}

/* ===============================
   MODULE LABEL
================================ */

.module-card span {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.2px;
}




    /* PLANS */
    .plans-sec {
      margin: 55px 0 22px 0;
      text-align: center;
    }
    .plan-cards {
      display: flex; gap: 44px; justify-content: center; flex-wrap: wrap; margin-top: 19px;
    }
    .plan-card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 38px 31px;
      width: 315px;
      min-width: 0;
      text-align: left;
      margin-bottom: 12px;
    }
    .plan-title { font-weight: 900; font-size: 1.37rem; color: var(--pri);}
    .plan-price { font-size: 1.6rem; font-weight: 900; color: var(--sec); margin: 8px 0;}
    .plan-desc { color: var(--muted); font-size: 1.19rem; min-height: 48px; }
   



/* === Premium Plan Includes Section === */
/* ================================
   PLAN INCLUDES — PREMIUM EDITORIAL
================================ */

.plan-includes {
  margin: 72px auto 56px;
  padding: 56px 24px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(15, 118, 110, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, #f0d4f746 0%, #f9e6ff41 0%);
}

/* Inner wrapper */
.plan-includes-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Section heading */
.plan-includes-title {
  text-align: center;
  font-size: 1.55rem;
  font-weight: 500;
  color: #703c7a;
  letter-spacing: 0.03rem;
  margin-bottom: 44px;
}


/* Item wrapper */
.include-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-left: 6px;
}

/* Soft separator */
.include-item + .include-item {
  border-top: 1px dashed rgba(15, 118, 110, 0.12);
  padding-top: 22px;
}

/* Premium dot */
.include-dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
  flex-shrink: 0;
}

/* Title */
.include-item h4,
.include-item strong {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.2px;
}

/* Description */
.include-item p {
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
  max-width: 600px;
}



    



#founder {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 16px;
}
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.founder-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}
.founder-info {
  flex: 1;
}


/* Show popup only when active */
.feature-popup {
  display: none;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #333;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.module-modern-card.active .feature-popup {
  display: block;
}





/* Contact Section */
#contact {
  max-width: 500px;
  margin: 40px auto;
  padding: 0 12px;
}

.contact-wrapper {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 22px 18px;
  text-align: center;
}

.contact-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 45%;
  min-width: 120px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.2s, transform 0.2s;
}

.contact-card:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.contact-card span {
  margin-top: 4px;
  font-size: 0.9rem;
}



.window-buttons {
  position: absolute;
  top: 8px;
  left: 14px;
  display: flex;
  gap: 7px;
}
.window-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.window-buttons .red { background: #ef4444; }
.window-buttons .yellow { background: #facc15; }
.window-buttons .green { background: #22c55e; }



/* Footer */
footer {
  background: #0f172a;        /* dark background for contrast */
  color: #f9fafb;             /* light text */
  text-align: center;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 18px 10px;
  margin-top: 40px;
  border-top: 2px solid #616161; /* accent line */
}

footer span {
  color: #36a1e3;
  font-weight: 600;
}



@keyframes cursor-move {
  0%, 10%   { top: 120px; left: 160px; }
  20%, 30%  { top: 120px; left: 360px; }
  40%, 50%  { top: 120px; left: 560px; }
  60%, 70%  { top: 240px; left: 160px; }
  80%, 90%  { top: 240px; left: 360px; }
  100%      { top: 120px; left: 160px; }
}

/* === Fine-tuned plan feature spacing and color === */
.plan-card ul li:first-child {
  margin-bottom: 10px;          /* extra gap between OP limit and device limit */
  color: #0f766e;               /* deep teal, strong emphasis */
  font-weight: 600;
}

.plan-card ul li:nth-child(2) {
  color: #83868d;               /* softer blue for contrast */
  font-weight: 400;
  margin-top: 3px;
  font-size: 13.5px;
  letter-spacing: 0.1px;
}

/* optional hover polish */
.plan-card:hover ul li:nth-child(2) {
  color: #b16b03;               /* subtle shift on hover */
  transition: color 0.3s ease;
}

.plan-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.plan-card {
  background: linear-gradient(135deg, #f8fafc 60%, #e6f1f6 100%);
  border: 1.5px solid #c6e0ea;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(15, 118, 110, 0.09), 0 1.5px 8px rgba(60,72,88,0.10);
  padding: 42px 34px 36px 34px;
  width: 310px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform .18s cubic-bezier(.4,2,.6,1), box-shadow .18s;
  overflow: hidden;
}
.plan-card:hover {
  transform: scale(1.035) translateY(-4px);
  box-shadow: 0 14px 42px rgba(15, 118, 110, 0.13), 0 3px 18px rgba(60,72,88,0.12);
  border-color: #10bfa5;
}
.plan-card .plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(90deg,#0f766e 60%,#10bfa5 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 12px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.13);
}
.plan-card .plan-title {
  font-weight: 900;
  font-size: 1.21rem;
  color: #0f766e;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.plan-card .plan-price {
  font-size: 1.65rem;
  font-weight: 900;
  color: #0f172a;
  margin: 10px 0 8px 0;
  letter-spacing: -1px;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.plan-card ul li {
  color: #0f766e;
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 1.04rem;
}
.plan-card .plan-desc {
  color: #5d7288;
  font-size: 1.03rem;
  font-weight: 500;
  margin-bottom: 0;
}



/* ================================
   FOUNDER — MODERN & EDITORIAL
================================ */

.founder-section {
  margin: 96px auto 80px;
  padding: 0 20px;
}

.founder-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Portrait */
.founder-portrait img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 5 / 7;        /* square */
  object-fit: cover;          /* crop */
  object-position: center top;/* 👈 important */
  border-radius: 20px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  background: #fff;
}


/* Content */
.founder-content {
  max-width: 600px;
}

.founder-name {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  color: #af8600;
  margin-bottom: 6px;
}

.founder-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f766e;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

/* Lead paragraph */
.founder-lead {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: #0f172a;
  margin-bottom: 20px;
}

/* Body text */
.founder-content p {
  font-size: 0.98rem;
  line-height: 2;
  color: #475569;
  margin-bottom: 18px;
}

/* Highlight */
.founder-content .highlight {
  color: #0f766e;
  font-weight: 500;
}

/* Signature */
.founder-sign {
  margin-top: 28px;
  font-size: 0.95rem;
  font-style: italic;
  color: #334155;
}




/* HERO CLINIC TRANSITION */
.hero-clinic-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.hero-clinic {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* lights OFF */
.hero-clinic-off {
  position: relative;
  z-index: 1;
  
}

/* lights ON */
.hero-clinic-on {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 1.8s ease,
    transform 2.2s ease;
}



.hero {
  background: linear-gradient(
    180deg,
    #bcc8f0 0%,
    #ffffff 45%,
    #ffffff 100%
  );
}

.hero {
  padding-top: 48px;
}




/* Common wrapper alignment */
.assistant-wrap,
.sms-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Shared heading alignment */
.assistant-heading,
.sms-heading {
  margin-bottom: 50px;
}
.assistant-heading h2,
.sms-heading h2 {
  font-size: 1.5rem;
  font-weight: 550;
  margin-bottom: 8px;
}
.assistant-heading p,
.sms-heading p {
  font-size: 1.05rem;
  color: #334155;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Distinct color themes */
.assistant-heading h2 { color: #3b7909; }
.sms-heading h2 { color: #913410; }

/* Assistant section */
.assistant-showcase {
  background: linear-gradient(180deg, #f6fbfa 0%, #ecf9f7 100%);
  padding: 80px 0 60px 0;
}
.assistant-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.assistant-mascot {
  position: relative;
  animation: floatMascot 4s ease-in-out infinite alternate;
}
@keyframes floatMascot {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}
.assistant-wave {
  position: absolute;
  bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 1.5px;
  background: radial-gradient(circle,#7c7c7c 0%,transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{opacity:.4;transform:translateX(-50%) scale(1);}
  50%{opacity:.9;transform:translateX(-50%) scale(1.3);}
}
.assistant-chat {
  background: #fff;
  border: 1.5px solid #dbe9e7;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  min-width: 260px;
  max-width: 320px;
}
/* === Smart SMS (Final Polished) === */
/* ================================
   SMART SMS — ALIGNED & PREMIUM
================================ */

.sms-section {
  background: linear-gradient(180deg, #f6fbfa 0%, #eefaf8 100%);
  padding: 72px 0 64px;
}

/* Centered wrapper */
.sms-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;     /* 🔥 stack */
  align-items: center;
  text-align: left;
}

/* Heading block (matches others) */
.sms-heading {
  margin-bottom: 44px;
 
}

.sms-heading h2 {
  font-size: 1.5rem;
  font-weight: 550;
  color: #913410;
  margin-bottom: 8px;
   text-align: center;
   
}

.sms-heading p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
    text-align: center;
}

/* Phone / messages */
.sms-phone {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Message stack */
.sms-screen {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
}


/* Stagger */
.sms-bubble:nth-child(1){animation-delay:0.2s;}
.sms-bubble:nth-child(2){animation-delay:0.9s;}
.sms-bubble:nth-child(3){animation-delay:1.6s;}
.sms-bubble:nth-child(4){animation-delay:2.3s;}
.sms-bubble:nth-child(5){animation-delay:3.0s;}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ================================
   ANDROID PHONE MOCK
================================ */

.android-phone {
  width: 270px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.18),
    0 0 0 8px #0f172a;
  overflow: hidden;
}

/* Status bar */
.android-status {
  height: 26px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.72rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  letter-spacing: 0.3px;
}

/* App header */
.android-header {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 0;
  color: #0f172a;
}

/* SMS area */
.sms-screen {
  padding: 14px 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9fafb;
}

.sms-bubble {
  background: #10bfa5;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.85rem;
  line-height: 1.45;
  border-radius: 16px;
  max-width: 98%;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);

  /* animation setup */
  opacity: 0;
  transform: translateY(20px);
}

/* darker alternate */
.sms-bubble:nth-child(even) {
  background: #0f766e;
}


.sms-section.play .sms-bubble {
  animation: slideUp 0.6s ease forwards;
}

/* stagger */
.sms-section.play .sms-bubble:nth-child(1){animation-delay:0.2s;}
.sms-section.play .sms-bubble:nth-child(2){animation-delay:0.9s;}
.sms-section.play .sms-bubble:nth-child(3){animation-delay:1.6s;}
.sms-section.play .sms-bubble:nth-child(4){animation-delay:2.3s;}
.sms-section.play .sms-bubble:nth-child(5){animation-delay:3.0s;}



.save-banner {
  display: none;
  margin: 0 auto 20px auto;
  padding: 8px 18px;
  background: linear-gradient(
    180deg,
    #ecfdfb 0%,
    #f0fdfa 100%
  );
  color: #0f766e;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(15, 118, 110, 0.25);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.12);
}



/* ===============================
   MODULE DOTS — AUTO INDICATOR
================================ */

.module-dots {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.module-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1; /* slate-300 */
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* active dot */
.module-dots .dot.active {
  background: #0f766e;
  opacity: 1;
  transform: scale(1.35);
  box-shadow: 0 0 0 4px rgba(15,118,110,0.18);
}

.module-card {
  backface-visibility: hidden;
}


/* Assistant bubble animation */
.assistant-chat .bubble {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.assistant-chat .bubble.hide {
  opacity: 0;
  transform: translateY(6px);
}

.assistant-chat .bubble.show {
  opacity: 1;
  transform: translateY(0);
}


/* Overlay */
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Card */
.coming-soon-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 32px 30px 28px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.18);
  animation: comingFadeUp 0.45s ease;
}

/* Logo */
.coming-soon-logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: #0f766e;
}

/* Heading */
.coming-soon-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #020617;
  margin-bottom: 10px;
}

/* Text */
.coming-soon-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  margin-bottom: 22px;
}

/* Button */
.coming-soon-btn {
  border: none;
  background: #0f766e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.coming-soon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.35);
}

/* Animation */
@keyframes comingFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   SIMPLICITY — FINAL CLEAN
================================ */

.simplicity {
  padding: 80px 0;
  background: #f6fbfa;
}

.simplicity-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

/* Text */
.simplicity-text h2 {
  font-size: 1.55rem;
  font-weight: 600;
  color: #5d8bf5;
  margin-bottom: 10px;
}

.simplicity-text p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 480px;
}

/* Image */
.simplicity-image {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  opacity: 0.9;
}

