/* ============================================================
   HINJAWADI CONNECT — Design System
   ============================================================ */

:root{
  --purple-primary:#7567F4;
  --purple-deep:#6254E8;
  --lavender-light:#EEEAFE;
  --purple-pale:#F5F2FF;
  --pink-soft:#EC5CD4;
  --pink-highlight:#F56EDC;
  --text-main:#171728;
  --text-secondary:#747487;
  --border-soft:#ECEBF4;
  --white:#FFFFFF;

  --grad-primary: linear-gradient(135deg,#7567F4 0%,#7163EE 55%,#8F75F5 100%);
  --grad-cta: linear-gradient(90deg,#E85DDB 0%,#B55CF2 100%);
  --grad-mesh: radial-gradient(circle at 35% 45%, rgba(229,93,221,0.13), transparent 35%),
               radial-gradient(circle at 70% 50%, rgba(115,103,244,0.12), transparent 38%);

  --shadow-card: 0 18px 50px rgba(70,55,160,0.08);
  --shadow-float: 0 20px 60px rgba(88,73,190,0.10);
  --shadow-lift: 0 26px 70px rgba(70,55,160,0.16);

  --radius-sm:14px;
  --radius-md:20px;
  --radius-lg:28px;
  --radius-xl:48px;

  --container-max:1360px;
  --pad-desktop:96px;
  --pad-tablet:40px;
  --pad-mobile:22px;

  --ease: cubic-bezier(.22,.9,.32,1);
}

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Poppins','Noto Sans Devanagari',sans-serif;
  color:var(--text-main);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

body.is-mr{ font-family:'Poppins','Noto Sans Devanagari',sans-serif; }

h1,h2,h3,h4{
  font-family:'Poppins','Noto Sans Devanagari',sans-serif;
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.08;
  color:var(--text-main);
}
body.is-mr h1, body.is-mr h2, body.is-mr h3, body.is-mr h4{
  font-family:'Poppins','Noto Sans Devanagari',sans-serif;
  letter-spacing:0;
  line-height:1.25;
}

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
img,svg{ display:block; max-width:100%; }
button{ font:inherit; cursor:pointer; border:none; background:none; }
input{ font:inherit; }

.container{
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 var(--pad-desktop);
}
@media (max-width:1200px){ .container{ padding:0 var(--pad-tablet); } }
@media (max-width:640px){ .container{ padding:0 var(--pad-mobile); } }

section{ position:relative; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--purple-deep);
  background:var(--purple-pale);
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(117,103,244,0.15);
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--pink-soft); }

.accent{
  background:linear-gradient(90deg,var(--purple-primary),var(--pink-soft));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------- Language toggle visibility ---------- */
main .lang-en, main .lang-mr,
header .lang-en, header .lang-mr,
footer .lang-en, footer .lang-mr,
.mobile-menu .lang-en, .mobile-menu .lang-mr{ display:none !important; }
body.is-en main .lang-en, body.is-en header .lang-en, body.is-en footer .lang-en, body.is-en .mobile-menu .lang-en{ display:revert !important; }
body.is-mr main .lang-mr, body.is-mr header .lang-mr, body.is-mr footer .lang-mr, body.is-mr .mobile-menu .lang-mr{ display:revert !important; }
body.is-en .lang-en.iflex, body.is-mr .lang-mr.iflex{ display:inline-flex !important; }
body.is-en .lang-en.flex, body.is-mr .lang-mr.flex{ display:flex !important; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:54px; padding:0 28px;
  border-radius:999px;
  font-weight:700; font-size:15.5px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--grad-cta);
  color:var(--white);
  box-shadow:0 16px 34px rgba(213,80,220,0.32);
}
.btn-primary:hover{ transform:translateY(-2px) scale(1.015); box-shadow:0 20px 44px rgba(213,80,220,0.42); filter:brightness(1.04); }
.btn-secondary{
  background:var(--white);
  color:var(--text-main);
  border:1.5px solid var(--border-soft);
}
.btn-secondary:hover{ background:var(--purple-pale); border-color:rgba(117,103,244,0.3); transform:translateY(-2px); }
.btn-ghost{
  color:var(--purple-deep);
  font-weight:700;
  display:inline-flex; align-items:center; gap:6px;
}
.btn-ghost svg{ transition:transform .25s var(--ease); }
.btn-ghost:hover svg{ transform:translateX(4px); }
.btn-sm{ height:44px; padding:0 20px; font-size:14px; }

/* ---------- Nav ---------- */
.navbar{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-soft);
  transition:height .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar.scrolled{ box-shadow:0 8px 30px rgba(70,55,160,0.06); }
.nav-inner{
  max-width:var(--container-max); margin:0 auto;
  padding:0 var(--pad-desktop);
  height:80px;
  display:flex; align-items:center; justify-content:space-between;
  transition:height .3s var(--ease);
}
.navbar.scrolled .nav-inner{ height:66px; }
@media (max-width:1200px){ .nav-inner{ padding:0 var(--pad-tablet); } }
@media (max-width:640px){ .nav-inner{ padding:0 var(--pad-mobile); } }

.brand{ display:flex; align-items:center; gap:10px; font-family:'Poppins',sans-serif; font-weight:800; font-size:18px; letter-spacing:-0.01em; }
.brand-mark{ width:38px; height:38px; flex-shrink:0; }
.brand-name{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name small{ font-size:10.5px; font-weight:600; color:var(--text-secondary); letter-spacing:0.02em; }

.nav-links{ display:flex; align-items:center; gap:8px; }
.nav-links a{
  position:relative; padding:10px 16px; font-size:14.5px; font-weight:600; color:var(--text-main);
  transition:color .25s var(--ease);
}
.nav-links a::after{
  content:''; position:absolute; left:16px; right:16px; bottom:6px; height:2px;
  background:var(--grad-cta); border-radius:2px;
  transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease);
}
.nav-links a:hover{ color:var(--purple-deep); }
.nav-links a:hover::after{ transform:scaleX(1); }

.nav-right{ display:flex; align-items:center; gap:14px; }
.lang-switch{
  display:flex; align-items:center; background:var(--purple-pale); border-radius:999px; padding:4px; gap:2px;
  border:1px solid var(--border-soft);
}
.lang-switch button{
  padding:7px 14px; border-radius:999px; font-size:13px; font-weight:700; color:var(--text-secondary);
  transition:all .25s var(--ease);
}
.lang-switch button.active{ background:var(--white); color:var(--purple-deep); box-shadow:0 4px 14px rgba(88,73,190,0.14); }

.nav-toggle{ display:none; width:40px; height:40px; align-items:center; justify-content:center; border-radius:10px; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{ content:''; display:block; width:20px; height:2px; background:var(--text-main); border-radius:2px; }
.nav-toggle{ flex-direction:column; gap:5px; }

@media (max-width:1220px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
}

@media (max-width:640px){
  .nav-inner{ height:64px; }
  .navbar.scrolled .nav-inner{ height:58px; }
  .brand{ font-size:15px; gap:8px; }
  .brand-mark{ width:32px; height:32px; }
  .brand-name small{ display:none; }
  .nav-right{ gap:8px; }
  .nav-right .lang-switch{ display:none; }
  .nav-right > a.btn{ display:none; }
}

.mobile-menu .lang-switch{ align-self:flex-start; margin-bottom:6px; }

.mobile-menu{
  position:fixed; top:64px; right:0; bottom:0; left:0; z-index:99; background:var(--white);
  padding:28px var(--pad-mobile); display:none; flex-direction:column; gap:6px;
  overflow-y:auto;
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{ padding:16px 4px; font-size:17px; font-weight:700; border-bottom:1px solid var(--border-soft); }
.mobile-menu .btn{ margin-top:18px; width:100%; }

/* ---------- Section spacing ---------- */
.section{ padding:150px 0; }
@media (max-width:1200px){ .section{ padding:110px 0; } }
@media (max-width:640px){ .section{ padding:78px 0; } }

.section-alt{ background:var(--purple-pale); }

.section-head{ max-width:680px; margin-bottom:64px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:44px; margin:16px 0 18px; }
.section-head p{ font-size:17.5px; color:var(--text-secondary); }
@media (max-width:640px){ .section-head h2{ font-size:32px; } }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(32px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.02s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.10s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.18s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.26s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.34s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.42s; }
.reveal-stagger.in > *:nth-child(7){ transition-delay:.50s; }
.reveal-stagger.in > *:nth-child(8){ transition-delay:.58s; }

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
@keyframes floatSm{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-7px) rotate(1.2deg); }
}
.floaty{ animation:float 6s ease-in-out infinite; }
.floaty-sm{ animation:floatSm 5.5s ease-in-out infinite; }
.floaty-delay1{ animation-delay:.6s; }
.floaty-delay2{ animation-delay:1.2s; }
.floaty-delay3{ animation-delay:1.8s; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  padding-top:150px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:var(--grad-mesh);
}
.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 1fr;
  gap:40px; align-items:center;
  padding-bottom:60px;
}
.hero-copy .eyebrow{ margin-bottom:22px; }
.hero-copy h1{ font-size:64px; margin-bottom:22px; }
.hero-copy .lede{ font-size:18.5px; color:var(--text-secondary); max-width:520px; margin-bottom:14px; }
.hero-tagline{ font-weight:700; color:var(--purple-deep); font-size:16px; margin-bottom:34px; display:block; }
.hero-actions{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }

@media (max-width:640px){ .hero-copy h1{ font-size:40px; } }

/* Hero visual: phone mockup */
.hero-visual{ position:relative; display:flex; justify-content:center; z-index:1; }
.phone{
  position:relative; width:288px; height:588px;
  background:linear-gradient(160deg,#1c1c2e,#0f0f1e);
  border-radius:44px; padding:12px;
  box-shadow:0 40px 90px rgba(60,45,150,0.28);
  transform:rotate(-3deg);
  animation:float 7s ease-in-out infinite;
}
.phone-screen{
  width:100%; height:100%; border-radius:34px; overflow:hidden; position:relative;
  background:var(--white);
}
.phone-notch{ position:absolute; top:0; left:50%; transform:translateX(-50%); width:120px; height:22px; background:#0f0f1e; border-radius:0 0 16px 16px; z-index:5; }
.phone-status{ display:flex; justify-content:space-between; padding:32px 20px 10px; font-size:11px; font-weight:700; color:var(--text-main); }
.chat-header{ display:flex; align-items:center; gap:10px; padding:10px 18px 14px; border-bottom:1px solid var(--border-soft); }
.chat-avatar{ width:34px; height:34px; border-radius:50%; background:var(--grad-primary); display:flex; align-items:center; justify-content:center; }
.chat-name{ font-size:13px; font-weight:700; }
.chat-status{ font-size:10.5px; color:#22C55E; font-weight:600; }
.chat-body{ padding:14px 14px; display:flex; flex-direction:column; gap:10px; background:#F8F7FD; height:392px; }
.bubble{ max-width:78%; padding:10px 13px; border-radius:14px; font-size:12px; line-height:1.45; }
.bubble-in{ background:var(--white); align-self:flex-start; border-bottom-left-radius:4px; box-shadow:0 4px 14px rgba(70,55,160,0.06); }
.bubble-out{ background:var(--grad-primary); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.bubble-img{ width:150px; height:90px; border-radius:10px; overflow:hidden; align-self:flex-start; }
.chat-input{ display:flex; align-items:center; gap:8px; padding:10px 14px; border-top:1px solid var(--border-soft); }
.chat-input .fake-field{ flex:1; height:34px; background:#F1EFFB; border-radius:999px; }
.chat-send{ width:34px; height:34px; border-radius:50%; background:var(--grad-cta); flex-shrink:0; }

/* Floating cards over hero */
.float-card{
  position:absolute;
  background:rgba(255,255,255,0.98);
  border:1px solid rgba(112,93,220,0.08);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-float);
  padding:14px 16px;
  display:flex; align-items:center; gap:10px;
  z-index:2;
}
.fc-id{ top:10%; left:-8%; }
.fc-status{ bottom:22%; left:-4%; }
.fc-rating{ top:6%; right:-6%; }
.fc-team{ bottom:6%; right:-8%; }

.icon-chip{ width:36px; height:36px; border-radius:10px; background:var(--lavender-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon-chip svg{ width:18px; height:18px; }
.fc-title{ font-size:12.5px; font-weight:700; }
.fc-sub{ font-size:11px; color:var(--text-secondary); }

@media (max-width:1100px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; margin-bottom:10px; }
  .float-card{ display:none; }
  .phone{ transform:rotate(0); width:240px; height:480px; }
  .chat-body{ height:300px; }
}

/* ---------- Hero purple panel ---------- */
.hero-panel{
  position:relative; z-index:1;
  background:var(--grad-primary);
  border-radius:56px 56px 40px 40px;
  padding:56px var(--pad-desktop) 60px;
  display:grid; grid-template-columns:1.1fr 1fr 1fr;
  gap:40px;
  color:#fff;
  margin-top:-10px;
  overflow:hidden;
}
.hero-panel::before{
  content:''; position:absolute; top:-60px; right:-60px; width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}
.panel-item{ position:relative; z-index:1; }
.panel-item h4{ color:#fff; font-size:19px; margin-bottom:8px; }
.panel-item p{ color:rgba(255,255,255,0.82); font-size:14.5px; }
.panel-icon{ width:42px; height:42px; border-radius:12px; background:rgba(255,255,255,0.16); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.panel-trust{ display:flex; align-items:center; gap:14px; }
.avatar-group{ display:flex; }
.avatar-group .av{ width:36px; height:36px; border-radius:50%; border:2px solid var(--purple-primary); margin-left:-10px; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color:#fff; }
.avatar-group .av:first-child{ margin-left:0; }
@media (max-width:900px){ .hero-panel{ grid-template-columns:1fr; border-radius:36px; padding:44px 24px; } }

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; align-items:center; }
.about-visual{ position:relative; }
.issue-cluster{ position:relative; background:var(--purple-pale); border-radius:var(--radius-lg); padding:40px; min-height:420px; }
.issue-chip{
  background:#fff; border-radius:var(--radius-sm); box-shadow:var(--shadow-float);
  padding:14px 16px; display:flex; align-items:center; gap:12px; margin-bottom:14px;
  border:1px solid var(--border-soft);
}
.issue-chip:nth-child(2){ margin-left:34px; }
.issue-chip:nth-child(3){ margin-left:12px; }
.about-copy h2{ font-size:42px; margin:16px 0 20px; }
.about-copy p{ color:var(--text-secondary); font-size:16.5px; margin-bottom:16px; }
.flow-strip{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:28px; font-weight:700; color:var(--purple-deep); font-size:15px; }
.flow-strip .arrow{ color:var(--pink-soft); }

@media (max-width:960px){ .about-grid{ grid-template-columns:1fr; gap:44px; } .about-copy h2{ font-size:32px; } }

/* ============================================================
   MISSION
   ============================================================ */
.mission-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px 32px; margin-top:32px; }
.mission-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15.5px; color:var(--text-main); font-weight:600; }
.mission-list .tick{ width:26px; height:26px; border-radius:8px; background:var(--lavender-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
@media (max-width:640px){ .mission-list{ grid-template-columns:1fr; } }

/* ============================================================
   ISSUE CATEGORY CARDS
   ============================================================ */
.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.cat-card{
  background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-md);
  padding:30px 26px; box-shadow:var(--shadow-card);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); border-color:rgba(117,103,244,0.25); }
.cat-icon{ width:52px; height:52px; border-radius:14px; background:var(--grad-primary); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.cat-icon svg{ width:24px; height:24px; stroke:#fff; }
.cat-card h4{ font-size:17px; margin-bottom:8px; }
.cat-card p{ font-size:14px; color:var(--text-secondary); }
@media (max-width:1100px){ .cat-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .cat-grid{ grid-template-columns:1fr; } }
.cat-cta{ text-align:center; margin-top:48px; }

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.steps-wrap{ position:relative; }
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px 22px; position:relative; }
.step-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:28px 24px; box-shadow:var(--shadow-card); position:relative; }
.step-num{ font-family:'Poppins',sans-serif; font-weight:800; font-size:34px; color:var(--lavender-light); -webkit-text-stroke:1.5px var(--purple-primary); position:absolute; top:18px; right:20px; }
.step-card h4{ font-size:16.5px; margin:6px 0 8px; max-width:80%; }
.step-card p{ font-size:13.5px; color:var(--text-secondary); }
@media (max-width:1100px){ .steps-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .steps-grid{ grid-template-columns:1fr; } }
.steps-cta{ text-align:center; margin-top:44px; font-weight:700; color:var(--purple-deep); font-size:15.5px; }

/* ============================================================
   TRACK COMPLAINT
   ============================================================ */
.track-panel{
  background:var(--grad-primary); border-radius:var(--radius-xl); padding:64px var(--pad-desktop);
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; color:#fff; position:relative; overflow:hidden;
}
.track-panel::after{ content:''; position:absolute; bottom:-80px; left:-80px; width:260px; height:260px; border-radius:50%; background:radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); }
.track-panel h2{ color:#fff; font-size:36px; margin:14px 0 16px; }
.track-panel p{ color:rgba(255,255,255,0.85); font-size:15.5px; margin-bottom:26px; }
.status-pipe{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:30px; }
.status-pip{ background:rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.22); padding:8px 14px; border-radius:999px; font-size:12.5px; font-weight:700; }
.track-form{ background:#fff; border-radius:var(--radius-lg); padding:34px; box-shadow:var(--shadow-lift); position:relative; z-index:1; color:var(--text-main); }
.track-form label{ display:block; font-size:13px; font-weight:700; color:var(--text-secondary); margin-bottom:10px; }
.track-input-row{ display:flex; gap:10px; }
.track-input-row input{ flex:1; height:52px; border-radius:14px; border:1.5px solid var(--border-soft); padding:0 18px; font-size:14.5px; }
.track-input-row input:focus{ outline:none; border-color:var(--purple-primary); }
.track-result{ margin-top:22px; display:none; }
.track-result.show{ display:block; }
.track-timeline{ display:flex; flex-direction:column; gap:0; margin-top:16px; }
.tl-item{ display:flex; gap:12px; align-items:flex-start; padding-bottom:18px; position:relative; }
.tl-item::before{ content:''; position:absolute; left:9px; top:22px; bottom:0; width:2px; background:var(--border-soft); }
.tl-item:last-child::before{ display:none; }
.tl-dot{ width:20px; height:20px; border-radius:50%; background:var(--lavender-light); border:3px solid var(--purple-primary); flex-shrink:0; z-index:1; }
.tl-item.done .tl-dot{ background:var(--purple-primary); }
.tl-label{ font-size:13.5px; font-weight:700; }
@media (max-width:960px){ .track-panel{ grid-template-columns:1fr; padding:44px 24px; border-radius:36px; } }

/* ============================================================
   COMMUNITY (For Every Hinjawadikar)
   ============================================================ */
.community-band{ display:grid; grid-template-columns:repeat(5,1fr); gap:0; border:1px solid var(--border-soft); border-radius:var(--radius-lg); overflow:hidden; }
.community-item{ padding:34px 22px; text-align:center; border-right:1px solid var(--border-soft); }
.community-item:last-child{ border-right:none; }
.community-icon{ width:46px; height:46px; border-radius:12px; background:var(--purple-pale); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.community-item span{ font-size:13.5px; font-weight:700; }
@media (max-width:900px){ .community-band{ grid-template-columns:repeat(2,1fr); } .community-item{ border-right:none; border-bottom:1px solid var(--border-soft); } }

/* ============================================================
   SOCIETY CONNECT / split feature
   ============================================================ */
.split-feature{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.split-feature.reverse .split-visual{ order:2; }
.split-copy h2{ font-size:38px; margin:14px 0 18px; }
.split-copy p{ color:var(--text-secondary); font-size:16px; margin-bottom:26px; }
.problems-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); box-shadow:var(--shadow-lift); padding:34px; position:relative; }
.problems-header{ display:flex; align-items:center; gap:18px; padding-bottom:24px; margin-bottom:22px; border-bottom:1px solid var(--border-soft); }
.problems-count{
  font-family:'Poppins',sans-serif; font-weight:800; font-size:44px; line-height:1;
  background:linear-gradient(90deg,var(--purple-primary),var(--pink-soft));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  flex-shrink:0;
}
.problems-title{ font-size:15.5px; font-weight:700; color:var(--text-main); }
.problems-sub{ font-size:13px; color:var(--text-secondary); margin-top:3px; }
.problems-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.problem-chip{
  display:flex; align-items:center; gap:10px;
  background:var(--purple-pale); border-radius:var(--radius-sm);
  padding:11px 13px; font-size:12.5px; font-weight:600; color:var(--text-main);
}
.problem-chip svg{ width:17px; height:17px; flex-shrink:0; }
@media (max-width:400px){ .problems-grid{ grid-template-columns:1fr; } }
@media (max-width:960px){ .split-feature, .split-feature.reverse{ grid-template-columns:1fr; gap:36px; } .split-feature.reverse .split-visual{ order:0; } .split-copy h2{ font-size:30px; } }

/* ============================================================
   TRANSPARENCY DASHBOARD
   ============================================================ */
.dash-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.dash-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:26px; box-shadow:var(--shadow-card); }
.dash-card .dash-icon{ width:40px; height:40px; border-radius:11px; background:var(--purple-pale); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.dash-card h4{ font-size:15px; margin-bottom:6px; }
.dash-value{ font-family:'Poppins',sans-serif; font-weight:800; font-size:28px; color:var(--purple-deep); }
.dash-value small{ font-size:13px; font-weight:700; color:var(--text-secondary); margin-left:6px; }
@media (max-width:900px){ .dash-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .dash-grid{ grid-template-columns:1fr; } }
.dash-note{ text-align:center; margin-top:34px; color:var(--text-secondary); font-size:14px; font-style:italic; }

/* ============================================================
   PARTICIPATION CTA STRIP
   ============================================================ */
.participate-strip{ display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:44px 50px; box-shadow:var(--shadow-card); }
.participate-steps{ display:flex; gap:26px; flex-wrap:wrap; margin-top:14px; }
.participate-steps span{ font-size:13.5px; font-weight:700; color:var(--purple-deep); display:flex; align-items:center; gap:8px; }
@media (max-width:800px){ .participate-strip{ grid-template-columns:1fr; text-align:center; } .participate-steps{ justify-content:center; } }

/* ============================================================
   ABOUT INITIATIVE (founder)
   ============================================================ */
.founder-card{ display:grid; grid-template-columns:auto 1fr; gap:40px; align-items:start; background:var(--purple-pale); border-radius:var(--radius-xl); padding:52px; }
.founder-portrait{ width:170px; height:170px; border-radius:50%; background:var(--grad-primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:var(--shadow-lift); }
.founder-portrait span{ font-family:'Poppins',sans-serif; font-weight:800; font-size:52px; color:#fff; }
.founder-name{ font-size:24px; margin-bottom:6px; }
.founder-roles{ display:flex; flex-direction:column; gap:3px; margin-bottom:18px; }
.founder-roles span{ font-size:13.5px; color:var(--text-secondary); font-weight:600; }
.founder-card p{ color:var(--text-main); font-size:15.5px; line-height:1.7; margin-bottom:14px; max-width:720px; text-align:justify; text-justify:inter-word; }
@media (max-width:760px){ .founder-card{ grid-template-columns:1fr; text-align:center; padding:38px 26px; } .founder-portrait{ margin:0 auto; } .founder-roles{ align-items:center; } .founder-card p{ text-align:left; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center; }
.testi-visual{ position:relative; background:var(--pink-soft); border-radius:var(--radius-lg); min-height:380px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.testi-visual::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 55%); }
.testi-blob{ width:120px; height:120px; border-radius:50%; background:rgba(255,255,255,0.22); position:absolute; }
.testi-blob.b1{ top:10%; left:10%; }
.testi-blob.b2{ bottom:8%; right:12%; width:80px; height:80px; }
.testi-score{ position:absolute; bottom:24px; left:24px; background:#fff; border-radius:var(--radius-sm); padding:14px 18px; box-shadow:var(--shadow-float); z-index:2; }
.stars{ color:var(--pink-highlight); font-size:14px; letter-spacing:2px; }
.quote-mark{ font-family:'Poppins',sans-serif; font-size:80px; font-weight:800; color:var(--lavender-light); line-height:0.6; margin-bottom:10px; }
.testi-text{ font-size:22px; font-weight:600; color:var(--text-main); line-height:1.5; margin-bottom:26px; }
.testi-person{ display:flex; align-items:center; gap:14px; margin-bottom:30px; }
.testi-avatar{ width:48px; height:48px; border-radius:50%; background:var(--grad-primary); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; }
.testi-name{ font-weight:700; font-size:15px; }
.testi-role{ font-size:13px; color:var(--text-secondary); }
.testi-controls{ display:flex; gap:12px; }
.testi-controls button{ width:44px; height:44px; border-radius:50%; border:1.5px solid var(--border-soft); display:flex; align-items:center; justify-content:center; transition:all .25s var(--ease); }
.testi-controls button:hover{ background:var(--purple-pale); border-color:var(--purple-primary); }
.testi-slide{ display:none; }
.testi-slide.active{ display:block; }
@media (max-width:960px){ .testi-grid{ grid-template-columns:1fr; gap:36px; } .testi-text{ font-size:19px; } }

/* ============================================================
   CTA DEVICE BANNER
   ============================================================ */
.cta-banner{
  background:var(--grad-primary); border-radius:var(--radius-xl); padding:0;
  display:grid; grid-template-columns:0.9fr 1.1fr; align-items:center; overflow:hidden; position:relative;
  margin:0 auto; max-width:1280px;
}
.cta-banner::before{ content:''; position:absolute; top:-100px; right:20%; width:320px; height:320px; border-radius:50%; background:radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%); }
.cta-device-wrap{ display:flex; justify-content:center; padding:50px 20px 0; position:relative; }
.cta-phone{ width:220px; height:440px; background:#111124; border-radius:36px; padding:10px; transform:rotate(-6deg) translateY(20px); box-shadow:0 30px 70px rgba(0,0,0,0.35); }
.cta-phone-screen{ width:100%; height:100%; background:#fff; border-radius:28px; padding:22px 16px; }
.cta-task{ display:flex; align-items:center; gap:10px; padding:9px 0; border-bottom:1px solid var(--border-soft); }
.cta-check{ width:18px; height:18px; border-radius:6px; border:2px solid var(--purple-primary); flex-shrink:0; }
.cta-check.on{ background:var(--purple-primary); }
.cta-task span{ font-size:11px; font-weight:600; }
.cta-content{ padding:60px var(--pad-desktop) 60px 20px; color:#fff; position:relative; z-index:1; }
.cta-content h2{ color:#fff; font-size:38px; margin:14px 0 18px; }
.cta-content p{ color:rgba(255,255,255,0.85); font-size:16px; margin-bottom:30px; max-width:440px; }
@media (max-width:960px){ .cta-banner{ grid-template-columns:1fr; border-radius:40px; } .cta-content{ padding:20px 30px 56px; text-align:center; } .cta-content p{ margin-left:auto; margin-right:auto; } .cta-phone{ transform:rotate(0) translateY(0); } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.blog-card{ background:#fff; border:1px solid var(--border-soft); border-radius:26px; overflow:hidden; box-shadow:var(--shadow-card); transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.blog-cover{ height:170px; position:relative; overflow:hidden; }
.blog-cover .grad{ position:absolute; inset:0; transition:transform .5s var(--ease); }
.blog-card:hover .grad{ transform:scale(1.05); }
.blog-body{ padding:24px 22px 26px; }
.blog-meta{ display:flex; gap:10px; align-items:center; font-size:12px; color:var(--text-secondary); font-weight:600; margin-bottom:12px; }
.blog-cat{ color:var(--purple-deep); background:var(--purple-pale); padding:3px 10px; border-radius:999px; font-weight:700; }
.blog-body h4{ font-size:17px; margin-bottom:14px; line-height:1.35; }
.blog-more{ display:flex; align-items:center; gap:6px; font-size:13.5px; font-weight:700; color:var(--purple-deep); }
.blog-more svg{ transition:transform .3s var(--ease); }
.blog-card:hover .blog-more svg{ transform:translateX(4px); }
@media (max-width:1000px){ .blog-grid{ grid-template-columns:1fr; } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-box{ background:var(--purple-pale); border-radius:var(--radius-lg); padding:44px 50px; display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap; }
.newsletter-box h3{ font-size:22px; max-width:340px; }
.newsletter-form{ display:flex; gap:10px; flex:1 1 320px; max-width:460px; min-width:0; }
.newsletter-form input{ flex:1 1 auto; min-width:0; height:54px; border-radius:999px; border:1.5px solid var(--border-soft); padding:0 22px; font-size:14.5px; background:#fff; }
.newsletter-form input:focus{ outline:none; border-color:var(--purple-primary); }
.newsletter-msg{ font-size:13.5px; color:var(--purple-deep); font-weight:700; margin-top:10px; display:none; }
.newsletter-msg.show{ display:block; }
@media (max-width:640px){
  .newsletter-box{ padding:32px 26px; }
  .newsletter-form{ flex-basis:100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ padding:100px 0 0; border-top:1px solid var(--border-soft); margin-top:120px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; gap:40px; padding-bottom:60px; }
.footer-brand p{ color:var(--text-secondary); font-size:14.5px; margin:16px 0 20px; max-width:280px; }
.social-row{ display:flex; gap:10px; }
.social-row a{ width:38px; height:38px; border-radius:50%; background:var(--purple-pale); display:flex; align-items:center; justify-content:center; transition:all .25s var(--ease); }
.social-row a:hover{ background:var(--grad-primary); }
.social-row a:hover svg{ stroke:#fff; }
.footer-col h5{ font-size:13.5px; font-weight:800; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:20px; color:var(--text-main); }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color:var(--text-secondary); transition:color .25s var(--ease); }
.footer-col a:hover{ color:var(--purple-deep); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; border-top:1px solid var(--border-soft); flex-wrap:wrap; gap:14px; }
.footer-bottom p{ font-size:13px; color:var(--text-secondary); }
.footer-bottom-links{ display:flex; gap:24px; }
.footer-bottom-links a{ font-size:13px; color:var(--text-secondary); }
.footer-bottom-links a:hover{ color:var(--purple-deep); }
@media (max-width:960px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } .footer-bottom{ flex-direction:column; text-align:center; } }

/* ---------- Section title generic ---------- */
.tag-band{ display:flex; align-items:center; gap:12px; margin-top:10px; }
.tag-band .pill{ font-size:12.5px; font-weight:700; color:var(--purple-deep); background:var(--purple-pale); padding:6px 14px; border-radius:999px; }

/* Decorative dot grid */
.dot-grid{ position:absolute; width:120px; height:120px; background-image:radial-gradient(circle, rgba(117,103,244,0.22) 1.5px, transparent 1.5px); background-size:14px 14px; opacity:0.6; pointer-events:none; }

/* Skip link accessibility */
.skip-link{ position:absolute; left:-999px; top:0; background:var(--purple-primary); color:#fff; padding:12px 20px; z-index:1000; border-radius:0 0 10px 0; }
.skip-link:focus{ left:0; }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible{ outline:2.5px solid var(--purple-primary); outline-offset:2px; }
