:root {
  --blue: #123a6f;
  --blue-dark: #08264d;
  --blue-soft: #eaf1fb;
  --saffron: #f59e0b;
  --saffron-soft: #fff3d6;
  --green: #15803d;
  --green-soft: #e9f8ef;
  --ink: #152033;
  --muted: #5d6a7d;
  --line: #dbe3ef;
  --white: #ffffff;
  --bg: #f8fbff;
  --shadow: 0 20px 60px rgba(18, 58, 111, 0.12);
  --radius: 22px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 82px 0;
  scroll-margin-top: var(--header-height);
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fd 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 255, 0.88);
  border-bottom: 1px solid rgba(219, 227, 239, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, #1c5d9d 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 58, 111, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 999px;
  color: #33445f;
  font-size: 0.95rem;
  font-weight: 650;
  padding: 10px 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue);
  transform: translateY(-1px);
}

.make-logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.make-logo-header {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  grid-area: 1 / 1;
  background: var(--blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at top left, #fff4dc 0%, transparent 30%),
    radial-gradient(circle at bottom right, #e9f8ef 0%, transparent 34%),
    var(--bg);
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.hero-bg::before {
  width: 330px;
  height: 330px;
  right: -120px;
  top: 90px;
  border: 44px solid rgba(18, 58, 111, 0.07);
}

.hero-bg::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: 70px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(21, 128, 61, 0.12));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 56px;
  padding: 46px 0;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.55rem, 8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-brand-title {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: var(--blue-dark);
  font-size: clamp(3.15rem, 9vw, 6.75rem);
  line-height: 0.9;
  font-weight: 900;
}

.hero-brand-title::after {
  position: absolute;
  content: "";
  left: 0.08em;
  right: 0.08em;
  bottom: -0.13em;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  opacity: 0.85;
}

.hero-brand-tagline {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--blue);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 850;
  line-height: 1.04;
}

h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-text,
.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.4vw, 1.22rem);
}

.india-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.make-logo-badge {
  max-width: 108px;
  max-height: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-india {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 850;
}

.hero-copy > .hero-india:first-child {
  margin: 0 0 18px;
}

.hero-india span {
  position: relative;
  padding-left: 15px;
}

.hero-india span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--saffron), var(--green));
  transform: translateY(-50%);
}

.make-logo-hero {
  max-width: 214px;
  max-height: 74px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(18, 58, 111, 0.24);
}

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

.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--blue);
}

.btn-secondary:hover {
  box-shadow: var(--shadow);
}

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

.phone-mockup,
.mini-phone {
  position: relative;
  border: 10px solid #0b1930;
  border-radius: 36px;
  background: #0b1930;
  box-shadow: 0 26px 70px rgba(8, 38, 77, 0.24);
}

.phone-mockup {
  width: min(330px, 82vw);
  aspect-ratio: 9 / 18.2;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 80px;
  height: 7px;
  border-radius: 999px;
  background: #24344d;
  transform: translateX(-50%);
}

.camera-ui {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #dcecff;
}

.camera-sky {
  height: 52%;
  background: linear-gradient(180deg, #b9d8ff, #edf6ff);
}

.camera-ground {
  position: absolute;
  inset: 46% 0 0;
  background: linear-gradient(135deg, #e8f3e5, #bdddbb);
  clip-path: polygon(0 38%, 35% 17%, 62% 34%, 100% 8%, 100% 100%, 0 100%);
}

.pin-card,
.stamp-card {
  position: absolute;
  left: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(8, 38, 77, 0.12);
}

.pin-card {
  top: 76px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 12px;
}

.pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.18);
}

.stamp-card {
  bottom: 88px;
  display: grid;
  gap: 3px;
  color: #33445f;
  font-size: 0.78rem;
  padding: 14px;
}

.stamp-card strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.capture-button {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--saffron);
  transform: translateX(-50%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.app-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 44px);
}

.badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  background: var(--saffron-soft);
  color: #8a5200;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 7px 12px;
}

.app-content h3 {
  margin-top: 18px;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}

.app-content p {
  margin: 16px 0 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
  color: #33445f;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 12px 12px 36px;
}

.feature-list span::before {
  position: absolute;
  content: "";
  left: 14px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.app-illustration {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--blue-soft), #ffffff 58%, var(--green-soft));
}

.mini-phone {
  z-index: 2;
  width: 190px;
  height: 330px;
  border-width: 8px;
  border-radius: 30px;
  overflow: hidden;
}

.mini-map {
  height: 100%;
  background: linear-gradient(135deg, #d6e8ff, #f9fbff);
}

.mini-map::before,
.mini-map::after {
  position: absolute;
  content: "";
  background: rgba(18, 58, 111, 0.16);
}

.mini-map::before {
  width: 210px;
  height: 46px;
  top: 80px;
  left: -18px;
  transform: rotate(-22deg);
}

.mini-map::after {
  width: 46px;
  height: 330px;
  top: -20px;
  left: 82px;
  transform: rotate(16deg);
}

.mini-lens {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 78px;
  height: 78px;
  border: 10px solid var(--blue);
  border-radius: 50%;
  background: var(--saffron);
  transform: translateX(-50%);
  box-shadow: 0 0 0 12px rgba(18, 58, 111, 0.08);
}

.mini-data {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 20px;
  display: grid;
  gap: 9px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px;
}

.mini-data span {
  height: 9px;
  border-radius: 999px;
  background: #adc0d8;
}

.mini-data span:first-child {
  width: 82%;
  background: var(--blue);
}

.mini-data span:last-child {
  width: 64%;
}

.orbit {
  position: absolute;
  border-radius: 50%;
}

.orbit.one {
  width: 110px;
  height: 110px;
  top: 38px;
  right: 42px;
  background: rgba(245, 158, 11, 0.2);
}

.orbit.two {
  width: 84px;
  height: 84px;
  left: 48px;
  bottom: 54px;
  background: rgba(21, 128, 61, 0.18);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.contact-card,
.form-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(18, 58, 111, 0.08);
}

.info-card {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 20px;
}

.icon-badge.saffron {
  background: var(--saffron-soft);
  color: #9a5c00;
}

.icon-badge.green {
  background: var(--green-soft);
  color: var(--green);
}

.info-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 22px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 32px);
}

.form-card label {
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-card textarea {
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 58, 111, 0.1);
}

.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.74);
  padding: 52px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 14px 0 0;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 9px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-india {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.make-logo-footer {
  max-width: 88px;
  max-height: 30px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.page-hero {
  padding: 72px 0 42px;
  background: radial-gradient(circle at top right, var(--saffron-soft), transparent 38%),
    radial-gradient(circle at bottom left, var(--green-soft), transparent 34%),
    var(--bg);
}

.page-hero .lead {
  max-width: 760px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 16px;
}

.policy-nav a {
  border-radius: 12px;
  color: #42516a;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 10px;
}

.policy-nav a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.policy-card {
  padding: clamp(22px, 4vw, 38px);
}

.policy-card section + section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  padding-left: 20px;
}

.statement {
  border-left: 4px solid var(--saffron);
  border-radius: 14px;
  background: var(--saffron-soft);
  color: var(--blue-dark);
  font-weight: 700;
  padding: 18px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(18, 58, 111, 0.08);
  padding: 24px;
}

.method-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.method-card a {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .make-logo-header {
    display: none;
  }

  .hero-grid,
  .app-card,
  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    text-align: left;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-nav {
    position: static;
  }

  .policy-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 34px 0 58px;
  }

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

  .hero-india {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    font-size: 1rem;
  }

  .make-logo-hero {
    max-width: 162px;
    max-height: 56px;
  }

  .india-badge {
    align-items: flex-start;
    gap: 10px;
  }

  .make-logo-badge {
    max-width: 96px;
    max-height: 34px;
  }

  .phone-mockup {
    width: min(285px, 78vw);
  }

  .feature-list,
  .cards-grid,
  .contact-methods,
  .footer-grid,
  .policy-nav {
    grid-template-columns: 1fr;
  }

  .app-illustration {
    min-height: 320px;
  }

  .mini-phone {
    width: 160px;
    height: 280px;
  }

  .footer-grid {
    gap: 26px;
  }
}
