/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0A0A0F;
  --white: #FFFFFF;
  --lime: #C8FF00;
  --lime-dark: #A8D900;
  --purple: #7C3AED;
  --gray-50: #F8F8FC;
  --gray-100: #F0F0F5;
  --gray-200: #E2E2EA;
  --gray-400: #9898A8;
  --gray-600: #5A5A6E;
  --gray-800: #2A2A3A;
  --text: #0A0A0F;
  --text2: #5A5A6E;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html { overflow-x: hidden; }

/* ===== ANNOUNCE BAR ===== */
.announce-bar {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announce-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.announce-link {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}
.announce-link:hover { text-decoration: underline; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--purple); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--black); }
.nav-right { display: flex; gap: 10px; align-items: center; }

.btn-ghost {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  background: transparent;
  color: var(--text2);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  transition: all .2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--black); color: var(--black); }

.btn-primary {
  padding: 8px 18px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  background: var(--black);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  transition: all .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gray-800); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 120px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  color: var(--text2);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
}
.badge-dot {
  display: none;
}
h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 22px;
}
h1 .accent {
  color: var(--purple);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-hero {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  background: var(--black);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  transition: all .2s;
  display: inline-block;
}
.btn-hero:hover { background: var(--gray-800); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-hero-outline {
  padding: 14px 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  transition: all .2s;
  display: inline-block;
}
.btn-hero-outline:hover { border-color: var(--black); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text2);
}
.avatars { display: flex; }
.avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -6px;
}
.avatars span:nth-child(2) { background: #0ea5e9; }
.avatars span:nth-child(3) { background: #22c55e; }
.avatars span:nth-child(4) { background: #f59e0b; }

/* ===== PHONE MOCKUP ===== */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup {
  width: 280px;
  background: #fff;
  border-radius: 36px;
  border: 2px solid var(--gray-200);
  padding: 18px 16px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  padding: 0 4px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 16px;
}
.phone-avatar {
  width: 36px; height: 36px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.phone-name { font-size: 13px; font-weight: 700; color: var(--black); }
.phone-sub { font-size: 10px; color: var(--text2); }
.phone-chat { display: flex; flex-direction: column; gap: 10px; }
.msg-in {}
.msg-out { display: flex; flex-direction: column; align-items: flex-end; }
.bubble-in {
  background: var(--gray-100);
  border-radius: 16px 16px 16px 4px;
  padding: 9px 13px;
  font-size: 12px;
  color: var(--text);
  display: inline-block;
  max-width: 85%;
}
.bubble-out {
  background: var(--black);
  border-radius: 16px 16px 4px 16px;
  padding: 9px 13px;
  font-size: 12px;
  color: #fff;
  display: inline-block;
  max-width: 85%;
  margin-bottom: 8px;
}
.link-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 90%;
}
.link-icon { font-size: 18px; }
.link-title { font-size: 11px; font-weight: 700; color: var(--black); }
.link-url { font-size: 10px; color: var(--text2); }
.msg-time { font-size: 10px; color: var(--gray-400); margin-top: 3px; }
.msg-time.right { text-align: right; }
.phone-tag {
  position: absolute;
  background: var(--black);
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.tag-top { right: -24px; top: 50px; }
.tag-bottom { left: -24px; bottom: 70px; background: #fff; color: var(--text); border: 1px solid var(--gray-200); }

/* ===== LOGOS ===== */
.logos-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 40px;
}
.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logos-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logos-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.logos-row span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 500px;
  line-height: 1.65;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: transparent;
  transition: background .25s;
}
.step-card:hover { border-color: var(--purple); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-card:hover::before { background: var(--purple); }
.step-card.step-featured {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.step-card.step-featured::before { background: var(--lime); }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-200);
  margin-bottom: 16px;
  line-height: 1;
}
.step-card.step-featured .step-num { color: rgba(255,255,255,0.15); }
.step-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card.step-featured h3 { color: #fff; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }
.step-card.step-featured p { color: rgba(255,255,255,0.6); }

/* ===== USE CASES ===== */
.usecases { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usecase-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
}
.usecase-card:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-2px); }
.usecase-card.uc-featured {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.uc-icon { font-size: 28px; margin-bottom: 14px; }
.usecase-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.usecase-card.uc-featured h3 { color: #fff; }
.usecase-card p { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 16px; }
.usecase-card.uc-featured p { color: rgba(255,255,255,0.75); }
.uc-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--text2);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.usecase-card.uc-featured .uc-tag { background: rgba(255,255,255,0.2); color: #fff; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.price-card.price-featured {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text2);
}
.price-card.price-featured .price-name { color: rgba(255,255,255,0.7); }
.price-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.price-card.price-featured .price-amount { color: #fff; }
.price-amount span { font-size: 18px; font-weight: 500; letter-spacing: 0; }
.price-desc { font-size: 13px; color: var(--text2); margin-bottom: 24px; }
.price-card.price-featured .price-desc { color: rgba(255,255,255,0.6); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-list li { font-size: 13px; color: var(--text2); }
.price-card.price-featured .price-list li { color: rgba(255,255,255,0.8); }
.price-list li:has(✗) { opacity: 0.4; }

.btn-price {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--lime);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: inherit;
  transition: all .2s;
}
.btn-price:hover { background: var(--lime-dark); transform: translateY(-1px); }

.btn-price-outline {
  display: block;
  width: 100%;
  padding: 13px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: inherit;
  transition: all .2s;
}
.btn-price-outline:hover { border-color: var(--black); }

/* ===== FAQ ===== */
.faq-section { background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-arrow {
  font-size: 18px;
  transition: transform .25s;
  flex-shrink: 0;
  color: var(--text2);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black);
  padding: 80px 40px;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.65;
}
.cta-section .btn-hero {
  background: var(--lime);
  color: var(--black);
}
.cta-section .btn-hero:hover { background: var(--lime-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; font-size: 20px; }
.footer-brand .logo span { color: var(--lime); }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-top: 10px;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: var(--black);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.auth-logo { color: #fff; font-size: 20px; text-decoration: none; }
.auth-logo span { color: var(--lime); }
.auth-left-content { padding: 20px 0; }
.auth-left h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.auth-left p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.auth-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.meta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 14px;
}
.meta-badge span { font-size: 12px; color: rgba(255,255,255,0.6); }
.meta-logo { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.trust-text { font-size: 12px; color: rgba(255,255,255,0.35); }

.auth-right {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.auth-form {
  width: 100%;
  max-width: 380px;
}
.auth-brand-pill {
  display: inline-block;
  background: var(--gray-100);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.auth-form h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.auth-form .sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.5;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: all .2s;
  margin-bottom: 20px;
}
.btn-google:hover { background: var(--gray-800); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.google-icon {
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #4285F4;
}
.auth-footer-links {
  text-align: center;
  margin-top: 24px;
}
.auth-footer-links a {
  font-size: 12px;
  color: var(--text2);
  text-decoration: none;
  margin: 0 8px;
}
.auth-footer-links a:hover { color: var(--black); }

/* ===== CONNECT PAGE ===== */
.connect-page {
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.connect-logo-wrap {
  margin-bottom: 40px;
}
.connect-box {
  width: 100%;
  max-width: 480px;
}
.connect-box h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.2;
}
.connect-box p {
  font-size: 14px;
  color: var(--text2);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.6;
}
.connect-box p a { color: var(--purple); text-decoration: none; }

.input-wrap {
  position: relative;
  margin-bottom: 14px;
}
.input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 600;
}
.ig-input {
  width: 100%;
  padding: 14px 14px 14px 34px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  color: var(--black);
}
.ig-input:focus { border-color: var(--lime); }
.ig-input.found { border-color: #22c55e; }

.account-found-card {
  background: rgba(34,197,94,0.06);
  border: 1.5px solid #22c55e;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s;
}
.account-found-card.show { opacity: 1; transform: translateY(0); }
.found-icon { color: #22c55e; font-size: 16px; }
.found-avatar {
  width: 40px; height: 40px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.found-name { font-size: 14px; font-weight: 700; color: var(--black); }
.found-stats { font-size: 12px; color: var(--text2); }
.found-label { font-size: 12px; font-weight: 700; color: #22c55e; margin-left: auto; }

.btn-connect {
  width: 100%;
  padding: 15px;
  background: var(--lime);
  color: var(--black);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.btn-connect:hover { background: var(--lime-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-connect:disabled { opacity: 0.5; cursor: not-allowed; }

.connect-footer-meta {
  margin-top: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.meta-provider {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text2);
}
.connect-footer-links { display: flex; gap: 12px; margin-top: 12px; }
.connect-footer-links a { font-size: 11px; color: var(--text2); text-decoration: none; }
.connect-footer-links a:hover { color: var(--black); }

/* ===== ONBOARDING ===== */
.onboard-page {
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.onboard-box {
  width: 100%;
  max-width: 560px;
}
.onboard-box h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.8px;
  margin-bottom: 6px;
  text-align: center;
}
.onboard-box .sub {
  font-size: 14px;
  color: var(--text2);
  text-align: center;
  margin-bottom: 40px;
}

.onboard-q { margin-bottom: 32px; }
.onboard-q-num { font-size: 13px; font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.onboard-q-text { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.onboard-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.onboard-option {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.onboard-option:hover { border-color: var(--purple); color: var(--purple); }
.onboard-option.selected { border-color: var(--purple); background: rgba(124,58,237,0.07); color: var(--purple); }

.country-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  background: #fff;
}
.country-select:focus { border-color: var(--purple); }

.btn-onboard {
  width: 100%;
  padding: 14px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  margin-top: 12px;
}
.btn-onboard:hover { background: var(--gray-800); transform: translateY(-1px); }

/* ===== DASHBOARD ===== */
.dashboard {
  display: flex;
  min-height: 100vh;
  background: var(--gray-50);
}
.sidebar {
  width: 240px;
  min-width: 240px;
  background: #fff;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 22px 20px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-logo a { font-size: 20px; }

.sidebar-workspace {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ws-avatar {
  width: 32px; height: 32px;
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.ws-name { font-size: 13px; font-weight: 700; color: var(--black); }
.ws-plan { font-size: 11px; color: var(--text2); }

.sidebar-new-btn {
  margin: 14px 16px;
  width: calc(100% - 32px);
  padding: 10px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .2s;
}
.sidebar-new-btn:hover { background: var(--gray-800); }

.sidebar-nav {
  padding: 8px 10px;
  flex: 1;
}
.sidebar-nav a, .sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.sidebar-nav a:hover, .sidebar-nav-item:hover { background: var(--gray-50); color: var(--black); }
.sidebar-nav a.active { background: var(--gray-100); color: var(--black); font-weight: 600; }
.sidebar-nav-icon { font-size: 16px; width: 20px; text-align: center; }
.sidebar-sub {
  padding-left: 36px;
  display: none;
}
.sidebar-sub.open { display: block; }
.sidebar-sub a {
  font-size: 12px;
  padding: 6px 12px;
}

.sidebar-bottom {
  padding: 14px 16px;
  border-top: 1px solid var(--gray-100);
}
.sidebar-stat { margin-bottom: 10px; }
.stat-label { font-size: 11px; color: var(--text2); margin-bottom: 4px; display: flex; justify-content: space-between; }
.stat-label span { font-weight: 600; color: var(--black); }
.stat-bar { height: 4px; background: var(--gray-200); border-radius: 2px; }
.stat-fill { height: 4px; background: var(--lime); border-radius: 2px; }
.btn-upgrade {
  width: 100%;
  padding: 10px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .2s;
}
.btn-upgrade:hover { background: var(--gray-800); }

/* ===== DASHBOARD MAIN ===== */
.dash-main {
  flex: 1;
  overflow-y: auto;
}

.dash-topbar {
  background: var(--lime);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-topbar-text { font-size: 13px; font-weight: 600; color: var(--black); }
.btn-topbar-trial {
  padding: 7px 16px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}
.dash-topbar-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--black);
  opacity: 0.6;
}

.dash-content { padding: 32px; }

.dash-welcome-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.dash-welcome-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  max-width: 760px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gray-100);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-title-small { font-size: 14px; color: var(--text2); margin-bottom: 6px; }
.modal-username { background: var(--lime); padding: 2px 10px; border-radius: 6px; font-weight: 700; color: var(--black); }
.modal-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.8px;
  margin-bottom: 28px;
}
.modal-templates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.modal-template {
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: all .2s;
}
.modal-template:hover { border-color: var(--black); }
.modal-template.featured { border-color: var(--black); border-width: 2px; }
.modal-template-badge {
  background: var(--black);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}
.modal-template h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.modal-template p { font-size: 12px; color: var(--text2); margin-bottom: 14px; line-height: 1.5; }
.modal-chat {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mc-in {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.mc-av {
  width: 22px; height: 22px;
  background: var(--gray-200);
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  flex-shrink: 0;
}
.mc-bubble-in {
  background: var(--gray-200);
  border-radius: 10px 10px 10px 3px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--black);
}
.mc-bubble-out {
  margin-left: auto;
  background: var(--black);
  color: #fff;
  border-radius: 10px 10px 3px 10px;
  padding: 6px 10px;
  font-size: 11px;
  max-width: 80%;
}
.mc-btn {
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 80%;
}
.btn-start-template {
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 12px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all .2s;
}
.btn-start-template:hover { background: var(--gray-800); }
.modal-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: var(--text2);
}
.modal-features span { display: flex; align-items: center; gap: 5px; }

/* ===== CONNECTING PAGE ===== */
.connecting-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.step-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
}
.prog-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text2);
}
.prog-step.done { color: var(--black); font-weight: 600; }
.prog-step.active { color: var(--black); }
.prog-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  flex-shrink: 0;
}
.prog-dot.done { background: var(--lime); border-color: var(--lime); color: var(--black); }
.prog-line { width: 80px; height: 1px; background: var(--gray-200); }
.connecting-spinner {
  width: 64px; height: 64px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: spinPulse 1s linear infinite;
}
@keyframes spinPulse {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spinner-inner {
  width: 44px; height: 44px;
  border: 4px solid rgba(0,0,0,0.15);
  border-top-color: var(--black);
  border-radius: 50%;
}
.connecting-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.connecting-sub { font-size: 15px; color: var(--text2); }

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-card-label { font-size: 12px; color: var(--text2); margin-bottom: 8px; }
.stat-card-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
}
.stat-card-change { font-size: 12px; color: #22c55e; margin-top: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; min-height: auto; }
  .hero-visual { display: none; }
  h1 { font-size: 42px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .steps-grid, .usecases-grid, .pricing-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .sidebar { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ===== TABLET (901px – 1140px): hero visible but tighter ===== */
@media (min-width: 901px) and (max-width: 1140px) {
  .nav-inner { padding: 0 24px; }
  .hero { padding: 60px 24px; gap: 32px; }
  h1 { font-size: 48px; }
  .phone-mockup { width: 240px; }
  .tag-top { right: -8px; font-size: 10px; padding: 4px 8px; }
  .tag-bottom { left: -8px; font-size: 10px; padding: 4px 8px; }
  .section { padding: 60px 24px; }
  .steps-grid { gap: 14px; }
  .usecases-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pricing-grid { gap: 14px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
}

/* ===== CONNECT PAGE STEP BAR ===== */
.connect-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.cs-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
}
.cs-step.done { color: var(--black); font-weight: 700; }
.cs-step.active { color: var(--black); font-weight: 700; }
.cs-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-dot-active {
  background: var(--black) !important;
  color: #fff !important;
}
.cs-dot-inactive {
  background: var(--gray-200) !important;
  color: var(--text2) !important;
}
.cs-line { width: 40px; height: 2px; background: var(--gray-200); border-radius: 2px; }
.cs-line.done { background: var(--lime); }

/* Connect user pill */
.connect-user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

/* ===== UC-ICON SVG UPGRADE ===== */
.uc-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--purple);
  transition: all .2s;
}
.uc-icon svg {
  width: 22px;
  height: 22px;
}
.uc-featured .uc-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.usecase-card:hover .uc-icon {
  background: var(--purple);
  color: #fff;
}
.uc-featured:hover .uc-icon {
  background: rgba(255,255,255,0.3);
}

/* ===== MADE IN INDIA TAG ===== */
.made-in-india {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  transition: all .2s;
  cursor: default;
}
.made-in-india:hover {
  background: rgba(255,153,51,0.1);
  border-color: rgba(255,153,51,0.55);
}
.made-in-india .india-name {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.india-flag { font-size: 14px; }

/* ===== RUPEE PRICE FIX ===== */
.price-amount {
  font-size: 42px;
}


/* logo icon size fix */
.logo-icon { width: 22px; height: 22px; vertical-align: middle; }
.logo { display: inline-flex; align-items: center; gap: 7px; }
.footer-logo { display: inline-flex; align-items: center; gap: 7px; }

/* ===== MOBILE RESPONSIVE — FULL OVERHAUL ===== */

/* Hide mobile-only elements on desktop */
.nav-hamburger { display: none; }
.nav-mobile-drawer {
  position: fixed;
  top: 0; right: -100%; bottom: 0;
  width: 80%; max-width: 300px;
  background: #fff; z-index: 1001;
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto; transition: right .3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.nav-mobile-drawer.open { right: 0; }
.mob-overlay { display: none; }
.dash-mobile-topbar { display: none; }
.sidebar-overlay { display: none; }

/* NAV mobile */
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; height: 56px; }
  .nav-links { display: none; }
  .nav-right .btn-ghost { display: none; }
  .btn-primary { padding: 9px 16px; font-size: 13px; }

  /* Hamburger — inject via JS */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 8px;
  }
  .nav-hamburger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all .3s; display: block; }

  /* Mobile nav drawer — slides in from right */
  .nav-mobile-drawer {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 80%;
    max-width: 300px;
    background: #fff;
    z-index: 1001;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transition: right .3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  }
  .nav-mobile-drawer.open { right: 0; }
  .nav-mobile-drawer a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    border-radius: 10px;
    transition: background .15s;
  }
  .nav-mobile-drawer a:hover { background: var(--gray-50); }
  .nav-mobile-drawer .mob-divider { height: 1px; background: var(--gray-200); margin: 8px 0; }
  .nav-mobile-drawer .mob-cta {
    display: block;
    margin-top: 12px;
    padding: 14px;
    background: var(--black);
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
  }
  .mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
  }
  .mob-overlay.show { display: block; }

  /* Announce bar */
  .announce-bar { font-size: 12px; padding: 8px 16px; flex-wrap: wrap; gap: 4px; text-align: center; justify-content: center; }

  /* HERO */
  .hero { padding: 40px 20px 48px; min-height: auto; gap: 0; }
  .hero-content { text-align: center; }
  h1 { font-size: 34px; line-height: 1.15; }
  .hero-sub { font-size: 15px; margin-left: auto; margin-right: auto; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
  .btn-hero, .btn-hero-outline { width: 100%; max-width: 360px; justify-content: center; text-align: center; padding: 15px 20px; font-size: 15px; }
  .hero-trust { justify-content: center; }
  .hero-badge { display: inline-flex; }
  .hero-visual { display: none; }

  /* LOGOS */
  .logos-strip { padding: 16px; }
  .logos-row { gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 13px; }

  /* SECTIONS */
  .section { padding: 48px 20px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; }

  /* STEPS / USE CASES / PRICING grids */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .usecases-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-list { gap: 8px; }

  /* STATS */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 16px; }
  .stat-card-val { font-size: 28px; }

  /* CTA SECTION */
  .cta-section { padding: 48px 20px; }
  .cta-inner h2 { font-size: 26px; }

  /* FOOTER */
  .footer { padding: 40px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
  .footer-links { gap: 16px; }
  .made-in-india { align-self: center; }

  /* CONNECT PAGE */
  .connect-page { padding: 20px 16px 40px; }
  .connect-box { padding: 24px 18px; }
  .connect-box h1 { font-size: 22px; }

  /* PLATFORM SELECT */
  .ps-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ps-card { padding: 18px 14px; }
  .ps-card-icon { font-size: 30px; }
  .ps-card-name { font-size: 14px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .section-title { font-size: 22px; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 20px; }
  .ps-grid { grid-template-columns: 1fr; }
  .pricing-toggle { flex-wrap: wrap; justify-content: center; }
  .faq-q { font-size: 14px; }
}

