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

:root {
  --ink: #0b1e35;
  --ink-2: #1a3358;
  --muted: #5b6b85;
  --line: #dce6f3;
  --canvas: #eaf2ff;
  --white: #fff;
  --blue: #1e56d3;
  --teal: #14a69b;
  --gold: #f0a13a;
  --grad: linear-gradient(135deg, #1e56d3 0%, #14a69b 100%);
  --shadow: 0 24px 60px rgba(19, 55, 122, 0.10);
  --soft: 0 8px 20px rgba(19, 55, 122, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--canvas); color: var(--ink);
  font-family: 'Manrope', 'Noto Sans Devanagari', system-ui, sans-serif; font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Sora', 'Noto Sans Devanagari', sans-serif;
  letter-spacing: -0.02em; margin: 0; font-weight: 800; color: var(--ink);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; }

.top-banner {
  background: linear-gradient(90deg, #0b1e35, #1a3358);
  color: #d7e6ff; text-align: center; padding: 10px 20px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.3px;
}

header {
  position: sticky; top: 0; z-index: 5;
  padding: 14px max(20px, calc((100% - 1220px)/2));
  background: rgba(234, 242, 255, .78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
  font: 800 19px/1 'Sora', sans-serif; color: var(--ink); display: inline-flex; align-items: center; gap: 10px;
}
.logo::before {
  content: "T"; width: 36px; height: 36px; border-radius: 12px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800;
  box-shadow: 0 8px 18px rgba(30,86,211,.35);
}
.logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
nav { display: flex; gap: 26px; }
nav a { color: #3f5471; font-size: 13px; font-weight: 600; }
nav a:hover { color: var(--blue); }

.cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff !important;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 14px;
  box-shadow: 0 14px 28px rgba(30,86,211,.35); border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .25s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(30,86,211,.45); }
.cta.small { padding: 10px 16px; font-size: 12px; }

.hero, .section, .offer, .demo {
  max-width: 1220px; margin: auto; padding: 90px 28px;
}
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding-top: 60px;
}
.hero label, section > label {
  display: inline-block; color: var(--blue); font-size: 11px;
  letter-spacing: 2px; font-weight: 800; text-transform: uppercase;
}
.hero h1, h2 { font-size: clamp(34px, 4.5vw, 60px); line-height: 1.08; }
.hero h1 { margin: 18px 0 22px; }
.hero em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p, .columns p { color: var(--muted); line-height: 1.7; font-size: 16px; }

.mock {
  position: relative;
  background: #fff; border-radius: 22px; padding: 30px;
  min-height: 360px; box-shadow: var(--shadow); border: 1px solid #e6edfa;
}
.mock::before {
  content: ""; position: absolute; inset: -30px; z-index: -1;
  background:
    radial-gradient(400px 240px at 20% 20%, #cfe0ff 0%, transparent 70%),
    radial-gradient(320px 200px at 80% 80%, #cfeee7 0%, transparent 70%);
  filter: blur(8px);
}
.mock > b { display: block; font-family: 'Sora', sans-serif; font-size: 16px; }
.mock-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 26px; }
.mock-grid i {
  background: #f4f8ff; border-radius: 12px; padding: 18px; font-style: normal;
  color: var(--muted); font-size: 11px; letter-spacing: 0.5px; font-weight: 700;
}
.mock-grid strong {
  display: block; color: var(--ink); font: 700 17px/1.2 'Sora', sans-serif; margin-top: 10px;
}
.line { border-top: 3px solid var(--blue); margin-top: 40px; border-radius: 3px; transform: skewY(-4deg); opacity: .4; }

.section { border-top: 1px solid var(--line); }
.section h2 { margin-bottom: 26px; }
.lead { font-size: 20px !important; color: var(--ink-2) !important; line-height: 1.55 !important; }
.columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.white { max-width: none; background: #fff; padding-left: max(28px, calc((100% - 1220px)/2)); padding-right: max(28px, calc((100% - 1220px)/2)); border-top: 0; }
h2 span, footer span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.features article {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 26px; min-height: 175px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.features article:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c7dbf9; }
.features article > b {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dfe9ff, #d6f0eb);
  color: var(--blue); font-size: 20px; margin-bottom: 18px;
}
.features h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; font-family: 'Sora', sans-serif; }
.features p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.gallery figure {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.gallery img { width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.gallery figcaption { padding: 12px 14px; font-weight: 700; font-size: 13px; }
.empty, .video .empty {
  padding: 60px 30px; text-align: center;
  border: 1.5px dashed #b6c8e6; color: var(--muted); border-radius: 14px;
  background: #f6f9ff; margin-top: 26px;
}

.video {
  position: relative;
  background: linear-gradient(135deg, #0b1e35 0%, #1a3358 100%);
  color: #fff; padding: 90px 28px; text-align: center;
}
.video::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 80% 20%, rgba(20,166,155,.25) 0, transparent 60%);
  pointer-events: none;
}
.video > * { position: relative; }
.video h2 { color: #fff; }
.video h2 span { background: linear-gradient(135deg, #7cd3ff, #b9f0e6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.video label { color: #7cd3ff !important; }
.video iframe {
  display: block; width: min(900px, 100%); aspect-ratio: 16/9;
  margin: 30px auto 0; border: 0; border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.video .empty { max-width: 700px; margin: 30px auto 0; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #b3c7e5; }

.offer { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.offer > div h2 { font-size: clamp(34px,4vw,54px); }
.offer > div p { color: var(--muted); line-height: 1.75; margin: 0 0 28px; max-width: 460px; }

.price-card, .demo form, .panel {
  background: #fff; padding: 32px; border-radius: 22px;
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative;
}
.price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad); border-radius: 22px 22px 0 0; }
.price-card > small { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); font-weight: 700; }
.price-card > strong {
  display: block; font: 800 60px/1 'Sora', sans-serif; margin: 12px 0 6px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card > b { display: block; font-size: 13px; color: var(--ink-2); font-weight: 700; }
.price-card ul {
  padding: 22px 0; margin: 24px 0; list-style: none;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  line-height: 2.2; color: var(--ink-2); font-size: 14px;
}
.refund { color: #a56332; font-size: 12px; line-height: 1.5; margin: 12px 0 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.steps b {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 22px; line-height: 1.5;
  font: 700 15px/1.5 'Sora', sans-serif;
}
.steps b::before {
  display: block; margin-bottom: 12px; color: var(--blue);
  font-size: 12px; letter-spacing: 1px;
}

.demo {
  max-width: none; background: linear-gradient(180deg, #eaf2ff 0%, #dbeaff 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding-left: max(28px, calc((100% - 1220px)/2));
  padding-right: max(28px, calc((100% - 1220px)/2));
}
.demo h3 { font-size: 20px; margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.demo form label { display: block; font-size: 12px; font-weight: 700; margin: 16px 0 8px; color: var(--ink-2); }
.demo input, .panel input, .panel select, .login input {
  display: block; width: 100%; padding: 13px 14px; margin-top: 6px;
  border: 1px solid var(--line); border-radius: 10px; font-size: 14px;
  background: #fff;
}
.demo input:focus, .panel input:focus, .login input:focus, .panel select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,86,211,.12);
}
.demo small { display: block; color: var(--muted); margin-top: 6px; font-size: 11px; }
.demo form .cta { width: 100%; margin-top: 16px; justify-content: center; }
.qr { max-width: 200px; margin-top: 18px; background: #fff; padding: 12px; border-radius: 14px; box-shadow: var(--soft); }
.note { font-size: 12px; color: var(--muted); margin-top: 10px; }

.pay-block {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 26px; margin-top: 26px; box-shadow: var(--soft);
}
.pay-h { font-size: 17px; margin: 0 0 14px; font-family: 'Sora', sans-serif; }
.cta.pay-upi {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 18px 22px; font-size: 16px;
  background: linear-gradient(135deg, #1e56d3 0%, #0b1e35 100%);
}
.upi-apps { font-size: 12px; color: var(--muted); text-align: center; margin: 10px 0 4px; }
.pay-instruction {
  font-size: 13px; color: var(--ink-2); line-height: 1.6;
  background: #eef4ff; padding: 12px 14px; border-radius: 10px;
  border: 1px solid #d6e2f8; margin: 14px 0 0;
}
.pay-instruction b { color: var(--ink); }
.pay-instruction.muted { background: #f6f9ff; color: var(--muted); }
.or-sep {
  display: flex; align-items: center; gap: 12px; margin: 20px 0 4px;
  color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}
.or-sep::before, .or-sep::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

.return-hint {
  background: linear-gradient(135deg, #eef4ff, #e2f5ed);
  border: 1px solid #cfe0ff; border-radius: 12px;
  padding: 14px 16px; margin-bottom: 18px;
}
.return-hint b { display: block; font-family: 'Sora', sans-serif; font-size: 14px; color: var(--ink); }
.return-hint span { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }

hr.soft { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.panel label.inline { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin: 12px 0; }
.panel small { display: block; font-size: 11px; color: var(--muted); margin: 6px 0 12px; }

.success { padding: 14px; background: #e6f6ef; color: #16745a; font-size: 13px; border-radius: 10px; border: 1px solid #b8e2cf; margin-bottom: 10px; font-weight: 600; }
.error { padding: 12px 14px; background: #ffefe9; color: #a04227; font-size: 13px; border-radius: 10px; border: 1px solid #f6ccbb; margin-bottom: 10px; font-weight: 600; }

footer {
  background: #0b1e35; color: #a5b7d1;
  padding: 40px max(28px, calc((100% - 1220px)/2));
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  font-size: 13px; flex-wrap: wrap;
}
footer b { color: #fff; font: 800 18px 'Sora', sans-serif; }
footer span { color: #22c7b8 !important; background: none !important; -webkit-text-fill-color: initial; }

.login { display: grid; place-items: center; min-height: 100vh; padding: 30px; background: linear-gradient(135deg, #eaf2ff, #dbeaff); }
.login form { background: #fff; width: min(420px, 100%); padding: 40px; border-radius: 22px; box-shadow: var(--shadow); }
.login h1 { font-size: 26px; margin-bottom: 24px; }
.login .cta { width: 100%; margin-top: 20px; justify-content: center; }

.admin { max-width: 1220px; padding: 60px 28px; margin: auto; }
.admin h1 { font-size: 34px; margin-bottom: 30px; }
.stats, .admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 25px 0; }
.stats b {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.stats strong { display: block; color: var(--ink); font: 800 30px 'Sora', sans-serif; margin-top: 10px; }
.admin-grid { grid-template-columns: 1fr 1fr; }
.panel h2 { font-size: 20px; margin-bottom: 16px; }
.panel .cta { margin-top: 16px; }
.panel form { padding: 0; box-shadow: none; border: 0; background: transparent; }
.panel select, .panel input { margin-bottom: 12px; }
.panel label { display: inline-flex; gap: 6px; align-items: center; font-size: 13px; color: var(--muted); margin: 8px 0; }
.thumbs { display: flex; gap: 10px; overflow: auto; margin-top: 16px; }
.thumbs img { width: 100px; height: 70px; object-fit: cover; border-radius: 8px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 16px; }
td, th { padding: 14px 10px; text-align: left; border-bottom: 1px solid var(--line); color: var(--ink-2); }
th { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.5px; }
.verify { color: var(--blue); font-weight: 700; }

@media (max-width: 960px) {
  nav { display: none; }
  .hero, .offer, .demo, .columns, .admin-grid { grid-template-columns: 1fr; gap: 40px; }
  .features, .gallery, .stats { grid-template-columns: repeat(2, 1fr); }
  .hero, .section, .offer, .demo { padding: 70px 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  footer { flex-direction: column; align-items: flex-start; gap: 18px; }
  .admin { padding: 40px 18px; }
}
@media (max-width: 560px) {
  .features, .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
