:root{
  --bg:#0b0f17;
  --card:#111827;
  --muted:#94a3b8;
  --text:#e5e7eb;
  --brand:#D63C96; /* Zemba magenta */
  --border:rgba(148,163,184,.18);
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1200px 600px at 10% 0%, rgba(214,60,150,.12), transparent 60%), var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:1400px;margin:0 auto;padding:0 18px}

/* NAV */
.nav{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.65);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:10px 0
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:800;
  letter-spacing:.2px
}
.brand span{
  font-size:20px;
  line-height:1.1;
}
.brand small{
  display:block;
  font-size:12px;
  font-weight:600;
  color:var(--muted);
  letter-spacing:0;
}
.logo-img{
  width:78px;
  height:78px;
  object-fit:contain;
  background:transparent;
  border-radius:14px;
}

.nav-links{display:flex;gap:14px;flex-wrap:wrap}
.nav-links a{
  padding:10px 12px;border-radius:12px;
  color:var(--text);
  border:1px solid transparent
}
.nav-links a:hover{
  border-color:var(--border);
  background:rgba(255,255,255,.03)
}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;
  border:1px solid rgba(214,60,150,.35);
  background: rgba(214,60,150,.12);
  color:var(--text);
  font-weight:700;
}
.btn:hover{background: rgba(214,60,150,.18)}
.btn-solid{
  border-color:rgba(214,60,150,.55);
  background: linear-gradient(135deg, rgba(214,60,150,.95), rgba(214,60,150,.55));
}
.btn-solid:hover{filter:brightness(1.05)}

/* HERO */
.hero{padding:54px 0 26px}

/* TOP ROW GRID (heading+image | quick highlights) */
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:start;
}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
}

.hero-left{
  max-width:720px;
}

.h1{
  font-size:42px;
  line-height:1.08;
  max-width:850px;
  margin:0;
}
@media (max-width:520px){
  .h1{font-size:34px}
}

/* spacing between heading and image */
.hero-media{
  width:100%;
  height:420px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  margin-top:18px;
}

.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-right{
  align-self:start;
}

/* BELOW BOTH COLUMNS */
.hero-below{
  margin-top:18px;
  max-width:720px; /* aligns with left column */
}

.p{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  margin:0 0 18px;
}

.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.badge{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:650;
  font-size:13px
}

/* CARDS */
.card{
  border:1px solid var(--border);
  background: rgba(17,24,39,.65);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:22px 0 44px
}
@media (max-width:900px){
  .cards{grid-template-columns:1fr}
}
.card h3{margin:2px 0 8px;font-size:16px}
.card p{margin:0;color:var(--muted);line-height:1.55}

/* SECTIONS */
.section{padding:26px 0}
.section h2{margin:0 0 10px;font-size:22px}
.hr{height:1px;background:var(--border);margin:14px 0}

/* QUICK HIGHLIGHTS */
.quick-card{
  padding:16px;
}
.kv{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width:700px){
  .kv{grid-template-columns:1fr}
}

.quick-list{
  margin:0;
  padding-left:0;
  list-style:none;
}
.quick-list li{
  position:relative;
  padding-left:18px;
  margin-bottom:10px;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.quick-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--brand);
  font-size:20px;
  line-height:1;
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:2px;
}

/* FORMS / TABLES */
.input, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
label{
  display:block;
  margin:8px 0 6px;
  color:var(--muted);
  font-weight:650;
  font-size:13px
}
.notice{color:var(--muted);font-size:13px;line-height:1.6}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:16px
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  text-align:left
}
.table th{
  color:var(--muted);
  font-weight:750;
  background:rgba(255,255,255,.02)
}
.table tr:last-child td{border-bottom:none}
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* FOOTER */
.footer{
  border-top:1px solid var(--border);
  padding:22px 0 36px;
  color:var(--muted)
}
.footer a{color:var(--text);opacity:.9}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px
}
@media (max-width:900px){
  .footer-grid{grid-template-columns:1fr}
}
/* Rent-to-Own plan page */
.plan-head{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.plan-logos{
  display:flex;
  gap:14px;
  align-items:center;
}

.plan-logo{
  width:86px;
  height:86px;
  object-fit:contain;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding:10px;
}

.plan-title-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.table-wrap{
  overflow:auto;
  border-radius:16px;
}

.plan-table th{
  text-align:center;
}

.plan-table td:first-child,
.plan-table th:first-child{
  text-align:left;
  white-space:nowrap;
}

.plan-foot{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap:14px;
  align-items:start;
}

.plan-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media (max-width:900px){
  .plan-foot{grid-template-columns:1fr}
  .plan-cta{justify-content:flex-start}
}
/* Rent-to-Own Plan page polish */
.plan-head{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.plan-title{
  flex:1;
  min-width:260px;
  text-align:center;
}

.plan-logos{
  display:flex;
  gap:14px;
  align-items:center;
}

.plan-logos-right{
  justify-content:flex-end;
}

.plan-logo{
  width:88px;
  height:88px;
  object-fit:contain;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding:10px;
}

.plan-title-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.table-wrap{
  overflow:auto;
  border-radius:16px;
}

.plan-table th{
  white-space:nowrap;
}

.center{
  text-align:center !important;
}

.plan-foot{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap:14px;
  align-items:start;
}

.plan-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Tabs */
.plan-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.tab-btn{
  cursor:pointer;
  border-radius:999px;
  padding:10px 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:750;
}

.tab-btn:hover{
  border-color: rgba(214,60,150,.35);
  background: rgba(214,60,150,.10);
}

.tab-btn.active{
  border-color: rgba(214,60,150,.55);
  background: linear-gradient(135deg, rgba(214,60,150,.95), rgba(214,60,150,.55));
}

.tab-panel{
  display:none;
}

.tab-panel.active{
  display:block;
}

@media (max-width:900px){
  .plan-title{ text-align:left; }
  .plan-foot{ grid-template-columns:1fr; }
  .plan-cta{ justify-content:flex-start; }
}
/* Customer care alignment */
.plan-foot > div:nth-child(2){
  text-align:center;
}
/* Force equal-width columns for Rent-to-Own table */
.plan-table{
  table-layout:fixed;   /* KEY LINE */
  width:100%;
}
.plan-table th,
.plan-table td{
  text-align:center !important;
  vertical-align:middle;
  white-space:nowrap;   /* keeps ₹ values neat */
}
.plan-table th{
  font-weight:800;
  color:var(--text);
}
/* Highlight Upfront Payment values */
.upfront-val{
  font-weight:900;
  color:var(--brand); /* ZEMBA magenta */
}
/* Normalize text inside Privacy / Policy pages */
.section ul li{
  color: var(--muted);
  font-size:16px;
  font-weight:400;
  line-height:1.65;
}

.section ul{
  margin-top:6px;
}
/* Highlight Terms & Conditions heading */
.section h2{
  color: var(--brand);
}





