:root {
  --bg: #eaf2fb;
  --surface: #f4f8fd;
  --surface-solid: #ffffff;
  --text: #0e1a2b;
  --text-inverse: #f7fbff;
  --muted: #5b6b81;
  --border: rgba(25, 53, 91, 0.14);
  --accent: #0e7490;
  --accent-2: #1387a6;
  --accent-hover: #0b5f77;
  --accent-soft: rgba(14, 116, 144, 0.12);
  --accent-soft-strong: rgba(14, 116, 144, 0.18);
  --ring: rgba(14, 116, 144, 0.28);
  --shadow-soft: 0 12px 28px rgba(17, 30, 56, 0.1);
  --shadow-sticky: 0 14px 36px rgba(14, 24, 44, 0.16);
  --theme-soft-1: #e4f0fb;
  --theme-soft-2: #e8f2fb;
  --theme-soft-3: #f1f6fc;
  --text-strong: #0e1a2b;
  --text-soft: rgba(39, 58, 89, 0.84);
  --text-kicker: rgba(12, 104, 126, 0.9);
  --section-grad: linear-gradient(145deg, var(--theme-soft-1) 0%, var(--theme-soft-2) 56%, var(--theme-soft-3) 100%);
  --section-grad-alt: linear-gradient(145deg, #e7f1fa 0%, #edf5fc 56%, #f5f9fd 100%);
  --card-border: rgba(14, 116, 144, 0.16);
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 251, 255, 0.72) 100%),
    rgba(230, 239, 249, 0.86);
  --card-shadow: 0 14px 32px rgba(17, 30, 56, 0.09);
  --bg-radial: #dcebf8;
  --bg-grad-end: #f7fafe;
  --cursor-main: rgba(11, 102, 124, 0.95);
  --cursor-ring: rgba(14, 116, 144, 0.45);
  --cursor-hover-ring: rgba(14, 116, 144, 0.68);
  --header-border: rgba(14, 116, 144, 0.12);
  --header-border-strong: rgba(14, 116, 144, 0.18);
  --panel-border: rgba(14, 116, 144, 0.14);
  --panel-bg: rgba(255, 255, 255, 0.58);
  --panel-bg-strong: rgba(255, 255, 255, 0.78);
  --panel-shadow: 0 28px 46px rgba(18, 37, 74, 0.1);
  --section-orb-border: rgba(14, 116, 144, 0.24);
  --section-dot: #0e7490;
  --section-glow-1: rgba(14, 116, 144, 0.16);
  --section-glow-2: rgba(9, 89, 142, 0.12);
  --surface-accent: rgba(14, 116, 144, 0.08);
  --surface-accent-strong: rgba(14, 116, 144, 0.14);
  --surface-glass: rgba(255, 255, 255, 0.74);
  --surface-glass-strong: rgba(255, 255, 255, 0.88);
  --cta-shadow: 0 12px 20px rgba(14, 90, 123, 0.26);
  --cta-shadow-hover: 0 14px 24px rgba(12, 71, 103, 0.32);
  --button-bg: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  --button-bg-hover: linear-gradient(135deg, #1d95b3 0%, var(--accent-hover) 100%);
  --button-border: rgba(14, 116, 144, 0.3);
  --button-text: var(--surface-solid);
  --button-shadow: 0 16px 28px rgba(13, 91, 117, 0.28);
  --button-shadow-hover: 0 20px 34px rgba(13, 91, 117, 0.36);
  --button-shadow-active: 0 10px 18px rgba(13, 91, 117, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, var(--bg-radial) 0%, transparent 44%),
    linear-gradient(180deg, var(--theme-soft-3) 0%, var(--bg-grad-end) 100%);
  min-height: 100vh;
  overflow-x: clip;
  overflow-x: hidden;
}

:where(img, picture, svg, video, canvas, iframe) {
  display: block;
  max-width: 100%;
}

:where(p, h1, h2, h3, a, span) {
  overflow-wrap: anywhere;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3000;
}

.cursor-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cursor-main);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--cursor-ring);
  background: radial-gradient(circle, rgba(14, 116, 144, 0.14) 0%, rgba(14, 116, 144, 0.04) 68%, transparent 100%);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

body.cursor-visible .cursor-dot,
body.cursor-visible .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--cursor-hover-ring);
  background: radial-gradient(circle, rgba(14, 116, 144, 0.2) 0%, rgba(14, 116, 144, 0.08) 70%, transparent 100%);
}

body.cursor-pressed .cursor-ring {
  width: 32px;
  height: 32px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

:where(button, input[type="button"], input[type="submit"], input[type="reset"], a[class*="btn"], .talk-btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.86rem 1.6rem;
  border-radius: 0.92rem;
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--button-text);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: var(--button-shadow);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    filter 180ms ease;
}

:where(button, input[type="button"], input[type="submit"], input[type="reset"], a[class*="btn"], .talk-btn):hover {
  transform: translateY(-2px);
  background: var(--button-bg-hover);
  filter: saturate(1.04);
  box-shadow: var(--button-shadow-hover);
}

:where(button, input[type="button"], input[type="submit"], input[type="reset"], a[class*="btn"], .talk-btn):active {
  transform: translateY(0);
  filter: saturate(0.98);
  box-shadow: var(--button-shadow-active);
}

:where(button, input[type="button"], input[type="submit"], input[type="reset"], a[class*="btn"], .talk-btn):focus-visible {
  outline: 3px solid rgba(14, 143, 176, 0.34);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--section-grad);
  border-bottom: 1px solid var(--header-border);
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(17, 30, 56, 0.12);
  border-bottom-color: var(--header-border-strong);
  background: var(--section-grad-alt);
}


.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: fit-content;
  margin: 0 auto;
  min-height: 44px;
  padding: 0.4rem 0.2rem;
}

.brand-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42rem;
  padding: 0.25rem 0;
}

.brand-raajje {
  font-size: clamp(1.2rem, 0.98rem + 0.6vw, 1.65rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  transition: color 220ms ease;
}

.brand-design {
  font-size: clamp(0.98rem, 0.88rem + 0.3vw, 1.14rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 220ms ease;
}

.brand:hover .brand-raajje {
  color: var(--accent-hover);
}

.brand:hover .brand-design {
  color: var(--accent-2);
}


.intro-hero {
  position: relative;
  background: var(--section-grad);
  background-size: 180% 180%;
  overflow: hidden;
  --dots-scale: 1;
  --parallax-x: 0;
  --parallax-y: 0;
  animation: heroGradientShift 18s ease-in-out infinite;
}

.intro-hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -92px;
  left: 19%;
  border-radius: 50%;
  border: 1px solid var(--section-orb-border);
  animation: orbFloat 11s ease-in-out infinite;
}

.intro-hero::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 130px;
  right: 14%;
  top: 19%;
  opacity: 0.2;
  background-image: radial-gradient(var(--section-dot) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  animation: dotsDrift 14s ease-in-out infinite;
}

.intro-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(1.2rem, 2.1vw, 2.4rem);
  align-items: center;
  padding-top: clamp(5rem, 8vw, 7.25rem);
  padding-bottom: clamp(5.25rem, 9vw, 8rem);
}

.intro-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
  padding: clamp(1.35rem, 1.2vw + 1rem, 2.1rem) clamp(1.2rem, 1.2vw + 1rem, 2rem);
  border: 1px solid var(--panel-border);
  border-radius: 1.1rem;
  background: var(--panel-bg);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: var(--panel-shadow);
  transform: translate3d(
    calc(var(--parallax-x) * 16px),
    calc(var(--parallax-y) * 12px),
    0
  );
  will-change: transform;
  animation: panelReveal 680ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.intro-kicker {
  margin: 0 0 1rem;
  letter-spacing: 0.28em;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text-kicker);
  animation: textLift 640ms ease both;
  animation-delay: 140ms;
}

.intro-title {
  margin: 0;
  max-width: 620px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 1.35rem + 2.7vw, 4.25rem);
  line-height: 1.14;
  letter-spacing: -0.024em;
  font-weight: 800;
  color: var(--text-strong);
  animation: textLift 720ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
  animation-delay: 260ms;
}

.intro-lead {
  margin: 1.1rem 0 0;
  max-width: 600px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.12rem);
  line-height: 1.72;
  color: var(--text-soft);
  animation: textLift 760ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
  animation-delay: 320ms;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  margin-top: 1.4rem;
  animation: textLift 820ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
  animation-delay: 400ms;
}

.intro-btn {
  white-space: nowrap;
}

.intro-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.86rem 1.2rem;
  border-radius: 0.92rem;
  border: 1px solid var(--surface-accent-strong);
  background: var(--surface-glass);
  color: var(--text-strong);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(17, 30, 56, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.intro-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--button-border);
  background: var(--surface-glass-strong);
  box-shadow: 0 16px 28px rgba(17, 30, 56, 0.12);
}

.intro-title-line {
  display: block;
}

.intro-title-line + .intro-title-line {
  margin-top: 0.1em;
}

.intro-title-line:nth-child(2) {
  color: var(--accent);
  padding-left: 1.6em;
}

.intro-title-line:nth-child(3) {
  padding-left: 3.2em;
}

.intro-sidebox {
  justify-self: start;
  align-self: center;
  width: min(100%, 320px);
  min-height: 0;
  padding: 1rem 1.15rem 1.15rem;
  border-radius: 1.25rem;
  border: 1px solid var(--surface-accent-strong);
  background:
    radial-gradient(circle at 82% 12%, rgba(14, 143, 176, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(11, 108, 133, 0.96) 0%, rgba(14, 116, 144, 0.84) 54%, rgba(255, 255, 255, 0.97) 54%, rgba(245, 249, 255, 0.95) 100%);
  box-shadow:
    0 18px 34px rgba(18, 37, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.4rem;
  animation: textLift 720ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
  animation-delay: 340ms;
  position: relative;
  overflow: hidden;
}

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

.intro-sidebox::before {
  width: 138px;
  height: 138px;
  right: -62px;
  bottom: -62px;
  border: 1px solid rgba(14, 116, 144, 0.1);
}

.intro-sidebox::after {
  width: 84px;
  height: 84px;
  left: -36px;
  top: -36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-sidebox-label {
  margin-top: 0.05rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-inverse);
}

.intro-sidebox-year {
  margin-top: 0.05rem;
  margin-bottom: 1.9rem;
  font-size: clamp(2.6rem, 2rem + 1.7vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--text-inverse);
  text-shadow: 0 10px 22px rgba(5, 48, 63, 0.22);
}

.intro-sidebox-note {
  margin-top: 0;
  max-width: 210px;
  font-size: 0.8rem;
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  color: var(--text-strong);
}

.trust-strip {
  padding: 1.15rem 0 2rem;
  background: var(--section-grad);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.95rem;
}

.trust-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 251, 255, 0.72) 100%),
    rgba(231, 240, 249, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 24px rgba(17, 30, 56, 0.08);
  text-align: center;
}

.trust-pill strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}

.trust-pill span {
  display: block;
  margin-top: 0.48rem;
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--text-soft);
}

.services-showcase {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, var(--section-glow-1) 0%, transparent 42%),
    var(--section-grad);
  padding: clamp(4.6rem, 8vw, 7rem) 0 clamp(5rem, 8.5vw, 7.5rem);
  overflow: hidden;
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 88%, var(--section-glow-1), transparent 42%),
    radial-gradient(circle at 88% 20%, var(--section-glow-2), transparent 40%);
}

.services-inner {
  text-align: center;
}

.services-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--text-kicker);
}

.services-title {
  margin: 0;
  font-size: clamp(2rem, 1.35rem + 2.25vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-strong);
}

.services-subtitle {
  margin: 1.15rem auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-soft);
}

.services-grid {
  margin-top: clamp(2.2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.35rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
  min-height: 100%;
  padding: 1.8rem 1.55rem 1.45rem;
  border-radius: 1.2rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    var(--card-shadow);
  transition:
    transform 260ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease;
  animation: cardRise 680ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.service-card:nth-child(2) {
  animation-delay: 120ms;
}

.service-card:nth-child(3) {
  animation-delay: 220ms;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(14, 116, 144, 0.4);
  box-shadow:
    0 22px 48px rgba(17, 30, 56, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  min-width: 2.7rem;
  height: 2.7rem;
  padding: 0 0.5rem;
  border-radius: 0.7rem;
  border: 1px solid var(--surface-accent-strong);
  background: var(--surface-glass-strong);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-card h3 {
  margin: 1.3rem 0 0;
  font-size: clamp(1.45rem, 1.25rem + 0.44vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.017em;
  color: var(--text-strong);
}

.service-card p {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.service-note {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--surface-accent);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--text-kicker);
}

.why-choose {
  position: relative;
  padding: clamp(4.6rem, 7.4vw, 6.6rem) 0 clamp(5rem, 8.2vw, 7.2rem);
  background:
    radial-gradient(circle at 50% 18%, var(--section-glow-1) 0%, transparent 42%),
    var(--section-grad);
}

.why-inner {
  text-align: center;
}

.why-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--text-kicker);
}

.why-title {
  margin: 0;
  font-size: clamp(1.85rem, 1.25rem + 1.9vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  font-weight: 800;
  color: var(--text-strong);
}

.why-subtitle {
  margin: 1rem auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.14rem);
  line-height: 1.72;
  color: var(--text-soft);
}

.why-grid {
  margin-top: clamp(1.9rem, 3.4vw, 2.9rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.05rem;
}

.why-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
  min-height: 100%;
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    var(--card-shadow);
  transition:
    transform 220ms ease,
    border-color 200ms ease,
    box-shadow 220ms ease;
  animation: whyReveal 520ms ease both;
}

.why-card:nth-child(2) {
  animation-delay: 80ms;
}

.why-card:nth-child(3) {
  animation-delay: 160ms;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 116, 144, 0.34);
  box-shadow:
    0 16px 30px rgba(17, 30, 56, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.why-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--text-strong);
}

.why-card p {
  margin: 0.58rem 0 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--text-soft);
}

.process-flow {
  position: relative;
  padding: clamp(4.4rem, 7vw, 6.2rem) 0 clamp(4.8rem, 7.6vw, 6.6rem);
  background:
    radial-gradient(circle at 14% 16%, var(--section-glow-1), transparent 34%),
    radial-gradient(circle at 86% 80%, var(--section-glow-2), transparent 34%),
    var(--section-grad-alt);
}

.process-inner {
  text-align: center;
}

.process-kicker {
  margin: 0 0 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-kicker);
}

.process-title {
  margin: 0;
  font-size: clamp(1.85rem, 1.26rem + 1.9vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  font-weight: 800;
  color: var(--text-strong);
}

.process-subtitle {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.12rem);
  line-height: 1.72;
  color: var(--text-soft);
}

.process-grid {
  margin-top: clamp(2rem, 3.4vw, 2.9rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.2rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: calc(16.666% + 1.5rem);
  right: calc(16.666% + 1.5rem);
  top: 2rem;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(14, 116, 144, 0.2) 0%, rgba(19, 135, 166, 0.4) 50%, rgba(14, 116, 144, 0.2) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 100%;
  padding: 1.45rem 1.25rem 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid var(--card-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(244, 249, 253, 0.74) 100%),
    rgba(231, 240, 249, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 16px 34px rgba(17, 30, 56, 0.1);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  opacity: 0.9;
}

.process-step:nth-child(2) {
  transform: translateY(1.2rem);
}

.process-step:nth-child(3) {
  transform: translateY(2.4rem);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  min-height: 4rem;
  padding: 0;
  border-radius: 999px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  box-shadow:
    0 10px 20px rgba(14, 90, 123, 0.22),
    0 0 0 1px rgba(14, 116, 144, 0.1);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--surface-solid);
}

.process-step h3 {
  margin: 1.15rem 0 0;
  font-size: 1.2rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}

.process-step p {
  margin: 0.62rem 0 0;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-soft);
}

@keyframes whyReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.talk-area {
  position: relative;
  padding: clamp(4.2rem, 7vw, 6rem) 0 clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 116, 144, 0.12), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(10, 143, 176, 0.12), transparent 36%),
    var(--section-grad-alt);
  overflow: hidden;
}

.talk-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.talk-inner {
  text-align: center;
  max-width: 860px;
  padding: clamp(1.45rem, 2.8vw, 2.2rem);
  border-radius: 1.25rem;
  border: 1px solid var(--card-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(247, 251, 255, 0.62) 100%),
    rgba(230, 240, 250, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 38px rgba(17, 30, 56, 0.1);
}

.talk-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-kicker);
}

.talk-title {
  margin: 0;
  font-size: clamp(1.85rem, 1.28rem + 1.7vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -0.016em;
  font-weight: 800;
  color: var(--text-strong);
}

.talk-subtitle {
  margin: 0.95rem auto 0;
  max-width: 620px;
  font-size: clamp(0.98rem, 0.92rem + 0.2vw, 1.08rem);
  line-height: 1.68;
  color: var(--text-soft);
}

.talk-btn {
  margin-top: 1.5rem;
  white-space: nowrap;
}

.talk-note {
  margin: 0.95rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-kicker);
}

@media (min-width: 1024px) {
  .talk-popup {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 260ms ease,
      visibility 260ms ease;
  }

  .talk-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .talk-popup__backdrop {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(14, 143, 176, 0.18), transparent 34%),
      rgba(8, 18, 32, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .talk-popup__panel {
    position: relative;
    width: min(100%, 920px);
    z-index: 1;
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.98);
    transition:
      opacity 360ms ease,
      transform 420ms cubic-bezier(0.2, 0.65, 0.2, 1);
  }

  .talk-popup.is-open .talk-popup__panel {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .talk-popup .talk-inner {
    position: relative;
    margin: 0 auto;
    padding-top: clamp(2.4rem, 2vw, 2.8rem);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 28px 64px rgba(10, 24, 46, 0.22);
  }

  .talk-popup__close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.6rem;
    height: 2.6rem;
    min-height: 2.6rem;
    padding: 0;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 246, 252, 0.94) 100%);
    color: var(--accent);
    box-shadow: 0 12px 24px rgba(15, 32, 58, 0.14);
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 800;
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      color 180ms ease,
      border-color 180ms ease;
  }

  .talk-popup__close:hover {
    transform: translateY(-1px);
    border-color: var(--button-border);
    color: var(--accent-hover);
    box-shadow: 0 14px 28px rgba(15, 32, 58, 0.18);
  }

  .talk-popup__close:active {
    transform: translateY(0);
  }
}

@keyframes heroGradientShift {
  0% {
    background-position: 0% 35%;
  }
  50% {
    background-position: 100% 65%;
  }
  100% {
    background-position: 0% 35%;
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(18px, 14px, 0) scale(1.05);
    opacity: 0.5;
  }
}

@keyframes dotsDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(var(--dots-scale));
  }
  50% {
    transform: translate3d(-12px, 10px, 0) scale(var(--dots-scale));
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes textLift {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .header-inner {
    height: 74px;
  }

  .brand-title {
    gap: 0.34rem;
  }

  .container {
    width: min(1160px, calc(100% - 1.5rem));
  }

  .intro-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding-top: clamp(4rem, 11vw, 5.2rem);
    padding-bottom: clamp(4.2rem, 13vw, 5.5rem);
  }

  .intro-copy {
    max-width: 100%;
    padding: 1.2rem 1.1rem 1.25rem;
    border-radius: 0.9rem;
  }

  .intro-title {
    line-height: 1.2;
  }

  .intro-actions {
    gap: 0.8rem;
  }

  .intro-sidebox {
    justify-self: center;
    width: min(100%, 320px);
    min-height: 0;
    padding: 1.05rem 1rem;
    box-shadow:
      0 12px 20px rgba(18, 37, 74, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.66);
  }

  .intro-hero::after {
    right: -28px;
    top: 15%;
    --dots-scale: 0.8;
  }

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

  .trust-strip-inner,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(3) {
    transform: none;
  }

  .service-card {
    padding: 1.55rem 1.25rem 1.25rem;
  }

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

  .talk-inner {
    padding: 1.5rem 1.2rem 1.55rem;
  }

  .talk-btn {
    min-height: 3.3rem;
    padding-inline: 1.7rem;
  }
}

@media (max-width: 820px) {
  .intro-hero::before {
    width: 170px;
    height: 170px;
    left: 8%;
    top: -72px;
  }

  .intro-hero::after {
    right: -40px;
    top: 12%;
  }

  .services-grid,
  .why-grid,
  .trust-strip-inner,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 1rem;
  }

  .why-grid {
    gap: 0.95rem;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1160px, calc(100% - 1.25rem));
  }

  .site-header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-inner {
    height: 70px;
  }

  .intro-hero-inner {
    gap: 1rem;
    padding-top: 3.35rem;
    padding-bottom: 3.9rem;
  }

  .intro-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .intro-title {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
    line-height: 1.14;
    text-align: center;
  }

  .intro-copy {
    padding: 1.1rem 1rem 1.2rem;
    text-align: center;
    align-items: center;
  }

  .intro-lead {
    margin-inline: auto;
  }

  .intro-title-line {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding: 0.08rem 0.22rem;
  }

  .intro-title-line:nth-child(2) {
    color: var(--accent);
    padding-left: 0.9em;
  }

  .intro-title-line + .intro-title-line {
    margin-top: 0.18em;
  }

  .intro-title-line:nth-child(3) {
    padding-left: 1.8em;
  }

  .intro-sidebox {
    width: min(100%, 100%);
    min-height: 0;
    padding: 0.95rem 0.9rem;
  }

  .intro-sidebox-note,
  .services-kicker,
  .why-kicker,
  .process-kicker,
  .talk-kicker {
    letter-spacing: 0.16em;
  }

  .intro-sidebox-year {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

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

  .services-showcase,
  .why-choose,
  .process-flow,
  .talk-area {
    padding-top: 3.5rem;
    padding-bottom: 3.9rem;
  }

  .services-subtitle,
  .why-subtitle,
  .process-subtitle,
  .talk-subtitle {
    margin-top: 0.9rem;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .services-title,
  .why-title,
  .process-title,
  .talk-title {
    font-size: clamp(1.5rem, 7vw, 2.05rem);
    line-height: 1.16;
  }

  .intro-actions {
    justify-content: center;
  }

  .intro-btn,
  .intro-secondary {
    width: 100%;
  }

  .service-card,
  .why-card,
  .process-step {
    border-radius: 1rem;
  }

  .service-card h3 {
    margin-top: 1rem;
    font-size: 1.28rem;
  }

  .service-card p,
  .why-card p,
  .process-step p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .why-card {
    padding: 1.1rem 1rem 1.12rem;
  }

  .process-step {
    padding: 1.12rem 1rem 1.14rem;
  }

  .process-number {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    min-height: 3.5rem;
    border-width: 5px;
    font-size: 0.86rem;
  }

  .talk-inner {
    padding: 1.35rem 1rem 1.45rem;
  }

  .talk-btn {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  html {
    scroll-padding-top: 88px;
  }

  .container {
    width: min(1160px, calc(100% - 0.9rem));
  }

  .header-inner {
    height: 66px;
  }

  .brand-title {
    gap: 0.26rem;
  }

  .brand-raajje {
    font-size: 1.12rem;
  }

  .brand-design {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .intro-hero-inner {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .intro-copy {
    padding: 1rem 0.9rem 1.05rem;
  }

  .intro-title {
    font-size: clamp(1.62rem, 8.2vw, 2.15rem);
  }

  .intro-title-line {
    padding-inline: 0.08rem;
  }

  .intro-title-line:nth-child(2) {
    padding-left: 0.65em;
  }

  .intro-title-line:nth-child(3) {
    padding-left: 1.3em;
  }

  .intro-sidebox {
    border-radius: 0.9rem;
  }

  .service-card,
  .why-card,
  .process-step {
    padding: 1rem 0.9rem 1.02rem;
  }

  .services-showcase,
  .why-choose,
  .process-flow,
  .talk-area {
    padding-top: 3.15rem;
    padding-bottom: 3.35rem;
  }

  .talk-inner {
    padding: 1.15rem 0.9rem 1.25rem;
  }

  .talk-title {
    font-size: clamp(1.42rem, 7vw, 1.8rem);
  }

  .talk-btn {
    min-height: 3.15rem;
  }
}

@media (max-width: 560px) {
  .intro-hero::before,
  .intro-hero::after {
    display: none;
  }

  .intro-title-line,
  .intro-title-line:nth-child(2),
  .intro-title-line:nth-child(3) {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .intro-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .intro-btn,
  .intro-secondary {
    width: 100%;
    min-height: 3rem;
  }

  .trust-pill {
    padding: 0.95rem 0.85rem 1rem;
  }

  .trust-pill span,
  .service-card p,
  .why-card p,
  .process-step p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .talk-note {
    font-size: 0.84rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 0.72rem);
  }

  .intro-hero-inner {
    padding-top: 2.6rem;
    padding-bottom: 3.1rem;
  }

  .intro-title {
    font-size: 1.48rem;
    line-height: 1.2;
  }

  .services-title,
  .why-title,
  .process-title,
  .talk-title {
    font-size: 1.38rem;
    line-height: 1.2;
  }

  .service-card h3,
  .why-card h3,
  .process-step h3 {
    font-size: 1.1rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(14, 116, 144, 0.08);
  }

  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(14, 116, 144, 0.08);
    border-radius: 999px;
  }

  ::-webkit-scrollbar-thumb {
    background: var(--accent);
    border: 2px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
    border: 2px solid transparent;
    background-clip: padding-box;
  }

  body {
    cursor: none;
  }

  a,
  button {
    cursor: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .intro-hero,
  .intro-hero::before,
  .intro-hero::after,
  .intro-copy,
  .intro-kicker,
  .intro-title,
  .service-card,
  .why-card {
    animation: none !important;
    transition: none !important;
  }
}
