:root {
  --navy: #061a70;
  --navy-2: #082a9f;
  --blue: #1e66f5;
  --blue-soft: #eaf2ff;
  --orange: #ff4b1f;
  --teal: #0f8296;
  --text: #0b1b4d;
  --muted: #647196;
  --line: rgba(6, 26, 112, 0.13);
  --surface: rgba(255, 255, 255, 0.9);
  --shadow: 0 22px 70px rgba(13, 33, 82, 0.12);
  --shadow-soft: 0 14px 38px rgba(13, 33, 82, 0.09);
  --radius: 22px;
  --max: 1320px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 75, 31, 0.08), transparent 28%),
    radial-gradient(
      circle at 78% 8%,
      rgba(28, 100, 242, 0.12),
      transparent 33%
    ),
    linear-gradient(180deg, #f7fbff 0%, #fff 36%, #f8fbff 100%);
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.98)
  );
  min-height: 100vh;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 26px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 26, 112, 0.07);
}
.brand {
  flex: 0 0 auto;
}
.brand img {
  width: clamp(160px, 15vw, 242px);
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.main-nav a {
  position: relative;
  padding: 10px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.main-nav a:hover::after {
  width: 100%;
}
.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 8px;
}
.lang-switch a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(6, 26, 112, 0.12);
  color: var(--navy);
  background: white;
}
.lang-active {
  background: var(--navy)!important;
  color: #fff!important;
  box-shadow: 0 10px 22px rgba(6, 26, 112, 0.2)!important;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: var(--navy);
  border-radius: 12px;
  width: 46px;
  height: 42px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
}
.hero {
  position: relative;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(26px, 4vw, 68px);
  align-items: center;
  padding: 36px 0 28px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 -50vw;
  z-index: -1;
  background:
    radial-gradient(
      circle at 67% 50%,
      rgba(28, 100, 242, 0.15),
      transparent 36%
    ),
    radial-gradient(circle at 35% 38%, rgba(255, 75, 31, 0.06), transparent 30%);
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 20px;
  color: var(--navy);
}
.orange {
  color: var(--orange);
}
.hero-subtitle {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 700;
  color: #223169;
  max-width: 650px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 15px 22px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn::after {
  content: "→";
  font-weight: 900;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 15px 34px rgba(6, 26, 112, 0.22);
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(6, 26, 112, 0.22);
  box-shadow: 0 12px 28px rgba(6, 26, 112, 0.08);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  inset: 10% 0 0 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(28, 100, 242, 0.24),
    transparent 58%
  );
  filter: blur(24px);
}
.hero-main-img {
  position: absolute;
  right: 18%;
  top: 0;
  height: 100%;
  max-height: 560px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(24, 38, 90, 0.18));
}
.hero-age-card {
  position: absolute;
  right: 0;
  top: 42px;
  width: min(42%, 350px);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(8, 25, 82, 0.16);
}
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.quick-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 26, 112, 0.08);
  box-shadow: 0 8px 22px rgba(13, 33, 82, 0.06);
}
.quick-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.quick-card h3 {
  margin: 0 0 5px;
  font-size: 14px;
  color: var(--navy);
}
.quick-card p {
  margin: 0;
  font-size: 12.5px;
  color: #43517c;
  font-weight: 650;
}
.value-strip {
  width: min(100% - 44px, var(--max));
  margin: 8px auto 32px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.value-card {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.value-card:last-child {
  border-right: 0;
}
.value-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 10px;
}
.value-card h3 {
  font-size: 15px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--navy);
}
.value-card p {
  font-size: 12.6px;
  margin: 0;
  color: #43517c;
  font-weight: 650;
}
.section {
  width: min(100% - 44px, var(--max));
  margin: 0 auto 44px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 18px 0 18px;
}
.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section-heading h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(20px, 2.3vw, 28px);
  color: var(--navy);
  margin: 0;
}
.disease-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.disease-card {
  background: #fff;
  border: 1px solid rgba(6, 26, 112, 0.11);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(13, 33, 82, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.disease-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.disease-card img {
  height: 178px;
  width: 100%;
  object-fit: cover;
}
.disease-card-body {
  padding: 19px 18px 18px;
}
.disease-card h3 {
  font-size: 18px;
  line-height: 1.23;
  color: var(--navy);
  margin: 0 0 12px;
}
.disease-card p {
  font-size: 13.5px;
  color: #46527a;
  font-weight: 650;
  margin: 0 0 18px;
}
.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.detail-link::after {
  content: "→";
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(6, 26, 112, 0.11);
  border-radius: 20px;
  min-height: 478px;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(13, 33, 82, 0.08);
}
.product-card h3 {
  font-size: 21px;
  margin: 0 0 4px;
  color: var(--navy);
}
.product-card .subtitle {
  font-size: 13px;
  font-weight: 900;
  color: #14286d;
  margin: 0 0 10px;
}
.product-card p {
  font-size: 13.2px;
  color: #46527a;
  font-weight: 650;
  margin: 0 0 12px;
}
.product-points {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.product-points li {
  position: relative;
  padding-left: 18px;
  margin: 7px 0;
  font-size: 12.5px;
  color: #273868;
  font-weight: 750;
}
.product-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 900;
}
.product-img-wrap {
  margin-top: auto;
  height: 150px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.product-img-wrap img {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.why-card {
  padding: 22px 17px;
  border-right: 1px solid var(--line);
}
.why-card:last-child {
  border-right: 0;
}
.why-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 9px;
}
.why-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}
.why-card p {
  margin: 0;
  color: #46527a;
  font-size: 12.5px;
  font-weight: 650;
}
.achievement-panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.award-card {
  text-align: center;
  padding: 12px 10px;
  border-right: 1px solid var(--line);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.award-card:last-child {
  border-right: 0;
}
.award-card img {
 /* height: 88px;*/
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}
.award-card h3 {
  font-size: 12.5px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 4px;
}
.award-card p {
  margin: 0;
  color: #46527a;
  font-weight: 800;
  font-size: 12px;
}
.metric-grid {
  margin-top: 14px;
  padding-top: 14px;
  
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.metric-card {
  text-align: center;
  padding: 10px 6px;
}
.metric-card strong {
  display: block;
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
}
.metric-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #46527a;
  font-weight: 800;
}
.cta {
  position: relative;
  width: min(100% - 44px, var(--max));
  height: 246px;
  margin: 16px auto 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #04154f;
}
.cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 15, 61, 0.96),
    rgba(4, 15, 61, 0.78) 42%,
    rgba(4, 15, 61, 0.04)
  );
}
.cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 34px 40px;
  color: #fff;
  max-width: 680px;
}
.cta-content h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.cta-content p {
  font-size: 15px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}
.footer {
  margin-top: 18px;
  background: linear-gradient(135deg, #06145b, #00143d 70%, #04114c);
  color: white;
  padding: 46px 0 22px;
}
.footer-grid {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1.2fr;
  gap: 44px;
}
.footer-brand img {
  width: 230px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
  margin-bottom: 14px;
  
    border-radius: 12px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.footer h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: #fff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li {
  margin: 8px 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}
.footer-symbol {
  color: #fff;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.socials a {
  width: 50px;
  height: 50px;
  
  border-radius: 10px;
  display: grid;
  place-items: center;

}
.socials img {
  width: 50px;
  height: 50px;
  object-fit: contain;
/*  filter: brightness(0) invert(1);*/
}
.footer-bottom {
  width: min(100% - 44px, var(--max));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
}
#legal-links {
 text-align: end;
 gap: 22px;
 flex-wrap: wrap;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1180px) {
  .site-header {
    height: auto;
    min-height: 82px;
    padding: 14px 0;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .main-nav.is-open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .hero-visual {
    min-height: 500px;
  }
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-strip,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .value-card:nth-child(3n),
  .why-card:nth-child(3n) {
    border-right: 0;
  }
  .disease-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .award-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-main-img {
    right: 28%;
  }
  .hero-age-card {
    right: 4%;
  }
}
@media (max-width: 760px) {
  .site-header,
  .hero,
  .section,
  .value-strip,
  .cta,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }
  .brand img {
    width: 160px;
  }
  .lang-switch a {
    width: 36px;
    height: 36px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-visual {
    min-height: 460px;
  }
  .hero-main-img {
    position: relative;
    right: auto;
    max-height: 430px;
    margin: 0 auto;
  }
  .hero-age-card {
    width: 52%;
    right: 0;
    top: 50px;
  }
  .quick-stats,
  .value-strip,
  .disease-grid,
  .product-grid,
  .why-grid,
  .award-grid,
  .metric-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .value-card,
  .why-card,
  .award-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .value-card:last-child,
  .why-card:last-child,
  .award-card:last-child {
    border-bottom: 0;
  }
  .product-card {
    min-height: auto;
  }
  .cta {
    height: 360px;
  }
  .cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 15, 61, 0.94),
      rgba(4, 15, 61, 0.65)
    );
  }
  .cta-content {
    padding: 26px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .hero-age-card {
    display: none;
  }
}

.hero-visual.hero-composite {
  min-height: auto;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}
.hero-visual.hero-composite .hero-glow {
  inset: 8% 4% 2% 4%;
  border-radius: 32px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(30, 102, 245, 0.18),
    transparent 62%
  );
  filter: blur(22px);
}
.hero-visual.hero-composite .hero-main-img {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 26px 76px rgba(13, 33, 82, 0.16);
  filter: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: #edf6ff;
}
.hero-visual.hero-composite .hero-age-card {
  display: none !important;
}


/* hakan */

.quick-card {
  display: flow;
}

.hero-actions {
  margin-top: 10px;
}

.eyebrow {
    display: inline-block;
   
}

.cta-content h2 {
  font-size:   1.5em;

}