@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #0b4dba;
  --blue-dark: #062a70;
  --blue-deep: #081a3b;
  --blue-soft: #eaf2ff;
  --blue-soft-2: #f4f8ff;
  --ink: #11223d;
  --ink-soft: #53637b;
  --line: #dce6f4;
  --line-strong: #c8d7ec;
  --white: #ffffff;
  --off-white: #fafaf7;
  --paper: #f6f8fc;
  --shadow-sm: 0 12px 32px rgba(16, 45, 101, 0.08);
  --shadow-md: 0 22px 64px rgba(11, 77, 186, 0.16);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1180px;
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--off-white);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(11, 77, 186, 0.34);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 230, 244, 0.85);
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--blue-deep);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, #1767df, var(--blue-dark));
  box-shadow: 0 10px 20px rgba(11, 77, 186, 0.2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-name {
  line-height: 1;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--blue-dark);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.nav-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-soft-2);
}

.nav-cta {
  display: none;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(11, 77, 186, 0.2);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #091d46;
}

.hero-backdrop,
.hero-backdrop::before,
.hero-backdrop::after {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -2;
  background:
    linear-gradient(102deg, rgba(6, 26, 64, 0.98) 0%, rgba(7, 34, 86, 0.91) 41%, rgba(8, 38, 96, 0.62) 74%, rgba(3, 15, 44, 0.68) 100%),
    url("rajwada-indore.jpg") center / cover no-repeat;
}

.hero-backdrop::before {
  content: "";
  z-index: 1;
  opacity: 0.58;
  background:
    radial-gradient(circle at 12% 14%, rgba(79, 154, 255, 0.28), transparent 35%),
    radial-gradient(circle at 84% 76%, rgba(38, 115, 229, 0.32), transparent 30%);
}

.hero-backdrop::after {
  content: "";
  z-index: 2;
  background: linear-gradient(180deg, rgba(4, 21, 55, 0.12), rgba(4, 16, 42, 0.42));
}

.hero-grid {
  min-height: 760px;
  display: grid;
  align-content: center;
  gap: 48px;
  padding: 58px 0 64px;
}

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

.launch-badge,
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.launch-badge {
  margin-bottom: 20px;
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.launch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9d0ff;
  box-shadow: 0 0 0 5px rgba(169, 208, 255, 0.13);
}

.eyebrow.on-dark {
  border-color: rgba(255, 255, 255, 0.16);
  color: #d9ebff;
  background: rgba(255, 255, 255, 0.1);
}

.eyebrow.mini {
  padding: 6px 9px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 9px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.05em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 11vw, 76px);
  font-weight: 800;
}

h1 span {
  color: #b9d6ff;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: clamp(31px, 7vw, 56px);
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 13px 26px rgba(2, 24, 69, 0.28);
}

.btn-primary:hover {
  background: #0a429f;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-light {
  color: var(--blue-dark);
  background: var(--white);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.hero-location svg {
  width: 18px;
  height: 18px;
  fill: #b9d6ff;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.74;
}

.orb-one {
  top: 5%;
  right: 3%;
  width: 190px;
  height: 190px;
  background: rgba(92, 159, 255, 0.54);
}

.orb-two {
  bottom: 8%;
  left: 1%;
  width: 160px;
  height: 160px;
  background: rgba(19, 91, 215, 0.58);
}

.phone-preview {
  position: relative;
  z-index: 2;
  width: min(310px, 88vw);
  padding: 11px;
  border: 9px solid #061431;
  border-radius: 38px;
  background: #061431;
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.4);
  transform: rotate(1.5deg);
}

.phone-notch {
  width: 98px;
  height: 21px;
  margin: -11px auto 2px;
  border-radius: 0 0 16px 16px;
  background: #061431;
}

.phone-content {
  min-height: 493px;
  padding: 17px 15px;
  border-radius: 27px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(113, 171, 255, 0.25), transparent 36%),
    linear-gradient(180deg, #fdfefe 0%, #eff5ff 100%);
}

.phone-top-row,
.mini-brand,
.dashboard-top,
.dashboard-status,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  justify-content: flex-start;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 12px;
  letter-spacing: -0.03em;
}

.mini-brand span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.coming-chip {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--blue);
  background: #dfeeff;
  font-size: 9px;
  font-weight: 800;
}

.phone-welcome {
  padding: 24px 0 18px;
}

.tiny-label {
  display: block;
  margin-bottom: 7px;
  color: #7487a4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.phone-welcome strong {
  color: var(--blue-deep);
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1.07;
}

.request-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #1864d7);
  box-shadow: 0 16px 28px rgba(11, 77, 186, 0.21);
}

.request-card-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.17);
}

.request-card svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.request-card span,
.request-card strong {
  display: block;
}

.request-card span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 9px;
}

.request-card strong {
  font-size: 11px;
}

.journey-list {
  display: grid;
  gap: 13px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 10px;
  align-items: center;
}

.journey-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 9px;
  width: 2px;
  height: 16px;
  background: #dbe6f5;
}

.journey-dot {
  width: 18px;
  height: 18px;
  display: block;
  border: 4px solid #d7e4f8;
  border-radius: 50%;
  background: var(--white);
}

.journey-list .is-current .journey-dot {
  border-color: #a9cdfd;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 77, 186, 0.1);
}

.journey-list strong,
.journey-list small {
  display: block;
}

.journey-list strong {
  color: #1a3158;
  font-size: 11px;
}

.journey-list small {
  margin-top: 1px;
  color: #7789a5;
  font-size: 9px;
}

.journey-list em {
  color: #98a9c2;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.phone-bottom-card {
  padding: 13px;
  border: 1px solid #dce8f7;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.76);
}

.phone-bottom-card span,
.phone-bottom-card strong {
  display: block;
}

.phone-bottom-card span {
  color: #7789a5;
  font-size: 9px;
}

.phone-bottom-card strong {
  margin-top: 2px;
  color: var(--blue-dark);
  font-size: 11px;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: var(--white);
  background: rgba(8, 30, 75, 0.58);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.floating-note small,
.floating-note strong {
  display: block;
}

.floating-note small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
}

.floating-note strong {
  font-size: 10px;
}

.note-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.16);
}

.note-icon svg {
  width: 15px;
  height: 15px;
  fill: #b9d6ff;
}

.note-top {
  top: 9%;
  left: -2px;
}

.note-bottom {
  right: 0;
  bottom: 9%;
}

.trust-section {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  gap: 0;
  padding: 10px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 2px;
}

.trust-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.trust-icon,
.choice-icon,
.process-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-soft);
}

.trust-icon svg,
.process-icon svg,
.choice-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--blue-deep);
  font-size: 13px;
}

.trust-item span {
  margin-top: 1px;
  color: var(--ink-soft);
  font-size: 11px;
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 16px;
}

.process-section {
  background: var(--off-white);
}

.process-grid {
  display: grid;
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 80px;
  background: rgba(234, 242, 255, 0.82);
}

.step-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
  color: rgba(11, 77, 186, 0.18);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-soft);
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 18px;
}

.process-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.student-section {
  background: #eff5ff;
}

.student-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.student-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.student-list > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.list-check {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 5px 12px rgba(11, 77, 186, 0.12);
}

.list-check svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.student-list strong,
.student-list small {
  display: block;
}

.student-list strong {
  color: var(--blue-deep);
  font-size: 14px;
}

.student-list small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.student-panel {
  max-width: 470px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid #cfddf0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(80, 153, 255, 0.2), transparent 38%),
    #ffffff;
  box-shadow: var(--shadow-md);
}

.student-panel-head {
  margin-bottom: 20px;
}

.student-panel-head h3 {
  color: var(--blue-deep);
  font-size: 24px;
}

.dashboard-mock {
  padding: 19px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(140deg, #0a398b, #1261d4);
  box-shadow: 0 17px 30px rgba(11, 77, 186, 0.22);
}

.dashboard-top {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 10px;
}

.dashboard-top small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.dashboard-title {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dashboard-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 10px;
}

.progress-track {
  width: 100%;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.progress-track span {
  width: 42%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #c9e0ff;
}

.dashboard-status {
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.dashboard-status div {
  min-width: 0;
}

.dashboard-status small,
.dashboard-status strong {
  display: block;
}

.dashboard-status small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
}

.dashboard-status strong {
  margin-top: 3px;
  font-size: 11px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.quick-grid article {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--blue-soft-2);
}

.quick-grid span,
.quick-grid strong,
.quick-grid small {
  display: block;
}

.quick-grid span {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.quick-grid strong {
  color: var(--blue-deep);
  font-size: 12px;
}

.quick-grid small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 9px;
}

.writer-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(105, 171, 255, 0.31), transparent 28%),
    linear-gradient(135deg, #061a41, #0b4dba);
}

.writer-section h2,
.writer-section p {
  color: var(--white);
}

.writer-copy p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.writer-layout {
  display: grid;
  gap: 35px;
  align-items: center;
}

.writer-points {
  display: grid;
  gap: 12px;
}

.writer-points article {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.writer-points span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #bcd9ff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.writer-points h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.writer-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.indore-band {
  position: relative;
  min-height: 300px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: url("rajwada-indore.jpg") center / cover no-repeat;
}

.indore-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(3, 27, 76, 0.94), rgba(11, 77, 186, 0.75));
}

.indore-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.indore-content .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.indore-content h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.indore-content p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: 16px;
}

.contact-choice {
  background: var(--off-white);
}

.contact-choice-grid {
  display: grid;
  gap: 16px;
}

.contact-choice-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.support-card {
  background: var(--white);
}

.sales-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 171, 255, 0.21), transparent 38%),
    #eaf2ff;
}

.choice-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--blue);
  background: var(--blue-soft);
}

.contact-choice-card h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 22px;
}

.contact-choice-card p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.update-section {
  background: #e9f1fc;
}

.updates-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}

.update-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 16px;
}

.consent-copy {
  max-width: 520px;
  margin-top: 22px;
  font-size: 12px !important;
}

.update-form {
  display: grid;
  gap: 14px;
  padding: 21px;
  border: 1px solid #d4e0f0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.update-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.optional-label {
  color: #8998ad;
  font-size: 10px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #94a2b4;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 77, 186, 0.11);
}

textarea {
  min-height: 105px;
  resize: vertical;
}

.form-note {
  min-height: 19px;
  margin: -2px 0 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.faq-section {
  background: var(--off-white);
}

.faq-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 7px 17px rgba(16, 45, 101, 0.04);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 17px 17px;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  padding: 54px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  background: #061630;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 15px;
  color: var(--white);
}

.site-footer p {
  max-width: 340px;
  margin-bottom: 15px;
  font-size: 13px;
}

.footer-city {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #b8d7ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 600;
}

.site-footer a:not(.brand):hover {
  color: #b8d7ff;
}

.footer-bottom {
  gap: 12px;
  margin-top: 38px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0 !important;
  font-size: 11px !important;
}

/* Support, Sales, Contact, Privacy and Terms shared pages */
.page-main {
  min-height: calc(100vh - 72px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 62px;
  background:
    linear-gradient(110deg, rgba(237, 245, 255, 0.97), rgba(255, 255, 255, 0.91)),
    url("rajwada-indore.jpg") center / cover no-repeat;
}

.page-hero.subpage-hero {
  background:
    linear-gradient(110deg, rgba(237, 245, 255, 0.97), rgba(255, 255, 255, 0.91)),
    url("../rajwada-indore.jpg") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -85px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(11, 77, 186, 0.09);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 13px;
  color: var(--blue-deep);
  font-size: clamp(38px, 9vw, 64px);
}

.page-hero h1 span {
  color: var(--blue);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.policy-layout,
.detail-layout {
  padding: 42px 0 76px;
}

.policy-card,
.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.policy-card {
  padding: 24px;
}

.policy-card h2 {
  margin: 28px 0 9px;
  color: var(--blue-deep);
  font-size: 24px;
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--ink-soft);
  font-size: 14px;
}

.policy-card ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0 19px;
  padding: 0;
}

.policy-card a {
  color: var(--blue);
  font-weight: 800;
}

.last-updated {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 11px !important;
  font-weight: 800;
}

.contact-page-grid,
.detail-card-grid {
  display: grid;
  gap: 14px;
}

.contact-page-card,
.detail-mini-card {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-soft-2);
}

.contact-page-card span,
.detail-mini-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.contact-page-card a,
.contact-page-card strong,
.detail-mini-card strong {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  gap: 18px;
}

.detail-card {
  padding: 22px;
}

.detail-card h2 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 25px;
}

.detail-card > p {
  color: var(--ink-soft);
  font-size: 14px;
}

.category-grid {
  display: grid;
  gap: 12px;
  margin-top: 21px;
}

.category-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.category-card .category-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

.category-card h3 {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 15px;
}

.category-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.detail-email-card {
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, #082b70, #0b4dba);
  box-shadow: var(--shadow-md);
}

.detail-email-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 25px;
}

.detail-email-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.detail-email-card a {
  margin-top: 17px;
}

.detail-note {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 12px;
}

.contact-directory {
  display: grid;
  gap: 15px;
}

.contact-directory-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-directory-card .choice-icon {
  margin-bottom: 14px;
}

.contact-directory-card h2 {
  margin-bottom: 7px;
  font-size: 23px;
}

.contact-directory-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-directory-card .text-link {
  margin-top: 7px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 185px;
  }

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

  .contact-choice-grid,
  .contact-directory,
  .contact-page-grid,
  .detail-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 56px));
  }

  .site-header {
    background: rgba(250, 250, 247, 0.9);
  }

  .nav {
    min-height: 78px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 3px;
    width: auto;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 12px;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: 30px;
    padding: 72px 0;
  }

  .hero-visual {
    min-height: 600px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 4px 0;
  }

  .trust-item {
    padding: 20px 18px;
  }

  .trust-item:not(:last-child) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .section {
    padding: 98px 0;
  }

  .student-layout,
  .writer-layout,
  .updates-layout,
  .faq-layout {
    grid-template-columns: 1fr 1fr;
    gap: 62px;
  }

  .student-layout > *,
  .writer-layout > *,
  .updates-layout > *,
  .faq-layout > * {
    min-width: 0;
  }

  .writer-copy {
    padding-right: 15px;
  }

  .faq-layout .section-heading {
    margin-bottom: 0;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.72fr);
    align-items: start;
  }

  .detail-layout .detail-card:first-child {
    grid-row: span 2;
  }

  .policy-card {
    padding: 36px;
  }

  .page-hero {
    padding: 105px 0 82px;
  }
}

@media (min-width: 1040px) {
  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 76px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-card {
    min-height: 270px;
    padding: 26px;
  }

  .contact-choice-grid {
    gap: 22px;
  }

  .contact-choice-card {
    padding: 33px;
  }

  .update-form {
    padding: 28px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero-grid {
    min-height: 720px;
    padding: 45px 0 48px;
  }

  .phone-preview {
    width: min(287px, 88vw);
  }

  .floating-note {
    transform: scale(0.93);
  }

  .note-top {
    left: -8px;
  }

  .note-bottom {
    right: -5px;
  }

  .section {
    padding: 58px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

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