:root {
  color-scheme: light;
  --ink: #15161a;
  --muted: #5f6673;
  --line: #e5e8ef;
  --soft: #f5f7fb;
  --paper: #ffffff;
  --blue: #1268f3;
  --blue-dark: #0c42a7;
  --green: #19a974;
  --gold: #f2b84b;
  --coral: #f06f5b;
  --shadow: 0 22px 60px rgba(24, 36, 64, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans Devanagari", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(229, 232, 239, 0.76);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 24px rgba(18, 104, 243, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.68) 100%),
    url("https://images.unsplash.com/photo-1557838923-2985c318be48?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, #fff);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-text,
.section-heading p,
.contact-inner > div > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 30px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg,
.service-card svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(18, 104, 243, 0.26);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3a4250;
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-row svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(390px, 100%);
  padding: 16px;
  border: 10px solid #111318;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 2px 4px 12px;
  font-weight: 800;
}

.cover-art {
  height: 148px;
  border-radius: 20px 20px 8px 8px;
  background:
    radial-gradient(circle at 25% 24%, rgba(242, 184, 75, 0.85) 0 10%, transparent 11%),
    radial-gradient(circle at 76% 34%, rgba(25, 169, 116, 0.6) 0 13%, transparent 14%),
    linear-gradient(135deg, #13233f, #1268f3 52%, #19a974);
}

.profile-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 112px;
  margin-top: -42px;
  padding: 0 12px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.profile-row > div:last-child {
  min-width: 0;
  padding-top: 55px;
}

.profile-row strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.2rem;
  line-height: 1.15;
}

.profile-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0 18px;
}

.stats-grid div,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.stats-grid div {
  padding: 14px 8px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 1.35rem;
}

.stats-grid span,
.dashboard-card p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.dashboard-card {
  padding: 14px;
}

.dashboard-card div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-card p {
  margin: 8px 0 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.growth-bars {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.growth-bars span {
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue) var(--bar), #e3e7ef var(--bar));
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.service-grid,
.results-grid,
.package-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 224px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 31, 51, 0.05);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--blue);
}

.service-card p,
.timeline-item p,
.package p,
.package li,
.result-body p {
  color: var(--muted);
  line-height: 1.65;
}

.results-band {
  background: #111827;
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}

.section-heading.light .eyebrow {
  color: #86efac;
}

.results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.result-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.result-cover {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.cover-one {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.cover-two {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1546182990-dffeafbe841d?auto=format&fit=crop&w=900&q=80");
}

.cover-three {
  background:
    linear-gradient(135deg, rgba(18, 104, 243, 0.95), rgba(25, 169, 116, 0.88)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 28px);
}

.result-body {
  padding: 22px;
}

.pill,
.recommended {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 99px;
  color: var(--blue-dark);
  background: #eaf2ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.result-body h3 {
  margin-top: 16px;
  font-size: 1.55rem;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-stats span {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.process {
  background: var(--soft);
}

.timeline {
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline-item > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.timeline-item p {
  margin-bottom: 0;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.package.featured {
  border-color: rgba(18, 104, 243, 0.35);
  box-shadow: var(--shadow);
}

.recommended {
  margin-bottom: 18px;
  color: #0f5132;
  background: #dff8eb;
}

.package ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding-left: 18px;
}

.package a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.contact-section {
  padding: 86px clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #eaf2ff, #edfff7);
}

.contact-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(18, 104, 243, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #303846;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(18, 104, 243, 0.13);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 70px clamp(20px, 5vw, 72px) 28px;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.footer-founder {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-founder img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 14px 34px rgba(24, 36, 64, 0.18);
}

.footer-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-founder h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.footer-founder p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: clamp(24px, 4vw, 58px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-column h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-bottom a:hover,
.simple-footer a:hover {
  color: var(--blue);
}

.footer-column svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer-bottom a,
.simple-footer a {
  color: var(--blue);
  font-weight: 800;
}

.page-main {
  padding-top: 73px;
}

.page-hero {
  padding: 96px clamp(20px, 5vw, 72px) 60px;
  background: linear-gradient(135deg, #eaf2ff, #edfff7);
}

.page-hero > * {
  width: min(860px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.page-section {
  padding: 76px clamp(20px, 5vw, 72px);
}

.split-section {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.founder-photo-large {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-section p,
.legal-content p,
.card-list p {
  color: var(--muted);
  line-height: 1.72;
}

.card-list {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 31, 51, 0.05);
}

.card-list svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
}

.legal-page {
  background: var(--soft);
}

.legal-content {
  width: min(860px, calc(100% - 40px));
  margin: 56px auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 31, 51, 0.05);
}

.legal-content h2 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.standalone-contact {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 800;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-points svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.simple-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.simple-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 73px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--soft);
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 56px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.78)),
      url("https://images.unsplash.com/photo-1557838923-2985c318be48?auto=format&fit=crop&w=1200&q=80") center/cover;
  }

  .hero-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .split-section {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    justify-content: center;
  }

  .service-grid,
  .results-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 2.85rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }

  .hero-text,
  .section-heading p,
  .contact-inner > div > p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
  }

  .trust-row span {
    width: 100%;
  }

  .service-grid,
  .results-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: min(100%, 370px);
    padding: 12px;
    border-width: 8px;
    border-radius: 28px;
  }

  .cover-art {
    height: 128px;
    border-radius: 17px 17px 8px 8px;
  }

  .profile-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    min-height: 104px;
    margin-top: -38px;
    padding: 0 8px;
  }

  .avatar {
    width: 78px;
    height: 78px;
    border-width: 4px;
  }

  .profile-row > div:last-child {
    padding-top: 50px;
  }

  .profile-row strong {
    font-size: 1.05rem;
  }

  .profile-row p {
    font-size: 0.93rem;
  }

  .stats-grid {
    gap: 7px;
  }

  .stats-grid div {
    padding: 12px 6px;
  }

  .stats-grid strong {
    font-size: 1.18rem;
  }

  .stats-grid span {
    font-size: 0.76rem;
  }

  .section,
  .contact-section {
    padding: 64px 18px;
  }

  .service-card,
  .package,
  .contact-form {
    padding: 22px;
  }

  .site-footer {
    padding: 56px 18px 24px;
  }

  .footer-founder {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .footer-founder img {
    width: 78px;
    height: 78px;
  }

  .footer-links,
  .card-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 82px 18px 46px;
  }

  .page-section {
    padding: 56px 18px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .legal-content {
    width: calc(100% - 36px);
    margin: 36px auto;
    padding: 24px;
  }

  .card-list article {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .phone-shell {
    border-width: 6px;
    padding: 10px;
  }

  .profile-row {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 98px;
  }

  .avatar {
    width: 70px;
    height: 70px;
    font-size: 0.92rem;
  }

  .profile-row > div:last-child {
    padding-top: 47px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
