:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --ink: #1e2c4b;
  --ink-soft: #5d6d88;
  --line: #dbe5f1;
  --blue: #0c64b5;
  --blue-dark: #08396d;
  --blue-band: #0f4b92;
  --red: #ef3e56;
  --red-dark: #d92f46;
  --green: #25c460;
  --green-dark: #16a44a;
  --shadow: 0 18px 45px rgba(15, 57, 109, 0.12);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

img {
  display: block;
  max-width: 100%;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 4.75rem 0;
}

.section-soft {
  background: #f8fbff;
}

.section-blue {
  background: var(--blue-band);
  color: white;
}

.section-band {
  padding: 0 0 4.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ebf0f7;
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  padding: 0.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 42px;
}

.brand-name {
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 240px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, #27b3ff 100%);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
}

.brand-text strong {
  color: var(--blue);
  font-weight: 800;
}

.brand-text span {
  color: var(--ink);
  font-weight: 700;
}

.brand-text--single {
  color: var(--blue);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.language-switcher label {
  white-space: nowrap;
}

.language-select {
  width: auto;
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 2.15rem 0.65rem 0.95rem;
  background: white;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: white;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 10px 22px rgba(239, 62, 86, 0.2);
}

.button--success {
  color: white;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 10px 22px rgba(37, 196, 96, 0.18);
}

.button--block {
  width: 100%;
}

.hero-section {
  position: relative;
  padding: 2rem 0 2.75rem;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.88) 45%,
      rgba(255, 255, 255, 0.96) 100%
    ),
    url("assets/artemis.jpeg") center / cover no-repeat;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 248, 252, 0.16) 0%,
    rgba(245, 248, 252, 0.42) 100%
  );
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.lead-form h2,
.band-shell h2,
.contact-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.97;
}

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

.hero-lead {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-subtext {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: 1.16rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.hero-highlight {
  margin: 1.35rem 0 0;
  color: var(--blue);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.lead-form {
  padding: 1.6rem;
}

.lead-form h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: var(--ink);
}

.form-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  background: white;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(12, 100, 181, 0.5);
  box-shadow: 0 0 0 3px rgba(12, 100, 181, 0.12);
}

.phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.75rem;
}

.phone-code {
  color: var(--ink);
  font-weight: 700;
  padding-right: 2rem;
}

.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

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

.section-heading.light h2,
.section-heading.light p {
  color: white;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.need-grid,
.specialty-grid,
.hospital-grid,
.cost-grid,
.feature-grid,
.support-grid,
.review-grid {
  display: grid;
  gap: 1rem;
}

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

.need-card {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 57, 109, 0.06);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.trust-copy h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.trust-copy p {
  margin: 0.95rem 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

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

.stat-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
}

.stat-card strong {
  color: var(--blue);
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.trust-visual {
  overflow: hidden;
}

.trust-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.visual-note {
  padding: 1rem 1.15rem 1.2rem;
}

.visual-note strong {
  display: block;
  font-size: 1.08rem;
}

.visual-note p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

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

.specialty-card,
.feature-card,
.support-card,
.review-card,
.cost-card {
  padding: 1.25rem;
}

.specialty-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(12, 100, 181, 0.1);
  color: var(--blue);
  font-weight: 800;
  font-size: 1.1rem;
}

.specialty-card h3,
.hospital-body h3,
.cost-card h3,
.feature-card h3,
.support-card h3 {
  margin: 1rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.specialty-card p,
.hospital-body p,
.feature-card p,
.support-card p,
.review-card p,
.cost-line span,
.faq-panel p,
.contact-card p,
.site-footer p {
  color: var(--ink-soft);
}

.band-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.45rem 1.65rem;
  border-radius: 18px;
  color: white;
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue-band) 100%
  );
  box-shadow: var(--shadow);
}

.band-shell h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.band-shell p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

.process-card {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: white;
  color: var(--blue-band);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.process-card h3 {
  margin: 1rem 0 0.55rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

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

.hospital-card {
  overflow: hidden;
}

.hospital-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hospital-body {
  padding: 1.15rem 1.15rem 1.25rem;
}

.hospital-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag-blue {
  color: var(--blue);
  background: rgba(12, 100, 181, 0.1);
}

.tag-green {
  color: #0f8c40;
  background: rgba(37, 196, 96, 0.12);
}

.hospital-body ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: var(--ink-soft);
}

.hospital-body li {
  position: relative;
  padding-left: 1rem;
}

.hospital-body li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

[dir="rtl"] .hospital-body li {
  padding-right: 1rem;
  padding-left: 0;
}

[dir="rtl"] .hospital-body li::before {
  right: 0;
  left: auto;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

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

.cost-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cost-line:last-child {
  border-bottom: 0;
}

.cost-line strong {
  color: var(--ink);
  font-size: 0.93rem;
}

.feature-grid,
.support-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  border-top: 4px solid rgba(12, 100, 181, 0.35);
}

.review-card {
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: rgba(12, 100, 181, 0.12);
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 1;
}

[dir="rtl"] .review-card::before {
  right: auto;
  left: 1rem;
}

.review-card strong {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.25rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1rem 1.1rem;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
}

[dir="rtl"] .faq-toggle {
  text-align: right;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(12, 100, 181, 0.08);
  color: var(--blue);
  font-size: 1.25rem;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item[data-open="true"] .faq-panel {
  max-height: 180px;
  padding-top: 0.9rem;
}

.contact-card {
  padding: 1.3rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.contact-list strong {
  color: var(--ink);
}

.contact-list span {
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.site-footer {
  padding: 3rem 0 6rem;
  background: #0f2343;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr) minmax(
      260px,
      0.9fr
    );
  gap: 2rem;
}

.footer-grid > div {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.footer-grid h4 {
  margin: 0;
  color: white;
  font-family: "Poppins", sans-serif;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-brand .brand-logo {
  width: 220px;
  max-width: 100%;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-cta {
  position: fixed;
  right: 1rem;
  left: auto;
  bottom: 1rem;
  z-index: 18;
  display: none !important;
  flex-direction: column;
  width: min(180px, calc(100vw - 2rem));
  gap: 0.75rem;
}

.mobile-cta .button {
  min-height: 46px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .specialty-grid,
  .feature-grid,
  .support-grid,
  .review-grid,
  .cost-grid,
  .process-grid,
  .need-grid,
  .hospital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 60px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .language-select {
    min-width: 0;
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .band-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.75rem 0;
  }

  .section-band {
    padding-bottom: 3.75rem;
  }

  .specialty-grid,
  .feature-grid,
  .support-grid,
  .review-grid,
  .cost-grid,
  .process-grid,
  .need-grid,
  .hospital-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .lead-form {
    padding: 1.1rem;
  }

  .phone-row,
  .contact-actions,
  .card-actions,
  .hero-actions,
  .band-actions {
    grid-template-columns: 1fr;
  }

  .phone-row,
  .contact-actions,
  .card-actions,
  .hero-actions,
  .band-actions {
    display: grid;
  }

  .mobile-cta {
    display: flex !important;
  }

  .site-footer {
    padding-bottom: 8rem;
  }
}
