:root {
  --blue: #2563eb;
  --blue2: #1d4ed8;
  --soft: #eff6ff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #fff;
  --radius: 20px;
  --max: 1160px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  line-height: 1.65;
}

.logo {
  width: 500px;
  height: 500px;
  max-width: 100%;
  object-fit: contain;
}

a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffffff2;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.homepage-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage-image {
  display: block;
  width: 500px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--blue), #60a5fa);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 8px 20px #2563eb35;
}
.links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 650;
}
.links a:hover,
.links .active {
  color: var(--blue);
}
.cta-link {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 11px;
}
.menu {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px;
  font-size: 20px;
}
.hero {
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 20%, #dbeafe, transparent 34%),
    linear-gradient(#f8fbff, #fff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow,
.kicker {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-block;
  background: var(--soft);
  border: 1px solid #bfdbfe;
  padding: 7px 11px;
  border-radius: 99px;
}
.hero h1,
.page h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 18px 0;
}
.hero h1 span {
  color: var(--blue);
}
.lead {
  font-size: 1.1rem;
  color: #475569;
  max-width: 650px;
}
.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border-radius: 12px;
  font-weight: 750;
  border: 1px solid var(--line);
}
.primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 10px 24px #2563eb30;
}
.phone-area {
  display: flex;
  justify-content: center;
}
.phone {
  width: 300px;
  background: #0f172a;
  padding: 9px;
  border-radius: 38px;
  box-shadow: 0 30px 70px #0f172a30;
  transform: rotate(2deg);
}
.screen {
  background: #f8fafc;
  border-radius: 30px;
  overflow: hidden;
  min-height: 590px;
}
.notch {
  height: 28px;
  background: #fff;
  display: grid;
  place-items: center;
}
.notch:after {
  content: "";
  width: 80px;
  height: 17px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
}
.app-head {
  background: #fff;
  padding: 18px;
}
.app-head small {
  color: var(--muted);
}
.app-head h3 {
  margin: 2px 0;
}
.search {
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  color: #94a3b8;
  font-size: 0.8rem;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}
.mini {
  background: #fff;
  border: 1px solid var(--line);
  padding: 13px;
  border-radius: 14px;
}
.mini i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--blue);
  font-style: normal;
}
.mini b {
  display: block;
  font-size: 0.78rem;
  margin-top: 8px;
}
.mini small {
  color: var(--muted);
}
.section {
  padding: 82px 0;
}
.soft {
  background: var(--bg);
}
.heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 38px;
}
.heading h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}
.heading p,
.card p {
  color: var(--muted);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 8px 24px #0f172a0a;
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 15px;
}
.card h3 {
  margin: 0 0 7px;
}
.categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.cat {
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 19px;
  background: #fff;
}
.cat .icon {
  width: 42px;
  height: 42px;
  font-size: 19px;
}
.cat h3 {
  font-size: 0.94rem;
  margin: 0 0 5px;
}
.cat p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step h3 {
  margin-bottom: 5px;
}
.step p {
  color: var(--muted);
  font-size: 0.9rem;
}
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}
.trust-box {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 27px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.list li {
  display: flex;
  gap: 10px;
  color: #475569;
}
.check {
  color: #15803d;
  font-weight: 900;
}
.banner {
  border-radius: 26px;
  padding: 45px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb 60%, #60a5fa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.banner h2 {
  margin: 0 0 8px;
}
.banner p {
  color: #dbeafe;
  margin: 0;
}
.banner .btn {
  background: #fff;
  color: var(--blue);
}
.page-hero {
  padding: 65px 0 50px;
  background: linear-gradient(#f8fbff, #fff);
}
.page h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}
.rows {
  display: grid;
}
.row {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.row span {
  color: var(--muted);
}
.notice {
  padding: 18px 20px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 14px;
}
.legal {
  max-width: 850px;
}
.legal h2 {
  margin-top: 35px;
}
.legal p,
.legal li {
  color: #475569;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field {
  display: grid;
  gap: 6px;
}
.field.full {
  grid-column: 1/-1;
}
.field input,
.field textarea {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
}
.field textarea {
  min-height: 150px;
}
.footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 55px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 35px;
}
.footer h4 {
  color: #fff;
  margin-top: 0;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer a {
  color: #94a3b8;
  font-size: 0.9rem;
}
.footer a:hover {
  color: #fff;
}
.footer-desc {
  color: #94a3b8;
  max-width: 360px;
}
.bottom {
  border-top: 1px solid #1e293b;
  margin-top: 38px;
  padding-top: 18px;
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  justify-content: space-between;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.6s;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .links.open {
    display: flex;
  }
  .links a {
    padding: 9px;
  }
  .menu {
    display: block;
  }
  .hero-grid,
  .trust {
    grid-template-columns: 1fr;
  }
  .phone-area {
    order: -1;
  }
  .grid3 {
    grid-template-columns: 1fr 1fr;
  }
  .categories {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero {
    padding: 50px 0;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .section {
    padding: 62px 0;
  }
  .grid3,
  .grid2,
  .categories,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .banner {
    display: block;
    padding: 32px 24px;
  }
  .banner .btn {
    margin-top: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .bottom {
    display: block;
  }
  .bottom div + div {
    margin-top: 8px;
  }
}

/* =========================================
   Official Information
   ========================================= */

.official-details-card {
  width: 100%;
}

.official-title {
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.official-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 14px;
}

.official-description {
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.official-rows {
  margin-top: 24px;
}

.official-rows .row {
  align-items: flex-start;
}

.official-rows a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.official-rows a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.unavailable-text {
  color: #64748b;
}

/* Information boxes */

.official-info-box {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
}

.official-info-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.official-info-box p {
  margin: 0;
  line-height: 1.7;
}

/* Our Approach */

.approach-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.approach-box strong {
  color: #0f172a;
}

.approach-box p {
  color: #64748b;
}

/* Transparency */

.transparency-box {
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.transparency-box strong {
  color: #1e3a8a;
}

.transparency-box p {
  color: #475569;
}

/* =========================================
   Mobile
   ========================================= */

@media (max-width: 640px) {
  .official-title {
    font-size: 1.55rem;
  }

  .official-intro {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .official-description {
    font-size: 0.95rem;
  }

  .official-info-box {
    padding: 16px;
  }
}

/* =========================================
   Contact Form
   ========================================= */

.contact-form-title {
  font-size: 1.7rem;
  margin: 0 0 10px;
}

.contact-form-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-submit {
  margin-top: 16px;
  border: none;
  cursor: pointer;
}

.contact-form-note {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 14px;
  margin-bottom: 0;
}

.contact-form-note a {
  color: #2563eb;
  text-decoration: none;
}

.contact-form-note a:hover {
  text-decoration: underline;
}

/* Select */

.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Hide honeypot field */

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
