:root {
  --navy: #001f4d;
  --navy-deep: #00142f;
  --blue: #004aad;
  --blue-bright: #0088ff;
  --cyan: #2fc8ff;
  --yellow: #ffde00;
  --yellow-deep: #ffb400;
  --green: #0eaa5b;
  --red: #d92d20;
  --ink: #10243a;
  --muted: #587087;
  --line: #d7e8f3;
  --soft: #eef8ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 46, 104, 0.14);
  --radius: 28px;
}

.site {
  min-height: 100vh;
  overflow-x: hidden;
}

.site--sinhala {
  font-family: "Noto Sans Sinhala", "Poppins", sans-serif;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 40px));
}

.service-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--blue), var(--blue-bright));
  color: #d9f5ff;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-bar a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 74, 173, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 205px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}

.primary-nav a {
  color: #23445f;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  min-width: 72px;
  min-height: 40px;
  place-items: center;
  border: 1px solid #b9d8eb;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.2);
}

.header-call span {
  color: var(--yellow);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 20%, rgba(47, 200, 255, 0.2), transparent 25%),
    radial-gradient(circle at 85% 80%, rgba(0, 136, 255, 0.25), transparent 28%),
    linear-gradient(135deg, #00142f 0%, #003b8b 48%, #007be6 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 60px;
  padding-block: 72px 90px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--deep .eyebrow,
.lead-section .eyebrow,
.page-hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 4.9vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.site--sinhala .hero h1 {
  font-size: clamp(2.35rem, 4.35vw, 4.45rem);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d7efff;
  font-size: 1.03rem;
  line-height: 1.85;
}

.hero-actions,
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--yellow {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #1e2c00;
  box-shadow: 0 14px 32px rgba(255, 190, 0, 0.24);
}

.button--ghost {
  border: 1px solid #bcdff2;
  background: var(--white);
  color: var(--blue);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.button-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.12);
  font-size: 0.6rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--yellow);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  margin-top: 31px;
  color: #d8edfb;
  font-size: 0.76rem;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.68rem;
}

.hero-product {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  align-self: center;
  justify-self: end;
  display: grid;
  place-items: center;
}

.hero-product > img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(0, 13, 41, 0.42);
  object-fit: cover;
}

.product-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 222, 255, 0.4), rgba(0, 74, 173, 0) 68%);
  filter: blur(10px);
}

.price-float {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 26px;
  min-width: 250px;
  padding: 18px 22px;
  border: 3px solid var(--white);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #212c00;
  box-shadow: 0 18px 46px rgba(0, 19, 54, 0.36);
}

.price-float span,
.price-float small {
  display: block;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price-float strong {
  display: block;
  margin: 3px 0;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.price-float small {
  color: #5d5200;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-bubble {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.hero-bubble--one {
  top: 15%;
  right: 4%;
  width: 42px;
  height: 42px;
}

.hero-bubble--two {
  bottom: 17%;
  left: 4%;
  width: 26px;
  height: 26px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-grid > div {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid b {
  color: var(--blue-bright);
  font-size: 0.68rem;
}

.trust-grid span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.section {
  padding-block: 100px;
}

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

.section--soft {
  background: linear-gradient(180deg, #f2f9ff, #e7f5ff);
}

.section--deep {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep), #003479 62%, #0059c6);
  color: var(--white);
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.lead-copy h2,
.source-grid h2,
.about-grid h2,
.newsletter-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.site--sinhala .section-heading h2,
.site--sinhala .lead-copy h2,
.site--sinhala .source-grid h2,
.site--sinhala .about-grid h2,
.site--sinhala .newsletter-card h2 {
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.section--deep .section-heading h2,
.lead-section h2 {
  color: var(--white);
}

.section-heading > p:not(.eyebrow),
.lead-copy > p,
.source-grid > div > p,
.about-grid .prose > p,
.newsletter-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.85;
}

.section--deep .section-heading > p:not(.eyebrow) {
  color: #bfddf3;
}

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

.feature-card {
  min-height: 248px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--white), #f5fbff);
  box-shadow: 0 14px 35px rgba(0, 67, 132, 0.07);
}

.feature-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #d9f3ff, #edfaff);
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #b8e5fa;
}

.feature-card h3,
.process-card h3,
.guide-card h3,
.stage-grid h3,
.source-cards h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
}

.feature-card p,
.process-card p,
.guide-card p,
.stage-grid p,
.source-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.75;
}

.spec-note {
  max-width: 850px;
  margin: 20px 0 0;
  color: #6a8194;
  font-size: 0.7rem;
  line-height: 1.65;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

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

.process-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.process-card > span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
}

.process-card h3 {
  color: var(--white);
}

.process-card p {
  color: #c7dff1;
}

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

.price-section--page {
  background: linear-gradient(180deg, var(--white), #edf8ff);
}

.price-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 68px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #36566f;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #dff8ed;
  color: var(--green);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.check-list--light li {
  color: #d5e9f6;
}

.price-card {
  overflow: hidden;
  border: 1px solid #baddf1;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-card__top {
  position: relative;
  padding: 34px 38px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.price-card__top::after {
  position: absolute;
  top: -70px;
  right: -35px;
  width: 200px;
  height: 200px;
  border: 30px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.price-card__top span,
.price-card__top small {
  display: block;
  color: #b9e8ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price-card__top strong {
  display: block;
  margin: 5px 0;
  color: var(--yellow);
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.price-card__top small {
  letter-spacing: 0;
  font-weight: 600;
}

.plan-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 14px;
}

.plan-heading b {
  color: var(--navy);
  font-size: 0.9rem;
}

.plan-heading span {
  color: var(--muted);
  font-size: 0.64rem;
}

.plan-list {
  display: grid;
  gap: 8px;
  padding: 0 20px;
}

.plan-row {
  display: grid;
  grid-template-columns: 30px repeat(3, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d9eaf4;
  border-radius: 13px;
  background: #f8fcff;
}

.plan-index {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
}

.plan-row small,
.plan-row b {
  display: block;
}

.plan-row small {
  margin-bottom: 2px;
  color: #7890a2;
  font-size: 0.55rem;
}

.plan-row b {
  color: var(--navy);
  font-size: 0.73rem;
}

.price-disclaimer {
  margin: 15px 28px 24px;
  color: #71899b;
  font-size: 0.63rem;
  line-height: 1.6;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #cce5f4;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 64, 126, 0.08);
}

.guide-card > span {
  color: var(--blue-bright);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.guide-card h3 {
  margin-top: 18px;
  font-size: 1.23rem;
}

.guide-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.lead-section {
  position: relative;
  padding-block: 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(47, 200, 255, 0.25), transparent 25%),
    linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: var(--white);
}

.lead-section--compact {
  padding-block: 75px;
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 75px;
}

.lead-copy > p {
  color: #c9e4f4;
}

.lead-contact {
  margin-top: 28px;
}

.lead-contact span,
.lead-contact a {
  display: block;
}

.lead-contact span {
  color: #a9cce1;
  font-size: 0.68rem;
  font-weight: 700;
}

.lead-contact a {
  margin-top: 3px;
  color: var(--yellow);
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 17, 49, 0.2);
  backdrop-filter: blur(12px);
}

.lead-form label {
  color: #dcecf7;
  font-size: 0.68rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.78rem;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 222, 0, 0.14);
}

.lead-form .button,
.lead-form > small {
  grid-column: 1 / -1;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.lead-form > small {
  color: #b8d4e6;
  font-size: 0.58rem;
  line-height: 1.55;
  text-align: center;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(47, 200, 255, 0.22), transparent 27%),
    linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: var(--white);
}

.page-hero__inner {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 50px;
  padding-block: 70px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.site--sinhala .page-hero h1 {
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #c6e4f7;
  font-size: 1rem;
  line-height: 1.8;
}

.page-hero__drop {
  display: grid;
  width: 210px;
  height: 250px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 55% 45% 58% 42% / 62% 43% 57% 38%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(0, 136, 255, 0.12));
  color: var(--yellow);
  font-size: 2.1rem;
  font-weight: 900;
  transform: rotate(8deg);
}

.page-hero--image .page-hero__inner {
  grid-template-columns: 1fr 340px;
}

.page-hero__inner > img {
  width: 300px;
  border: 5px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 15, 50, 0.35);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stage-grid article {
  min-height: 225px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.stage-grid span {
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 900;
}

.source-grid,
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.source-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.source-cards article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid #cce4f3;
  border-radius: 22px;
  background: var(--white);
}

.source-cards article > span {
  display: inline-grid;
  min-width: 54px;
  height: 34px;
  place-items: center;
  padding-inline: 9px;
  border-radius: 9px;
  background: #e4f6ff;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 75px;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.5;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
}

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

.faq-list details > p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.prose h2,
.policy-body h2,
.article-body h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.prose h3 {
  margin: 36px 0 10px;
  color: var(--navy);
  font-size: 1.2rem;
}

.prose p,
.policy-body p,
.article-body p,
.prose address {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.9;
}

.timeline {
  max-width: 870px;
}

.timeline article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  padding: 0 0 44px;
}

.timeline article > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.timeline h2 {
  margin: 3px 0 8px;
  color: var(--navy);
  font-size: 1.32rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.included-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.service-detail-grid,
.values-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-detail-grid article,
.values-grid article,
.contact-cards > a {
  min-height: 260px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.service-detail-grid article > span,
.values-grid b,
.contact-cards > a > span {
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-detail-grid h2,
.values-grid h2,
.contact-cards h2 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.45;
}

.service-detail-grid p,
.values-grid p,
.contact-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

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

.values-grid article {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.values-grid h2 {
  color: var(--white);
}

.values-grid p {
  color: #c7deef;
}

.about-grid > div:first-child {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.about-grid img {
  width: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

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

.contact-cards > a {
  display: block;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-cards > a:hover {
  border-color: var(--blue-bright);
  transform: translateY(-3px);
}

.contact-cards h2 {
  overflow-wrap: anywhere;
}

.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 45px;
  border-radius: 26px;
  background: linear-gradient(135deg, #e8f8ff, #ffffff);
  box-shadow: inset 0 0 0 1px #cbe9f8;
}

.newsletter-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.cta-row--compact {
  flex-wrap: nowrap;
}

.cta-row--compact .button {
  min-width: 142px;
}

.article-hero {
  padding-block: 90px;
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: var(--white);
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.site--sinhala .article-hero h1 {
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.article-hero > .narrow > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #c9e5f7;
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #9fc7e2;
  font-size: 0.67rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 65px;
  padding-block: 90px;
}

.article-body section {
  padding-bottom: 36px;
}

.article-body h2 {
  font-size: 1.55rem;
}

.article-caution {
  padding: 24px;
  border-left: 4px solid var(--yellow-deep);
  border-radius: 0 16px 16px 0;
  background: #fff9df;
}

.article-caution b {
  color: #645000;
  font-size: 0.75rem;
}

.article-caution p {
  margin-bottom: 0;
  color: #695f33;
  font-size: 0.78rem;
}

.article-sidebar {
  position: sticky;
  top: 115px;
}

.article-sidebar > div {
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: var(--shadow);
}

.article-sidebar > div > span {
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.article-sidebar h2 {
  margin: 14px 0 8px;
  font-size: 1.4rem;
  line-height: 1.35;
}

.article-sidebar p {
  margin: 0;
  color: #c9e2f4;
  font-size: 0.76rem;
  line-height: 1.7;
}

.article-sidebar .cta-row {
  display: grid;
}

.article-sidebar .button {
  width: 100%;
}

.policy-body section {
  padding: 0 0 34px;
}

.policy-body h2 {
  font-size: 1.42rem;
}

.policy-updated {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem !important;
  font-weight: 700;
}

.thank-you {
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 90px 0 120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 200, 255, 0.2), transparent 25%),
    linear-gradient(135deg, #eaf8ff, #ffffff);
}

.thank-you__card {
  max-width: 720px;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #dff8ed;
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 900;
}

.success-mark--blue {
  background: #e4f5ff;
  color: var(--blue);
  font-size: 1.05rem;
}

.thank-you__card h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.2;
}

.thank-you__card > p {
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.thank-you__card .cta-row {
  justify-content: center;
}

.back-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 75px 0 95px;
  background: #001329;
  color: #bed8e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 0.82fr 1fr;
  gap: 54px;
}

.footer-brand img {
  width: 190px;
  padding: 8px;
  border-radius: 10px;
  background: var(--white);
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer-brand .footer-note {
  color: #7da2b9;
  font-size: 0.62rem;
}

.footer-grid h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid address {
  display: block;
  margin-bottom: 11px;
  color: #a9c6d8;
  font-size: 0.68rem;
  font-style: normal;
  line-height: 1.65;
  text-decoration: none;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #6f91a7;
  font-size: 0.62rem;
}

.sticky-actions {
  display: none;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 13px;
  }

  .primary-nav a {
    font-size: 0.73rem;
  }

  .header-call {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 35px;
  }

  .feature-grid,
  .process-grid,
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    width: 165px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 8px 11px;
    border: 1px solid #c7dfea;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 800;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 17px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: var(--blue);
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-lines::before { top: -5px; }
  .menu-lines::after { top: 5px; }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 12px 13px;
    border-radius: 9px;
    font-size: 0.78rem;
  }

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

  .header-actions {
    order: 2;
  }

  .language-switch {
    min-width: 64px;
    min-height: 36px;
    font-size: 0.65rem;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 65px 100px;
  }

  .hero h1 {
    max-width: 650px;
  }

  .hero-product {
    width: min(100%, 530px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    justify-self: center;
  }

  .price-float {
    right: -5px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .price-layout,
  .lead-grid,
  .faq-layout,
  .source-grid,
  .about-grid,
  .included-grid,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .guide-grid,
  .stage-grid,
  .contact-cards,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero__inner,
  .page-hero--image .page-hero__inner {
    min-height: 360px;
    grid-template-columns: 1fr;
  }

  .page-hero__drop,
  .page-hero__inner > img {
    display: none;
  }

  .article-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 72px;
  }

  .service-bar__inner {
    min-height: 31px;
    justify-content: center;
    text-align: center;
  }

  .service-bar {
    font-size: 0.57rem;
  }

  .service-bar a {
    display: none;
  }

  .site-header__inner {
    gap: 9px;
  }

  .brand {
    width: 142px;
  }

  .header-actions {
    order: initial;
  }

  .menu-button {
    order: 3;
    margin-left: 0;
  }

  .menu-button {
    font-size: 0;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero-grid {
    gap: 34px;
    padding-block: 50px 80px;
  }

  .hero h1,
  .site--sinhala .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.87rem;
    line-height: 1.75;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .text-link {
    justify-content: center;
    padding: 10px;
  }

  .hero-proof {
    display: grid;
  }

  .hero-product {
    width: min(100%, 430px);
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .hero-product > img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-width: 5px;
    border-radius: 24px;
  }

  .product-glow {
    width: 330px;
    height: 330px;
  }

  .price-float {
    right: 5px;
    bottom: -14px;
    min-width: 210px;
    padding: 14px 17px;
  }

  .price-float strong {
    font-size: 1.45rem;
  }

  .trust-strip {
    margin-top: -20px;
  }

  .trust-grid > div {
    min-height: 75px;
    gap: 10px;
    padding: 14px;
  }

  .trust-grid span {
    font-size: 0.65rem;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .lead-copy h2,
  .source-grid h2,
  .about-grid h2,
  .newsletter-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .feature-grid,
  .process-grid,
  .guide-grid,
  .stage-grid,
  .source-cards,
  .service-detail-grid,
  .contact-cards,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .process-card,
  .guide-card,
  .stage-grid article,
  .source-cards article,
  .service-detail-grid article,
  .contact-cards > a,
  .values-grid article {
    min-height: 0;
  }

  .split-heading {
    display: block;
  }

  .split-heading .button {
    width: 100%;
  }

  .price-layout {
    gap: 38px;
  }

  .price-card__top {
    padding: 26px 23px;
  }

  .plan-heading {
    display: block;
    padding-inline: 18px;
  }

  .plan-heading span {
    display: block;
    margin-top: 5px;
  }

  .plan-list {
    padding-inline: 12px;
  }

  .plan-row {
    grid-template-columns: 27px 1fr 1.25fr;
  }

  .plan-row > div:last-child {
    grid-column: 2 / -1;
    padding-top: 7px;
    border-top: 1px dashed #cddfeb;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .lead-form .button,
  .lead-form > small {
    grid-column: auto;
  }

  .page-hero__inner {
    min-height: 330px;
    padding-block: 55px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

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

  .timeline article {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .timeline article > span {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .about-grid img {
    min-height: 210px;
  }

  .newsletter-card {
    align-items: stretch;
    flex-direction: column;
    padding: 28px;
  }

  .cta-row--compact {
    display: grid;
  }

  .article-hero {
    padding-block: 65px;
  }

  .article-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .article-layout {
    padding-block: 65px;
  }

  .thank-you__card {
    padding: 35px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 22px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-actions {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 9px;
    border-top: 1px solid #b9d8eb;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 30px rgba(0, 37, 78, 0.16);
    backdrop-filter: blur(12px);
  }

  .sticky-actions a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 800;
    text-decoration: none;
  }

  .sticky-actions .sticky-actions__wa {
    background: var(--green);
  }

  .sticky-actions span {
    font-size: 0.65rem;
    font-weight: 900;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
