:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #090b10;
  color: #f7f8fb;
  font-size: 16px;
  line-height: 1.65;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Prevent iOS font inflation */
  --primary-gradient: linear-gradient(135deg, #0b74ff 0%, #00c1ff 100%);
  --accent-color: #00c1ff;
  --secondary-color: #0ea5ff;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

/* Remove iOS tap flash on interactive elements */
a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top left, rgba(103, 123, 255, 0.18), transparent 24%),
              radial-gradient(circle at bottom right, rgba(58, 233, 234, 0.12), transparent 20%),
              linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ── LAUNCH BANNER ────────────────────────────────────────── */
.launch-banner {
  position: relative;
  background: linear-gradient(90deg, #0d0628 0%, #0b1460 30%, #0b74ff 65%, #00c1ff 100%);
  background-size: 250% 100%;
  animation: launchBannerShift 7s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 3.5rem 0.6rem 1rem;
  min-height: 48px;
  overflow: hidden;
  z-index: 200;
}

.launch-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.07) 50%, transparent 60%);
  background-size: 300% 100%;
  animation: launchBannerShimmer 2.8s linear infinite;
  pointer-events: none;
}

@keyframes launchBannerShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes launchBannerShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.launch-banner-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1;
  padding: 0.15rem 0;
}

.launch-banner-rocket {
  font-size: 1.15rem;
  animation: rocketBob 1.8s ease-in-out infinite;
  display: inline-block;
  will-change: transform;
}

@keyframes rocketBob {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50%       { transform: translateY(-3px) rotate(-15deg); }
}

.launch-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d0e8ff;
  flex-shrink: 0;
}

.launch-banner-label::before {
  content: '✦';
  font-size: 0.6rem;
  color: #a8cdff;
}

.launch-banner-message {
  font-size: 0.9rem;
}

.launch-banner-message strong {
  font-weight: 700;
  color: #fff;
}

.launch-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 0.22rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s;
}

.launch-banner-link:hover .launch-banner-cta {
  background: rgba(255,255,255,0.26);
  border-color: rgba(255,255,255,0.45);
}

.launch-banner-close {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.6rem 0.75rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color 0.18s;
  -webkit-tap-highlight-color: rgba(255,255,255,0.08);
}

.launch-banner-close:hover,
.launch-banner-close:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 600px) {
  .launch-banner-label { display: none; }
  .launch-banner-message { font-size: 0.82rem; }
  .launch-banner-cta { display: none; }
}
/* ── END LAUNCH BANNER ────────────────────────────────────── */

img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
  border-bottom: 1px solid rgba(0, 193, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.site-header:hover {
  box-shadow: 0 6px 20px rgba(11, 116, 255, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
  gap: 0.5rem;
}

.brand:hover {
  transform: scale(1.05);
}

.brand img {
  height: 10rem;
  margin-top: 0;
  margin-bottom: -7rem;
  margin-right: 1.5em;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  border-radius: 8px;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(247, 248, 251, 0.78);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f8fb;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

#lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23f7f8fb'/%3E%3C/svg%3E")
    no-repeat right 0.65rem center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f7f8fb;
  border-radius: 8px;
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
#lang-select:hover,
#lang-select:focus-visible {
  border-color: rgba(0, 193, 255, 0.4);
  outline: none;
}
#lang-select option {
  background: #1a1a2e;
  color: #f7f8fb;
}

.hero {
  padding: clamp(4rem, 8vw, 8rem) 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  color: rgba(14, 132, 255, 0.85);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin: 0;
  line-height: 1.02;
  max-width: 14ch;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text {
  margin: 1.6rem 0 2.5rem;
  max-width: 650px;
  color: rgba(247, 248, 251, 0.82);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}

.button-primary {
  background: var(--primary-gradient);
  color: #06070d;
  box-shadow: var(--shadow);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f8fb;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero-panel {
  display: grid;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-panel img {
  transition: transform 0.3s ease;
}

.hero-panel img:hover {
  transform: scale(1.02);
}

.card {
  border-radius: 28px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.accent-card {
  background: linear-gradient(180deg, rgba(103,123,255,0.14), rgba(15,18,40,0.92));
}

.badge {
  display: inline-flex;
  background: linear-gradient(90deg, rgba(11,116,255,0.12), rgba(0,193,255,0.08));
  color: #e6fbff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,193,255,0.14);
}

.card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.5rem;
}

.card p {
  margin: 0;
  color: rgba(247, 248, 251, 0.78);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
}

.stat-card p {
  margin: 0.35rem 0 0;
  color: rgba(247, 248, 251, 0.75);
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin: 0.6rem auto 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-grid,
.showcase-grid,
.process-grid {
  display: grid;
  gap: 1.5rem;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.process-step,
.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover,
.process-step:hover,
.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card h3,
.showcase-card h3,
.process-step h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.service-card p,
.showcase-card p,
.process-step p {
  color: rgba(247, 248, 251, 0.78);
}

.showcase-grid {
  grid-template-columns: 1fr 1fr;
}

.showcase-card {
  min-height: 220px;
}

.showcase-card img {
  transition: transform 0.3s ease;
}

.showcase-card:hover img {
  transform: scale(1.05);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  display: grid;
  gap: 1.25rem;
}

.product-highlight-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2rem;
}

.dropfile-card {
  cursor: pointer;
  flex: 1 1 460px;
  max-width: 520px;
  position: relative;
  padding: 2.1rem 6.25rem 2.1rem 2.1rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 116, 255, 0.16), rgba(0, 193, 255, 0.08)),
    var(--bg-card);
  border-color: rgba(0, 193, 255, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 0 34px rgba(0, 193, 255, 0.08);
}

.dropfile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.dropfile-card:hover,
.dropfile-card:focus-visible {
  border-color: rgba(0, 193, 255, 0.48);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3), 0 0 42px rgba(0, 193, 255, 0.16);
  outline: none;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(0, 193, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 193, 255, 0.08);
  color: #d8f8ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── JUST RELEASED & MS STORE ──────────────────────────────── */
.just-released-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, rgba(103,84,255,0.28), rgba(11,116,255,0.22));
  color: #cdd6ff;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(103,84,255,0.45);
  box-shadow: 0 0 14px rgba(103,84,255,0.35), 0 0 32px rgba(11,116,255,0.12);
  margin-bottom: 0.9rem;
}

.just-released-badge::before {
  content: "✦";
  font-size: 0.7rem;
  color: #a8b8ff;
}

.ms-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.55rem 1.15rem;
  color: #f0f4ff;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.ms-store-btn:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  color: #fff;
}

.ms-logo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5px;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ms-logo span {
  border-radius: 1.5px;
}

.ms-logo span:nth-child(1) { background: #f25022; }
.ms-logo span:nth-child(2) { background: #7fba00; }
.ms-logo span:nth-child(3) { background: #00a4ef; }
.ms-logo span:nth-child(4) { background: #ffb900; }

.ms-store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.ms-store-btn-text small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ms-store-btn-text strong {
  font-size: 0.9rem;
  font-weight: 700;
}

/* ── END JUST RELEASED & MS STORE ──────────────────────────── */

.dropfile-card {
  cursor: pointer;
}

.dropfile-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.product-link {
  display: inline-flex;
  margin-top: 1rem;
  color: #e7fbff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.product-link::after {
  content: '→';
  margin-left: 0.45rem;
  transition: transform 0.2s ease;
}

.dropfile-card:hover .product-link::after,
.dropfile-card:focus-visible .product-link::after {
  transform: translateX(3px);
}

.dropfile-icon {
  position: absolute;
  top: 50%;
  right: 1.35rem;
  transform: translateY(-50%);
  width: 76px;
  height: 76px;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  border: none;
}

.netglobe-icon {
  box-shadow: none;
  filter: drop-shadow(0 8px 18px rgba(0, 193, 255, 0.25));
}

@media (max-width: 700px) {
  .dropfile-card { padding: 2rem; }
  .dropfile-icon { position: static; transform: none; display: block; margin: 0.8rem auto 0 auto; }
}


.process-step span {
  width: fit-content;
  height: fit-content;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(103, 123, 255, 0.12);
  color: #a2b3ff;
  font-weight: 700;
  transition: background 0.3s ease;
}

.process-step:hover span {
  background: rgba(103, 123, 255, 0.2);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(11,116,255,0.08), rgba(0,193,255,0.06));
  border: 1px solid rgba(14,132,255,0.06);
  transition: transform 0.3s ease;
}

.contact-panel:hover {
  transform: translateY(-3px);
}

.contact-panel h2 {
  margin: 0.55rem 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(247, 248, 251, 0.64);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  color: rgba(247, 248, 251, 0.5);
  font-size: 0.875rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-panel,
  .showcase-grid,
  .process-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0.85rem 0;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .site-nav.active {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand img {
    height: 4.5rem;
    margin-top: 0;
    margin-bottom: -1.5rem;
    margin-right: 0.5rem;
  }

  #lang-select {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 5rem;
  }
}

/* ── DropFile Page ─────────────────────────────────────────────────────────── */

/* Hero */
.df-hero {
  padding: clamp(5rem, 10vw, 9rem) 0 6rem;
  position: relative;
  overflow: hidden;
}

.df-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 116, 255, 0.14), transparent 60%);
  pointer-events: none;
}

.df-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

/* Release stamp — rubber-stamp callout overlaying the hero */
.df-release-stamp {
  position: absolute;
  top: 12%;
  left: 56%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 5;
  pointer-events: none;
  animation: stampDrop 0.65s cubic-bezier(.22,1.2,.36,1) 0.85s both;
}

@keyframes stampDrop {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(-12deg) scale(2.4); }
  60%  { opacity: 1; transform: translate(-50%, -50%) rotate(-9deg)  scale(0.92); }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(-12deg) scale(1); }
}

.df-release-stamp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.95rem 1.6rem;
  color: #fde047;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(0,0,0,0.18) 0%, transparent 35%),
    radial-gradient(ellipse at 78% 80%, rgba(0,0,0,0.22) 0%, transparent 40%),
    linear-gradient(180deg, rgba(35,28,5,0.55), rgba(20,16,2,0.55));
  border: 3px solid #fde047;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,0.35),
    inset 0 0 26px rgba(0,0,0,0.25),
    0 8px 28px rgba(0,0,0,0.45),
    0 0 18px rgba(253,224,71,0.15);
  text-shadow: 0 1px 0 rgba(0,0,0,0.45);
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.df-release-stamp-line {
  display: block;
  font-weight: 800;
  line-height: 1.05;
}

.df-release-stamp-line--top {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #fef9c3;
  opacity: 0.95;
}

.df-release-stamp-line--big {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fde047;
  text-shadow: 0 2px 0 rgba(0,0,0,0.55), 0 0 14px rgba(253,224,71,0.35);
}

.df-release-stamp-line--sub {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fef08a;
  letter-spacing: 0.12em;
}

.df-release-stamp-line--micro {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fde68a;
  opacity: 0.85;
  letter-spacing: 0.18em;
  text-transform: none;
  font-style: italic;
}

.df-tagline {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  margin: 0.3rem 0 1.2rem;
  line-height: 1;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.df-sub {
  font-size: 1.12rem;
  color: rgba(247, 248, 251, 0.78);
  max-width: 520px;
  line-height: 1.75;
  margin: 0 0 2rem;
  animation: fadeInUp 1s ease-out 0.35s both;
}

.df-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.df-badge {
  display: inline-flex;
  background: linear-gradient(90deg, rgba(11,116,255,0.14), rgba(0,193,255,0.1));
  color: #d0f4ff;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(0,193,255,0.22);
  letter-spacing: 0.04em;
}

.df-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.65s both;
}

.df-app-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.df-app-frame img {
  width: 300px;
  max-width: 100%;
  border-radius: 28px;
  filter: drop-shadow(0 0 40px rgba(11, 116, 255, 0.35)) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.df-app-frame img:hover {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 0 60px rgba(11, 116, 255, 0.55)) drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6));
}

/* Formats */
.df-formats {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.df-formats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(11, 116, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.df-formats-text {
  text-align: center;
  color: rgba(247, 248, 251, 0.72);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.df-formats-card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 2.5rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.df-formats-card:hover {
  transform: translateY(-3px);
}

.df-formats-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0.92;
}

/* Features */
.df-features {
  padding: 4rem 0 2rem;
}

.df-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.df-feature:last-child {
  border-bottom: none;
}

.df-feature-flip .df-screenshot {
  order: -1;
}

.df-feature-copy .eyebrow {
  margin-bottom: 0.6rem;
}

.df-feature-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 1.75rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.df-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.df-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(247, 248, 251, 0.82);
  font-size: 1.05rem;
  line-height: 1.5;
}

.df-check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--primary-gradient);
  border-radius: 50%;
  font-size: 0.68rem;
  color: #06070d;
  font-weight: 900;
  margin-top: 1px;
}

.df-screenshot {
  display: flex;
  justify-content: center;
}

.df-screenshot img {
  max-width: 300px;
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 25px 65px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(11, 116, 255, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.df-screenshot img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(0, 193, 255, 0.2),
    0 35px 80px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(11, 116, 255, 0.25);
}

/* How It Works */
.df-how {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, transparent, rgba(11, 116, 255, 0.03) 50%, transparent);
}

.df-how-demo {
  margin: 2.5rem auto 3.5rem;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.df-how-demo-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0e1020;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(11, 116, 255, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.df-how-demo-frame:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(11, 116, 255, 0.2);
}

.df-how-demo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.df-how-demo-caption {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(247, 248, 251, 0.55);
  text-align: center;
}

@media (max-width: 720px) {
  .df-how-demo {
    margin: 2rem auto 2.5rem;
  }
  .df-how-demo-frame {
    border-radius: 12px;
  }
}

/* Settings */
.df-settings {
  padding: 5rem 0;
}

.df-settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.df-settings-copy h2 {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.df-settings-copy p {
  color: rgba(247, 248, 251, 0.78);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.df-settings-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.df-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.875rem;
  color: rgba(247, 248, 251, 0.72);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.df-tag:hover {
  background: rgba(11, 116, 255, 0.08);
  border-color: rgba(0, 193, 255, 0.28);
  color: #d0f4ff;
}

.df-settings-screenshot img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(11, 116, 255, 0.1);
  transition: transform 0.4s ease;
}

.df-settings-screenshot img:hover {
  transform: translateY(-5px);
}

/* Help */
.df-help {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.df-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.df-help-copy h2 {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.df-help-copy p {
  color: rgba(247, 248, 251, 0.78);
  line-height: 1.75;
}

.df-version-line {
  margin-top: 1.5rem !important;
  font-size: 0.9rem;
  color: rgba(247, 248, 251, 0.42) !important;
  font-style: italic;
}

.df-browser-frame {
  background: #1c1e2e;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(11, 116, 255, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.df-browser-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(11, 116, 255, 0.15);
}

.df-browser-bar {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.df-browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.df-dot-red    { background: #ff5f57; }
.df-dot-yellow { background: #ffbd2e; }
.df-dot-green  { background: #28c840; }

.df-browser-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Download CTA */
.df-download {
  padding: 5rem 0 7rem;
}

.df-download-panel {
  text-align: center;
  background: linear-gradient(135deg, rgba(11,116,255,0.1), rgba(0,193,255,0.06));
  border: 1px solid rgba(14,132,255,0.14);
  border-radius: 40px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}

.df-download-panel::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(11, 116, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.df-download-panel .eyebrow,
.df-download-panel h2,
.df-download-panel > p,
.df-download-actions,
.df-note {
  position: relative;
}

.df-download-panel h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin: 0.4rem 0 1.25rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.df-download-panel > p {
  font-size: 1.1rem;
  color: rgba(247, 248, 251, 0.75);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.df-download-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.df-note {
  font-size: 0.87rem;
  color: rgba(247, 248, 251, 0.4);
  margin: 0;
}

/* Platform Support */
.df-platforms {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.15);
}

/* DropFile conversion landing pages */
.conversion-hero {
  padding-bottom: 4rem;
}

.conversion-overview,
.conversion-compare,
.conversion-privacy,
.conversion-related {
  padding: 5rem 0;
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 4rem;
  align-items: center;
}

.conversion-copy h2,
.conversion-compare h2,
.conversion-privacy-panel h2,
.conversion-related h2 {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.conversion-copy p,
.conversion-privacy-panel p {
  color: rgba(247, 248, 251, 0.78);
  line-height: 1.75;
}

.conversion-screens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  justify-items: center;
}

.conversion-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.conversion-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.conversion-table th,
.conversion-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.conversion-table th {
  color: #d0f4ff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(11, 116, 255, 0.08);
}

.conversion-table td {
  color: rgba(247, 248, 251, 0.78);
  line-height: 1.55;
}

.conversion-table tr:last-child td {
  border-bottom: 0;
}

.conversion-privacy-panel {
  text-align: center;
  background: linear-gradient(135deg, rgba(11,116,255,0.09), rgba(0,193,255,0.05));
  border: 1px solid rgba(14,132,255,0.14);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4rem);
}

.conversion-privacy-panel p {
  max-width: 740px;
  margin: 0 auto 2rem;
}

.conversion-privacy-points,
.conversion-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.conversion-privacy-points span,
.conversion-related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 193, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 248, 251, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
}

.conversion-related {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.conversion-related .container {
  text-align: center;
}

.conversion-related-links {
  margin-top: 2rem;
}

.conversion-related-links a:hover {
  color: #d0f4ff;
  border-color: rgba(0, 193, 255, 0.42);
  background: rgba(11, 116, 255, 0.1);
}

.converter-directory {
  background: linear-gradient(180deg, transparent, rgba(11, 116, 255, 0.03) 50%, transparent);
}

.converter-directory-group {
  margin-top: 2.5rem;
}

.converter-directory-group h2,
.converter-directory-group h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.converter-directory .conversion-related-links {
  justify-content: flex-start;
}

.converter-directory-cta {
  margin-top: 2.5rem;
}

.df-platforms-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.df-platform-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.df-platform-logo {
  width: 52px;
  height: 52px;
  max-width: 52px;   /* hard cap — prevents iOS Safari flex overflow */
  max-height: 52px;
  flex-shrink: 0;    /* stop flexbox from misinterpreting the image's min-content size */
  object-fit: contain;
  display: block;
}

.df-platform-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.df-platform-name {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(247, 248, 251, 0.9);
}

.df-platform-status {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
  display: inline-block;
  width: fit-content;
}

.df-platform-available {
  background: rgba(0, 200, 100, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.df-platform-coming-soon {
  background: rgba(255, 170, 0, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.df-platform-soon {
  opacity: 0.75;
}

/* ── Reviews Marquee ─────────────────────────────────── */
.df-reviews {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.df-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(11, 116, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.df-reviews-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.df-reviews-heading h2 {
  margin: 0.6rem auto 0.85rem;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.df-reviews-sub {
  color: rgba(247, 248, 251, 0.7);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.df-reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.df-reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 1rem 0.75rem 1.25rem;
  animation: df-reviews-scroll 60s linear infinite;
}

.df-reviews-marquee:hover .df-reviews-track,
.df-reviews-marquee:focus-within .df-reviews-track {
  animation-play-state: paused;
}

@keyframes df-reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.df-review-card {
  flex: 0 0 360px;
  background: linear-gradient(135deg, rgba(11, 116, 255, 0.07), rgba(0, 193, 255, 0.04));
  border: 1px solid rgba(0, 193, 255, 0.16);
  border-radius: 22px;
  padding: 1.75rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.df-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 193, 255, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(11, 116, 255, 0.1);
}

.df-review-stars {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.45);
  line-height: 1;
}

.df-review-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #f7f8fb;
  line-height: 1.3;
}

.df-review-body {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(247, 248, 251, 0.78);
  line-height: 1.6;
  flex: 1;
}

.df-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
}

.df-review-author {
  font-weight: 600;
  color: #d0f4ff;
}

.df-review-source {
  color: rgba(247, 248, 251, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@media (prefers-reduced-motion: reduce) {
  .df-reviews-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .df-reviews-marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ── Feature Tabs ─────────────────────────────────────── */
.df-features-tabbed {
  padding: 5rem 0 6rem;
}

.df-features-sub {
  max-width: 640px;
  margin: 0.75rem auto 0;
  color: rgba(247, 248, 251, 0.72);
  font-size: 1.02rem;
  line-height: 1.65;
  text-align: center;
}

.df-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.5rem auto 2.25rem;
  max-width: 920px;
}

.df-tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(247, 248, 251, 0.72);
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.df-tab:hover {
  background: rgba(11, 116, 255, 0.1);
  border-color: rgba(0, 193, 255, 0.3);
  color: #ffffff;
}

.df-tab:focus-visible {
  outline: 2px solid #7bdcff;
  outline-offset: 3px;
}

.df-tab.is-active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #06070d;
  box-shadow: 0 8px 24px rgba(11, 116, 255, 0.3);
}

.df-tab-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.df-tab-label {
  letter-spacing: 0.01em;
}

.df-tab-panels {
  max-width: 1100px;
  margin: 0 auto;
}

.df-tab-panel {
  animation: df-tab-fade 0.35s ease;
}

.df-tab-panel[hidden] {
  display: none;
}

@keyframes df-tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.df-feature-formats {
  font-size: 0.82rem;
  color: rgba(123, 220, 255, 0.85);
  letter-spacing: 0.06em;
  margin: 0.4rem 0 1.2rem;
  font-weight: 500;
}

.df-feature-text-only {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.df-feature-text-only .df-feature-copy {
  text-align: center;
}

.df-feature-text-only .df-check-list {
  display: inline-block;
  text-align: left;
}

/* ── Compact Platform Strip (inside Download CTA) ──── */
.df-download-platforms {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0.5rem;
}

.df-download-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.df-download-platform--available {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.06);
}

.df-download-platform--soon {
  opacity: 0.72;
}

.df-download-platform img {
  border-radius: 6px;
}

.df-download-platform span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.df-download-platform strong {
  font-size: 0.92rem;
  color: #f7f8fb;
  font-weight: 600;
}

.df-download-platform small {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 248, 251, 0.55);
}

.df-download-platform--available small {
  color: rgba(74, 222, 128, 0.95);
}

/* Stats Strip */
.df-stats {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(11, 116, 255, 0.025);
}

.df-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.df-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
}

.df-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.df-stat-label {
  font-size: 0.88rem;
  color: rgba(247, 248, 251, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Security / Privacy Comparison */
.df-security {
  padding: 5rem 0 6rem;
  position: relative;
}

.df-security::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 60, 60, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.df-security-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.df-security-intro h2 {
  margin: 0.6rem auto 1.2rem;
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.df-security-intro > p:last-child {
  color: rgba(247, 248, 251, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.df-security-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.df-danger-card,
.df-secure-card {
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid;
}

.df-danger-card {
  background: linear-gradient(135deg, rgba(200, 30, 30, 0.1), rgba(120, 0, 0, 0.06));
  border-color: rgba(255, 80, 80, 0.18);
}

.df-secure-card {
  background: linear-gradient(135deg, rgba(11, 116, 255, 0.1), rgba(0, 193, 255, 0.06));
  border-color: rgba(0, 193, 255, 0.2);
}

.df-compare-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.df-compare-label h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f7f8fb;
}

.df-compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
}

.df-danger-icon {
  background: rgba(255, 60, 60, 0.15);
  color: #ff6060;
  border: 1px solid rgba(255, 60, 60, 0.3);
}

.df-secure-icon {
  background: var(--primary-gradient);
  color: #06070d;
  font-size: 0.9rem;
}

.df-x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.df-x-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(247, 248, 251, 0.72);
  font-size: 1.05rem;
  line-height: 1.5;
}

.df-x-list li::before {
  content: '✕';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 60, 60, 0.15);
  border-radius: 50%;
  font-size: 0.65rem;
  color: #ff6060;
  font-weight: 900;
  margin-top: 1px;
  border: 1px solid rgba(255, 60, 60, 0.25);
}

.df-sec-cta {
  display: inline-block;
  margin-top: 2rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.2s ease;
}

.df-sec-cta:hover {
  color: #ffffff;
}

/* More File Types */
.df-more-types {
  padding: 5rem 0;
}

.df-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.df-more-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.df-more-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(11, 116, 255, 0.08);
  border-color: rgba(0, 193, 255, 0.15);
}

.df-more-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.df-more-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--secondary-color);
}

.df-more-formats {
  font-size: 0.82rem;
  color: rgba(247, 248, 251, 0.45);
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
}

/* Batch Mode */
.df-batch {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(11, 116, 255, 0.03) 50%, transparent);
}

.df-batch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.df-batch-card {
  background: linear-gradient(135deg, rgba(11,116,255,0.07), rgba(0,193,255,0.04));
  border: 1px solid rgba(14,132,255,0.12);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.df-batch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 193, 255, 0.22);
}

.df-batch-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.df-batch-card p {
  font-size: 0.97rem;
  color: rgba(247, 248, 251, 0.75);
  line-height: 1.65;
  margin: 0;
}

/* Keyboard Shortcuts */
.df-shortcuts {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.df-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.df-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.df-shortcut:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 193, 255, 0.18);
}

.df-shortcut kbd {
  display: inline-block;
  background: linear-gradient(135deg, rgba(11,116,255,0.18), rgba(0,193,255,0.12));
  border: 1px solid rgba(0, 193, 255, 0.25);
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  font-family: 'Inter', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #d0f4ff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.df-shortcut span {
  font-size: 0.9rem;
  color: rgba(247, 248, 251, 0.68);
  line-height: 1.4;
}

.df-legal-links {
  margin: 1.15rem 0 0;
  color: rgba(247, 248, 251, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

.df-legal-links a,
.site-footer a,
.legal-document a {
  color: #7bdcff;
  text-decoration: none;
}

.df-legal-links a:hover,
.site-footer a:hover,
.legal-document a:hover {
  text-decoration: underline;
}

/* Social links — Facebook / LinkedIn icons in the footer */
.social-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 248, 251, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: rgba(123, 220, 255, 0.18);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(123, 220, 255, 0.16);
  border-color: rgba(123, 220, 255, 0.55);
  color: #7bdcff;
  transform: translateY(-1px);
  text-decoration: none;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.legal-page {
  padding-top: 5.5rem;
}

.legal-hero {
  padding: 5rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-hero h1 {
  margin: 0.35rem 0 0.8rem;
  max-width: 840px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.legal-meta {
  margin: 0;
  color: rgba(247, 248, 251, 0.68);
}

.legal-content {
  padding: 3rem 0 5rem;
}

.legal-document {
  max-width: 900px;
}

.legal-document h2,
.legal-document h3,
.legal-document h4 {
  color: #fff;
}

.legal-document h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}

.legal-document h3 {
  margin: 2rem 0 0.7rem;
  font-size: 1.15rem;
}

.legal-document h4 {
  margin: 1.25rem 0 0.55rem;
  font-size: 1rem;
}

.legal-document p,
.legal-document li {
  color: rgba(247, 248, 251, 0.76);
  line-height: 1.75;
}

.legal-document ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  :root { scroll-behavior: auto; }
}

/* DropFile responsive */
@media (max-width: 960px) {
  .df-hero-grid,
  .df-settings-grid,
  .df-help-grid,
  .conversion-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .df-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .df-feature-flip .df-screenshot {
    order: 0;
  }

  .df-app-frame img {
    width: 240px;
  }

  .df-release-stamp {
    position: static;
    transform: rotate(-6deg);
    margin: 1rem auto 2rem;
    align-self: center;
    justify-self: center;
    animation: none;
  }

  .df-release-stamp-inner {
    padding: 0.7rem 1.2rem;
  }

  .df-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .df-security-compare {
    grid-template-columns: 1fr;
  }

  .df-more-grid,
  .df-batch-grid {
    grid-template-columns: 1fr;
  }

  .df-shortcuts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .df-review-card {
    flex: 0 0 300px;
    padding: 1.4rem 1.3rem;
  }

  .df-tab {
    padding: 0.6rem 0.95rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 700px) {
  .df-download-panel {
    border-radius: 28px;
  }

  .df-formats-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .df-screenshot img {
    max-width: 240px;
  }

  .conversion-overview,
  .conversion-compare,
  .conversion-privacy,
  .conversion-related {
    padding: 3.5rem 0;
  }

  .conversion-table {
    min-width: 560px;
  }

  .df-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .df-shortcuts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .df-platforms-grid {
    gap: 1.5rem;
  }

  .df-review-card {
    flex: 0 0 280px;
    padding: 1.25rem 1.2rem;
  }

  .df-review-title {
    font-size: 1rem;
  }

  .df-review-body {
    font-size: 0.9rem;
  }

  .df-reviews {
    padding: 3.5rem 0 4rem;
  }

  .df-tabs {
    gap: 0.4rem;
    margin: 2rem auto 1.75rem;
  }

  .df-tab {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }

  .df-tab-icon {
    font-size: 0.95rem;
  }

  .df-features-tabbed {
    padding: 3.5rem 0 4rem;
  }

  .df-download-platforms {
    gap: 0.65rem;
  }

  .df-download-platform {
    padding: 0.5rem 0.85rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
