@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-400-900.woff2") format("woff2");
}

@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/rajdhani-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/rajdhani-latin-700.woff2") format("woff2");
}

:root {
  --black: #06080d;
  --night: #0b1018;
  --panel: #111925;
  --panel-2: #151f2e;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f8fb;
  --muted: #aab6c5;
  --soft: #d7dee8;
  --red: #ff4d45;
  --red-deep: #d93631;
  --cyan: #6fd6ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(111, 214, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 0%, rgba(255, 77, 69, 0.18), transparent 24rem),
    linear-gradient(180deg, #06080d 0%, #0b1018 45%, #080b11 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 72%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 8, 13, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav, main, .footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: clamp(11rem, 18vw, 14.5rem);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45));
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  color: var(--soft);
  font-size: 0.96rem;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 0.25rem;
  background: var(--red);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(255, 77, 69, 0.22);
  transition: background 0.15s, box-shadow 0.15s, transform 0.12s;
}

.nav-cta:hover {
  background: #ff6159;
  box-shadow: 0 14px 36px rgba(255, 77, 69, 0.36);
  transform: translateY(-1px);
}

.nav-cta:active { transform: translateY(0); }

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.78fr);
  align-items: start;
  gap: 3.5rem;
  padding: clamp(3rem, 6vw, 4.25rem) 0 2.35rem;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 1.35rem;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(3.1rem, 6vw, 5.75rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

p, li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.intro {
  max-width: 720px;
  color: var(--soft);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  border-radius: 0.25rem;
  font-weight: 900;
  border: 1px solid transparent;
  white-space: nowrap;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 16px 36px rgba(255, 77, 69, 0.28);
  transition: box-shadow 0.15s, transform 0.12s, filter 0.15s;
}

.button.primary:hover {
  box-shadow: 0 20px 44px rgba(255, 77, 69, 0.42);
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.button.primary:active { transform: translateY(0); filter: brightness(1); }

.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}

.button.secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.button.secondary:active { transform: translateY(0); }

.hero-panel {
  position: relative;
  overflow: hidden;
  margin-top: 0.35rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(21, 31, 46, 0.92), rgba(8, 12, 19, 0.94)),
    radial-gradient(circle at top right, rgba(111, 214, 255, 0.18), transparent 15rem);
  box-shadow: var(--shadow);
}

.panel-glow {
  position: absolute;
  inset: auto -5rem -7rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: rgba(255, 77, 69, 0.25);
  filter: blur(50px);
}

.hero-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.support-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.9rem;
  margin-top: 1.3rem;
}

.support-board span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--soft);
  font-weight: 800;
  line-height: 1.3;
}

.support-board span::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255,77,69,0.55);
}

.panel-summary {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.96rem;
}

.problem-section {
  padding: 2.4rem 0 2rem;
}

.reachout-intro {
  max-width: 820px;
}

.reachout-intro h2 {
  margin-bottom: 1rem;
}

.reachout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.reachout-grid div {
  padding: 1.15rem;
  border-right: 1px solid var(--line);
}

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

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

.reachout-grid span {
  display: inline-block;
  margin-bottom: 1.05rem;
  color: var(--red);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reachout-grid h3 {
  color: var(--text);
  min-height: 2.8rem;
}

.reachout-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

.services,
.approach,
.fit,
.faq,
.contact {
  padding: 3rem 0;
}

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

.section-heading h2 { margin-bottom: 0; }

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

.service-grid article {
  min-height: 255px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
}

.card-icon {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.4rem;
  background: rgba(255, 77, 69, 0.13);
  color: var(--red);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 0 16px rgba(255, 77, 69, 0.12);
}

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps div {
  display: grid;
  grid-template-columns: 3.1rem 0.55fr 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.steps span {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.steps p { margin-bottom: 0; }

.fit-heading {
  max-width: 840px;
  margin-bottom: 1.55rem;
}

.fit-heading p:last-child {
  max-width: 760px;
  color: var(--soft);
  font-size: 1.08rem;
}

.fit-lanes {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
}

.fit-lane {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,0.045);
}

.fit-lane::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  background: rgba(255,255,255,0.18);
}

.fit-lane.is-good {
  border-color: rgba(111,214,255,0.34);
  background:
    radial-gradient(circle at top right, rgba(111,214,255,0.16), transparent 19rem),
    rgba(255,255,255,0.052);
}

.fit-lane.is-good::before {
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(111,214,255,0.6);
}

.fit-lane.is-boundary {
  opacity: 0.86;
}

.fit-lane.is-boundary::before {
  background: rgba(255,77,69,0.82);
  box-shadow: 0 0 20px rgba(255,77,69,0.42);
}

.fit-lane-header {
  min-height: 8.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.fit-lane h3 {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: 0;
}

.fit-badge {
  width: fit-content;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.35rem;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.is-good .fit-badge {
  border-color: rgba(111,214,255,0.42);
  color: #dff6ff;
  background: rgba(111,214,255,0.12);
}

.is-boundary .fit-badge {
  border-color: rgba(255,77,69,0.32);
  color: #ffd8d6;
  background: rgba(255,77,69,0.1);
}

.fit-list {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  min-height: 2.25rem;
  margin: 0;
  padding-left: 2.25rem;
  color: var(--soft);
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34rem;
  width: 1.15rem;
  height: 1.15rem;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='9.5' fill='%23ffffff' fill-opacity='0.07' stroke='%23ffffff' stroke-opacity='0.24'/%3E%3Cpath d='M7 11.2l2.7 2.7L15 8.5' fill='none' stroke='%236fd6ff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 1.35rem 1.35rem no-repeat;
}

.fit-list li::after {
  display: none;
}

.is-boundary .fit-list li::after {
  display: none;
}

.is-boundary .fit-list li::before {
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='9.5' fill='%23ffffff' fill-opacity='0.07' stroke='%23ffffff' stroke-opacity='0.24'/%3E%3Cpath d='M8 8l6 6M14 8l-6 6' stroke='%23ff4d45' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 1.35rem 1.35rem no-repeat;
  transform: none;
}

.faq {
  padding-top: 2.4rem;
}

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

.faq-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,0.045);
}

.faq-grid article:last-child {
  grid-column: 1 / -1;
}

.faq-grid h3 {
  color: var(--text);
}

.faq-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0 4rem;
  padding: 2rem;
  border: 1px solid rgba(255,77,69,0.32);
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(255,77,69,0.16), transparent 46%),
    rgba(255,255,255,0.055);
  box-shadow: var(--shadow);
}

.contact div { max-width: 720px; }
.contact h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); }
.contact p { margin-bottom: 0; color: var(--soft); }

.contact-meta {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
}

.contact-meta div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  max-width: none;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.contact-meta dt {
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form-wrap {
  flex: 0 0 min(100%, 400px);
  max-width: none;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.form-group {
  display: grid;
  gap: 0.3rem;
}

.form-group label {
  color: var(--soft);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-group input {
  min-height: 2.75rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 0.25rem;
}

.form-message {
  margin: 0.2rem 0 0;
  padding: 0.8rem 0.9rem;
  border-radius: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message.success {
  border: 1px solid rgba(111, 214, 255, 0.35);
  background: rgba(111, 214, 255, 0.12);
  color: var(--soft);
}

.form-message.error {
  border: 1px solid rgba(255, 77, 69, 0.45);
  background: rgba(255, 77, 69, 0.12);
  color: #ffe7e5;
}

.footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.15s, opacity 0.15s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links .footer-cta {
  color: var(--red);
}

.footer-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--red);
  transition: opacity 0.15s;
}

.footer-cta:hover { opacity: 0.75; }

.policy-page {
  padding: clamp(3rem, 6vw, 4.5rem) 0 4rem;
}

.policy-hero {
  max-width: 860px;
  padding-bottom: 2rem;
}

.policy-hero h1 {
  margin-bottom: 1rem;
}

.policy-updated {
  margin: 1.5rem 0 0;
  color: var(--soft);
  font-size: 0.96rem;
  font-weight: 800;
}

.policy-content {
  max-width: 860px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,0.045);
}

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

.policy-content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0;
}

.policy-content p {
  margin-bottom: 0.8rem;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-button {
  margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
}

@media (max-width: 920px) {
  .hero,
  .approach {
    grid-template-columns: 1fr;
  }
  .fit-lanes { grid-template-columns: 1fr; }
  .fit-lane-header { min-height: auto; }
  .hero { padding-top: 3rem; }
  .service-grid,
  .faq-grid,
  .reachout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps div { grid-template-columns: 3rem 1fr; }
  .steps p { grid-column: 2; }
  .contact { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .nav, main, .footer { width: min(100% - 1.2rem, 1160px); }
  .nav { min-height: 4.2rem; gap: 0.75rem; }
  .brand img { width: clamp(9.5rem, 48vw, 12.4rem); }
  .nav-cta {
    min-height: 2.75rem;
    padding: 0 0.8rem;
    font-size: 0.9rem;
  }
  h1 { font-size: clamp(2.85rem, 15vw, 4.1rem); }
  .hero-actions .button {
    width: 100%;
  }
  .fit-lane h3 { font-size: 1.85rem; }
  .hero-panel {
    padding: 1.15rem;
  }
  .service-grid,
  .faq-grid,
  .reachout-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid article:last-child {
    grid-column: auto;
  }
  .reachout-grid div,
  .reachout-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .reachout-grid div:last-child { border-bottom: 0; }
  .reachout-grid div { padding: 0.95rem; }
  .reachout-grid span { margin-bottom: 0.6rem; }
  .reachout-grid h3 { min-height: 0; }
  .reachout-grid p { line-height: 1.55; }
  .service-grid article { min-height: auto; }
  .contact { padding: 1.25rem; }
  .policy-content { padding: 1.25rem; }
  .contact-meta div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .contact-form-wrap { width: 100%; }
}
