:root {
  --bg: #f4f8fc;
  --bg-soft: #eaf2fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #10263f;
  --muted: #56708d;
  --line: rgba(18, 58, 99, 0.12);
  --blue: #0e4d88;
  --blue-deep: #082d52;
  --orange: #f57a12;
  --orange-soft: #ffb46e;
  --shadow: 0 24px 80px rgba(8, 45, 82, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 104, 171, 0.16), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(245, 122, 18, 0.18), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 55%, #f7fafc 100%);
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 251, 255, 0.72);
  border-bottom: 1px solid rgba(14, 77, 136, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--blue-deep);
  font-weight: 600;
}

.nav-cta {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8e25 45%, var(--orange) 100%);
  background-size: 200% auto;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(245, 122, 18, 0.28);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(245, 122, 18, 0.35);
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(45deg);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-cta:hover::after {
  left: 150%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(14, 77, 136, 0.08);
  border: 1px solid rgba(14, 77, 136, 0.1);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1,
.section h2 {
  margin: 1rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  max-width: none;
}

.hero-text,
.section-text,
.feature-card p,
.use-case-list p,
.security-points p,
.faq-list p,
.cta-card p,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-text {
  max-width: 52ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9328 45%, var(--orange) 100%);
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 16px 34px rgba(245, 122, 18, 0.25);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.button-primary:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px rgba(245, 122, 18, 0.35);
}

.button-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.button-primary:hover::after {
  left: 150%;
}

.button-secondary {
  border: 1px solid rgba(14, 77, 136, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue-deep);
}

.button-macos {
  background: linear-gradient(135deg, var(--blue) 0%, #1e6ab3 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(14, 77, 136, 0.25);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  background-color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 77, 136, 0.08);
  color: var(--blue-deep);
  font-size: 0.94rem;
}

.hero-points-bottom {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-points-bottom li {
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.visual-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.86));
  box-shadow: var(--shadow);
}

.panel-top,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-top {
  justify-content: flex-start;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.session-card,
.session-grid article {
  background: var(--surface);
  border: 1px solid rgba(14, 77, 136, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.session-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  margin-bottom: 1.2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(14, 77, 136, 0.18);
}

.dot:nth-child(1) {
  background: #ff5f57;
}

.dot:nth-child(2) {
  background: #febc2e;
}

.dot:nth-child(3) {
  background: #28c840;
}

.mini-label {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.session-card strong,
.session-grid strong {
  font-size: 1.15rem;
}

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

.session-grid article {
  padding: 1.15rem;
}

.status-badge {
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  background: rgba(23, 138, 76, 0.1);
  color: #137546;
  font-size: 0.9rem;
  font-weight: 700;
}

.panel-footer {
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
}

.glow-blue {
  width: 260px;
  height: 260px;
  top: 30px;
  right: 24px;
  background: rgba(14, 77, 136, 0.24);
}

.glow-orange {
  width: 220px;
  height: 220px;
  left: 24px;
  bottom: 40px;
  background: rgba(245, 122, 18, 0.22);
}

.trust-band {
  padding: 0 0 2rem;
}

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

.trust-grid p {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(14, 77, 136, 0.08);
  color: var(--blue-deep);
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(227, 239, 250, 0.46));
}

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

.section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 18ch;
}

.section-title-wide {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  max-width: none;
}

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

.feature-card,
.use-case-list article,
.security-panel,
.cta-card,
.faq-list details {
  border: 1px solid rgba(14, 77, 136, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 50px rgba(8, 45, 82, 0.06);
}

.feature-card {
  padding: 1.45rem;
  border-radius: 24px;
}

.feature-card h3,
.use-case-list strong {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.use-case-list {
  display: grid;
  gap: 1rem;
}

.use-case-list article {
  padding: 1.35rem;
  border-radius: 24px;
}

.use-case-list p {
  margin: 0.55rem 0 0;
}

.security-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(245, 122, 18, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 54, 95, 0.98), rgba(10, 45, 79, 0.96));
  color: #fff;
}

.security-panel .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #d7eaff;
}

.security-panel h2,
.security-panel p,
.security-panel li {
  color: #eff7ff;
}

/* Override default h2 sizing specifically for security */
.security-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: none;
  margin: 0.75rem 0 0.6rem;
  color: #fff;
}

.security-sub {
  font-size: 0.92rem;
  color: rgba(215, 234, 255, 0.65);
  margin: 0;
  line-height: 1.6;
}

.security-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.security-points ul {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
}

.cta-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  max-width: none;
}

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

.faq-item {
  border: 1px solid rgba(14, 77, 136, 0.08);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: var(--surface-strong);
  box-shadow: 0 10px 40px rgba(8, 45, 82, 0.08);
}

.faq-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--text);
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 auto;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue);
  border-radius: 999px;
}

/* Horizontal line */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
}

[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}

.faq-summary[aria-expanded="true"] + .faq-content {
  visibility: visible;
}

.faq-content-inner {
  padding: 0 1.6rem 1.6rem;
}

.faq-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 77, 136, 0.08);
}

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

.footer-copy,
.footer-note {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .security-panel,
  .cta-card,
  .trust-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .cta-card {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(14, 77, 136, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  /* Show İndir inside the mobile dropdown */
  .site-nav::after {
    content: "İndir";
    display: block;
    text-align: center;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8e25 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.4rem;
  }

  /* Hide standalone nav-cta on mobile */
  a.nav-cta#nav-download-btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

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

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

  .hero-points-bottom {
    flex-direction: column;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* =====================
   Download Section (full page)
===================== */
.download-section {
  padding: 5rem 0;
}

.dl-page {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(8, 45, 82, 0.18);
}

/* Hero area */
.dl-page-hero {
  position: relative;
  padding: 4rem 3rem 3rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 122, 18, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(31, 104, 171, 0.48) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(8, 45, 82, 0.3) 0%, transparent 60%),
    linear-gradient(155deg, #071526 0%, #0b2040 100%);
  overflow: hidden;
}

.dl-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.018) 40px, rgba(255,255,255,0.018) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.018) 40px, rgba(255,255,255,0.018) 41px);
  pointer-events: none;
}

.dl-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}


.dl-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.dl-title {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.dl-version {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
}

.dl-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.8rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a2e 45%, var(--orange) 100%);
  background-size: 200% auto;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(245, 122, 18, 0.35);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.dl-btn-main svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dl-btn-main:hover {
  background-position: right center;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 60px rgba(245, 122, 18, 0.45);
}

.dl-btn-main:hover svg {
  transform: translateY(4px);
}

.dl-btn-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dl-btn-main:hover::after {
  left: 150%;
}

.dl-btn-main:active {
  transform: translateY(-2px) scale(0.98);
}

.dl-terms {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}
.dl-terms a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dl-terms a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Decorative "ND" */
.dl-deco-num {
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Platform Selector */
.dl-platforms {
  display: flex;
  gap: 0.75rem;
  background: linear-gradient(180deg, #0b1c31 0%, #0d1e33 100%);
  padding: 1.75rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow-x: auto;
  scrollbar-width: none;
}
.dl-platforms::-webkit-scrollbar { display: none; }

.dl-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  min-width: 80px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
}

.dl-platform:hover {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dl-platform svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dl-platform:hover svg {
  transform: scale(1.1);
}

.dl-platform.active {
  background: rgba(14, 77, 136, 0.4);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(14, 77, 136, 0.3);
}

.dl-platform-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-platform-icon svg {
  width: 24px;
  height: 24px;
}

/* Features strip */
.dl-features {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.4rem 3rem;
  background: #0b1929;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dl-feature-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}
.dl-feature-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Light-theme platform buttons (used on indir.html) */
.dl-platforms-light .dl-platform {
  border-color: var(--line);
  background: rgba(255,255,255,0.85);
  color: var(--muted);
}
.dl-platforms-light .dl-platform:hover {
  background: var(--surface-strong);
  color: var(--blue-deep);
  border-color: rgba(14, 77, 136, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(8, 45, 82, 0.1);
}
.dl-platforms-light .dl-platform.active {
  background: rgba(14, 77, 136, 0.08);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(14, 77, 136, 0.12);
}

@media (max-width: 760px) {
  .dl-page-hero {
    padding: 2.5rem 1.5rem 2rem;
  }
  .dl-platforms {
    padding: 1.25rem 1.5rem;
  }
  .dl-features {
    padding: 1.2rem 1.5rem;
    justify-content: flex-start;
  }
}
