* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  color: #111827;
}

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
  color: #4b5563;
}

.hero {
  padding: 72px 0 48px;
}

.hero-inner {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #3730a3;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 auto;
  font-size: 50px;
  line-height: 1.12;
  max-width: 920px;
}

.hero-desc {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
}

.hero-stats {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
}

.stat-box {
  background: rgba(255,255,255,0.75);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: #6b7280;
}

.download-form {
  margin: 30px auto 0;
  max-width: 900px;
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
}

.download-form input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 16px;
  outline: none;
}

.download-form button,
button {
  border: none;
  border-radius: 14px;
  padding: 0 24px;
  min-height: 56px;
  font-size: 16px;
  font-weight: 700;
  background: #111827;
  color: white;
  cursor: pointer;
}

.download-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.message {
  margin-top: 18px;
  font-size: 15px;
  color: #374151;
  min-height: 20px;
}

.result {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.result-card {
  width: 100%;
  max-width: 760px;
  text-align: left;
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.result-card img,
.result-card video {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  display: block;
}

.result-video-shell {
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
}

.result-video-preview {
  margin-bottom: 0;
  background: #020617;
}

.result-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.result-card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.result-card-author {
  margin-top: 0;
}

.result-card p {
  margin: 8px 0;
  color: #4b5563;
}

.type-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.result-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
}

.btn-dark {
  background: #111827;
  color: white;
}

.btn-light {
  background: #f3f4f6;
  color: #111827;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 10px;
}

.audio-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
}

.audio-box audio {
  width: 100%;
  margin-top: 10px;
}

.features,
.faq {
  padding: 56px 0;
}

.features h2,
.faq h2 {
  font-size: 34px;
  margin: 0 0 24px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.faq-item {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
  border: 1px solid #eef2f7;
}

.feature-card h3,
.faq-item h3 {
  margin-top: 0;
}

.site-footer {
  padding: 28px 0 50px;
  text-align: center;
  color: #6b7280;
}

.toast {
  position: fixed;
  top: 88px;
  right: 20px;
  z-index: 80;
  min-width: 220px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #111827;
  color: white;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.16);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.adgate-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.adgate-card {
  width: 100%;
  max-width: 760px;
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
  text-align: center;
}

.ad-box {
  margin: 24px 0;
  padding: 24px;
  border: 2px dashed #d1d5db;
  border-radius: 18px;
  background: #f9fafb;
}

.ad-image-link {
  display: inline-block;
}

.ad-image-banner {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 0 auto;
}

.ad-embed-frame {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 16px;
  background: #fff;
}

.ad-unsafe-html {
  text-align: left;
}

.countdown-wrap {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.disabled-btn {
  opacity: 0.5;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 36px;
  }

  .feature-grid,
  .hero-stats,
  .gallery {
    grid-template-columns: 1fr;
  }

  .download-form {
    flex-direction: column;
  }

  .nav {
    display: none;
  }

  .gallery-item img {
    height: 220px;
  }
}
.content-page {
  min-height: 100vh;
  background: #f4f7fb;
  padding: 48px 16px;
}

.content-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  padding: 32px;
}

.content-meta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-meta-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 700;
}

.faq-list,
.legal-copy {
  margin-top: 24px;
}

.faq-item,
.legal-copy h3,
.legal-copy p {
  margin-bottom: 16px;
}

.faq-item h3,
.legal-copy h3 {
  margin-bottom: 8px;
  color: #111827;
}

.legal-copy p,
.faq-item p {
  color: #4b5563;
  line-height: 1.8;
}

.site-footer {
  margin-top: 48px;
  padding: 28px 0 36px;
  border-top: 1px solid #e7edf5;
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}

.footer-text {
  margin-top: 8px;
  color: #6b7280;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.footer-branding strong {
  font-size: 18px;
  color: #0f172a;
}

.footer-branding {
  max-width: 620px;
  margin: 0 auto;
}

.footer-meta {
  margin-top: 12px;
  color: #94a3b8;
  max-width: 520px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  margin: 0 auto;
}

.footer-links a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.footer-links a:hover {
  text-decoration: underline;
}
.site-announcement {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.announcement-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.site-announcement a {
  font-weight: 700;
  text-decoration: none;
}

.site-announcement-info {
  background: #eff6ff;
  color: #1d4ed8;
}

.site-announcement-success {
  background: #ecfdf5;
  color: #047857;
}

.site-announcement-warning {
  background: #fff7ed;
  color: #c2410c;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.status-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-label {
  font-size: 14px;
  color: #6b7280;
}

.status-value {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

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

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

.hero-section {
  padding: 56px 0 34px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 32%),
    radial-gradient(circle at top right, rgba(139,92,246,0.10), transparent 28%),
    #f8fafc;
}

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

.hero-copy h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: #111827;
}

.hero-desc {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-weight: 700;
  color: #111827;
}

.hero-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.hero-card-top h2 {
  margin: 10px 0 0;
  color: #111827;
}

.download-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.download-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.download-form button,
.result-actions .btn,
.result-actions button,
.admin-actions-row button,
.admin-actions-grid button {
  border: none;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 700;
  cursor: pointer;
}

.download-form button {
  background: #111827;
  color: white;
}

.form-message {
  margin-top: 14px;
  color: #374151;
  font-weight: 600;
  min-height: 24px;
}

.form-message.is-loading {
  color: #1d4ed8;
}

.form-message.is-success {
  color: #047857;
}

.form-message.is-error {
  color: #b91c1c;
}

.result-area {
  margin-top: 18px;
}

.result-placeholder {
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  padding: 18px;
  background: #f8fafc;
  color: #475569;
}

.result-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
}

.result-media-fallback {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  color: #1d4ed8;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.result-actions-center {
  justify-content: center;
  margin-top: 24px;
}

.public-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.public-form-spaced {
  margin-top: 24px;
}

.public-form label {
  display: grid;
  gap: 8px;
}

.field-meta {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

.public-form input,
.public-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

.public-form input:focus,
.public-form textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.18);
  border-color: #60a5fa;
}

.public-form textarea {
  resize: vertical;
}

.notice-box {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid #dbeafe;
  background: #f8fafc;
  color: #334155;
  line-height: 1.7;
}

.notice-neutral {
  border-color: #dbeafe;
  background: #f8fafc;
  color: #334155;
}

.notice-loading {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.notice-success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.notice-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.empty-state-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  color: #475569;
}

.empty-state-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
}

.updates-list {
  margin-top: 28px;
}

.update-entry {
  margin-bottom: 18px;
}

.update-meta {
  font-size: 14px;
  color: #64748b;
}

.update-content {
  white-space: pre-line;
}

.page-error-card {
  max-width: 700px;
}

.trust-strip {
  padding: 18px 0 8px;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}

.trust-item span {
  color: #6b7280;
}

.section-block {
  padding: 64px 0;
}

.soft-bg {
  background: #f8fafc;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 10px 0 10px;
  color: #111827;
  font-size: clamp(28px, 3.5vw, 40px);
}

.section-head p {
  color: #6b7280;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.mini-faq-card,
.stat-public-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.feature-card h3,
.mini-faq-card h3 {
  margin-top: 0;
  color: #111827;
}

.feature-card p,
.mini-faq-card p {
  color: #6b7280;
  line-height: 1.8;
}

.stats-grid-public {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-public-number {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #111827;
}

.stat-public-label {
  display: block;
  margin-top: 8px;
  color: #6b7280;
}

.mini-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cta-section {
  padding: 16px 0 68px;
}

.cta-card {
  border-radius: 28px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-card h2 {
  margin: 10px 0;
  color: #fff;
}

.cta-card p {
  color: rgba(255,255,255,0.8);
}

.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-dark {
  background: #111827;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #111827;
  border: 1px solid #d1d5db;
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .stats-grid-public,
  .mini-faq-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .download-form {
    flex-direction: column;
  }
}
.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
}

.hero-v2-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-v2-bg-left {
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.18);
  top: 30px;
  left: -80px;
}

.hero-v2-bg-right {
  width: 320px;
  height: 320px;
  background: rgba(139, 92, 246, 0.16);
  top: 20px;
  right: -120px;
}

.hero-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
}

.hero-v2-title {
  margin: 12px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.hero-v2-title span {
  display: block;
  background: linear-gradient(90deg, #111827, #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-v2-desc {
  max-width: 690px;
  font-size: 18px;
  line-height: 1.9;
  color: #4b5563;
}

.hero-v2-badge {
  display: inline-flex;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.hero-v2-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-v2-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid #e5e7eb;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.hero-v2-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-v2-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.mini-stat-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}

.mini-stat-card strong {
  display: block;
  color: #111827;
  margin-bottom: 8px;
}

.mini-stat-card span {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.hero-v2-panel {
  position: relative;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 30px;
  padding: 24px;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
}

.hero-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-panel-head h2 {
  margin: 10px 0 0;
  color: #111827;
}

.panel-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 700;
  font-size: 14px;
}

.download-form-v2 {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.download-form-v2 input {
  flex: 1;
  min-width: 240px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 15px;
  box-shadow: inset 0 1px 1px rgba(15,23,42,0.03);
}

.download-form-v2 button {
  min-width: 150px;
  padding: 16px 20px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18);
}

.tool-panel-note {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tool-panel-note span {
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

.logo-cloud-section {
  padding: 20px 0 4px;
  background: #fff;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo-cloud span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 700;
  color: #4b5563;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.section-v2 .section-head h2 {
  margin-bottom: 12px;
}

.section-head-center {
  text-align: center;
}

.section-head-center p {
  margin-left: auto;
  margin-right: auto;
}

.feature-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card-v2 {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef2ff, #eff6ff);
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card-v2 h3 {
  margin: 0 0 10px;
  color: #111827;
}

.feature-card-v2 p {
  color: #6b7280;
  line-height: 1.8;
}

.public-stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.public-stat-card-v2 {
  text-align: center;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.04);
}

.public-stat-card-v2 strong {
  display: block;
  font-size: 28px;
  color: #111827;
}

.public-stat-card-v2 span {
  display: block;
  margin-top: 10px;
  color: #6b7280;
  line-height: 1.7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.testimonial-card p {
  margin-top: 0;
  color: #4b5563;
  line-height: 1.9;
}

.testimonial-card strong {
  color: #111827;
}

.faq-box-v2 {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item-v2 {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fafafa;
  padding: 0 18px;
}

.faq-item-v2 summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
  color: #111827;
}

.faq-item-v2 summary::-webkit-details-marker {
  display: none;
}

.faq-item-v2 p {
  padding: 0 0 18px;
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

.cta-section-v2 {
  padding: 12px 0 72px;
}

.cta-card-v2 {
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(129,140,248,0.20), transparent 24%),
    linear-gradient(135deg, #111827, #172033);
  color: #fff;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.cta-card-v2 h2 {
  margin: 10px 0;
  color: #fff;
}

.cta-card-v2 p {
  color: rgba(255,255,255,0.82);
}

@media (max-width: 1120px) {
  .hero-v2-grid,
  .feature-grid-v2,
  .public-stats-v2,
  .testimonial-grid,
  .logo-cloud,
  .hero-v2-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-v2 {
    padding-top: 42px;
  }

  .hero-v2-title {
    font-size: clamp(34px, 8vw, 48px);
  }

  .download-form-v2 {
    flex-direction: column;
  }

  .download-form-v2 button {
    width: 100%;
  }
}
.hero-v3 {
  position: relative;
  overflow: hidden;
  padding: 82px 0 48px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

.hero-v3-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-v3-glow-1 {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 24px;
  background: rgba(59, 130, 246, 0.18);
}

.hero-v3-glow-2 {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 10px;
  background: rgba(139, 92, 246, 0.14);
}

.hero-v3-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
}

.hero-v3-title {
  margin: 12px 0 18px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.hero-v3-title span {
  display: block;
  background: linear-gradient(90deg, #111827, #4338ca);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-v3-desc {
  max-width: 720px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

.hero-v3-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-v3-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid #e5e7eb;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.hero-v3-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-proof-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.hero-proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}

.hero-proof-card span {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.hero-v3-panel {
  position: relative;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 30px;
  padding: 24px;
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
}

.hero-v3-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.hero-v3-panel-top h2 {
  margin: 10px 0 0;
  color: #111827;
}

.hero-panel-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
  font-size: 13px;
}

.download-form-v3 {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.download-form-v3 input {
  flex: 1;
  min-width: 240px;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 15px;
  box-shadow: inset 0 1px 1px rgba(15,23,42,0.03);
}

.download-form-v3 button {
  min-width: 150px;
  min-height: 56px;
  padding: 16px 20px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
}

.tool-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tool-meta-row span {
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

.trust-logos-section {
  padding: 18px 0 8px;
  background: #fff;
}

.trust-logos-label {
  text-align: center;
  color: #6b7280;
  margin-bottom: 18px;
}

.trust-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.trust-logo-box {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 800;
  color: #4b5563;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.section-v3 .section-head h2 {
  margin-bottom: 12px;
}

.feature-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card-v3 {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card-v3:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.feature-icon-v3 {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff, #eff6ff);
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card-v3 h3 {
  margin: 0 0 10px;
  color: #111827;
}

.feature-card-v3 p {
  color: #6b7280;
  line-height: 1.8;
}

.steps-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card-v3 {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.step-number {
  font-size: 14px;
  font-weight: 800;
  color: #4f46e5;
  margin-bottom: 14px;
}

.step-card-v3 h3 {
  margin: 0 0 10px;
  color: #111827;
}

.step-card-v3 p {
  color: #6b7280;
  line-height: 1.8;
}

.public-stats-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.public-stat-card-v3 {
  text-align: center;
  padding: 24px 18px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.04);
}

.public-stat-card-v3 strong {
  display: block;
  font-size: 28px;
  color: #111827;
}

.public-stat-card-v3 span {
  display: block;
  margin-top: 10px;
  color: #6b7280;
  line-height: 1.7;
}

.testimonial-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card-v3 {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-top span {
  color: #6b7280;
  font-size: 14px;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111827, #4f46e5);
  color: #fff;
  font-weight: 800;
}

.testimonial-card-v3 p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
}

.faq-shell-v3 {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.faq-accordion-v3 {
  display: grid;
  gap: 14px;
}

.faq-item-v3 {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fafafa;
  padding: 0 18px;
}

.faq-item-v3 summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
  color: #111827;
}

.faq-item-v3 summary::-webkit-details-marker {
  display: none;
}

.faq-item-v3 p {
  margin: 0;
  padding: 0 0 18px;
  color: #6b7280;
  line-height: 1.8;
}

.cta-section-v3 {
  padding: 12px 0 76px;
}

.cta-card-v3 {
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(129,140,248,0.20), transparent 24%),
    linear-gradient(135deg, #111827, #172033);
  color: #fff;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
}

.cta-card-v3 h2 {
  margin: 10px 0;
  color: #fff;
}

.cta-card-v3 p {
  color: rgba(255,255,255,0.82);
}

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-cta a {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero-v3-grid,
  .feature-grid-v3,
  .steps-grid-v3,
  .public-stats-v3,
  .testimonial-grid-v3,
  .trust-logos-grid,
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-v3 {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .hero-v3-title {
    font-size: clamp(36px, 9vw, 50px);
  }

  .download-form-v3 {
    flex-direction: column;
  }

  .download-form-v3 button {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827, #1f2937);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.28);
  }

  body {
    padding-bottom: 84px;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-wrap {
    min-height: 62px;
  }

  .brand {
    font-size: 16px;
  }

  .nav {
    display: none;
  }

  .hero-v3 {
    padding: 20px 0 18px;
  }

  .hero-v3-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-v3-panel {
    order: 1;
    padding: 16px;
    border-radius: 22px;
  }

  .hero-v3-copy {
    order: 2;
  }

  .hero-v3-title {
    font-size: 40px;
    line-height: 1.02;
    margin: 10px 0 12px;
  }

  .hero-v3-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-v3-pills {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-v3-pills span {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero-v3-actions {
    margin-top: 16px;
  }

  .hero-v3-actions .btn {
    flex: 1;
    min-height: 46px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-proof-card {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-v3-panel-top h2 {
    font-size: 18px;
  }

  .download-form-v3 {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .download-form-v3 input {
    min-width: 100%;
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 14px;
  }

  .download-form-v3 button {
    width: 100%;
    min-width: 100%;
    min-height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }

  .result-card {
    border-radius: 20px;
    padding: 16px;
  }

  .result-card img,
  .result-card video {
    max-height: 58vh;
    border-radius: 16px;
  }

  .result-video-shell {
    aspect-ratio: 9 / 16;
    max-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
  }

  .result-video-preview {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
  }

  .result-card h3 {
    font-size: 22px;
    line-height: 1.25;
  }

  .result-card-title {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .result-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .result-actions {
    gap: 10px;
  }

  .result-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .tool-meta-row {
    gap: 8px;
    margin-top: 14px;
  }

  .tool-meta-row span {
    font-size: 12px;
    padding: 7px 10px;
  }

  .trust-logos-section {
    padding: 10px 0 4px;
  }

  .trust-logos-label {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .trust-logos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-logo-box {
    min-height: 52px;
    font-size: 14px;
    border-radius: 16px;
  }

  .section-block,
  .section-v3,
  .soft-bg {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .section-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .feature-grid-v3,
  .steps-grid-v3,
  .public-stats-v3,
  .testimonial-grid-v3,
  .faq-accordion-v3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card-v3,
  .step-card-v3,
  .public-stat-card-v3,
  .testimonial-card-v3 {
    padding: 18px;
    border-radius: 18px;
  }

  .faq-shell-v3 {
    padding: 18px;
    border-radius: 22px;
  }

  .faq-item-v3 {
    border-radius: 14px;
    padding: 0 14px;
  }

  .faq-item-v3 summary {
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-item-v3 p {
    padding-bottom: 14px;
    font-size: 14px;
  }

  .cta-section-v3 {
    padding-top: 10px;
    padding-bottom: 34px;
  }

  .cta-card-v3 {
    padding: 20px;
    border-radius: 22px;
  }

  .cta-card-v3 h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .cta-card-v3 p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-wrap {
    gap: 16px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    justify-items: center;
  }

  .mobile-sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}
.mobile-menu-btn {
  display: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 70;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 300px);
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 40px rgba(15, 23, 42, 0.12);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  z-index: 80;
  padding: 16px 14px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.mobile-menu-head strong {
  color: #111827;
  font-size: 18px;
}

.mobile-menu-close {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  color: #111827;
  box-shadow: none;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  padding: 11px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 20px;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .nav-wrap {
    min-height: 60px;
  }

  .brand {
    max-width: calc(100% - 60px);
    font-size: 18px;
    line-height: 1.2;
  }
}

.hero-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust-inline span,
.result-note-strip span,
.adgate-trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dbe3ee;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.result-stack {
  display: grid;
  gap: 16px;
}

.result-note-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.sponsor-home-section {
  padding-top: 12px;
  padding-bottom: 12px;
}

.sponsor-native-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.sponsor-native-card-home {
  border-color: #dbeafe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sponsor-native-card-result {
  border-style: dashed;
}

.sponsor-native-card-gate {
  margin-bottom: 22px;
  text-align: left;
}

.sponsor-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sponsor-native-copy h2,
.sponsor-native-copy h3 {
  margin: 12px 0 10px;
  color: #0f172a;
}

.sponsor-native-copy p {
  margin: 0 0 16px;
  color: #475569;
  line-height: 1.8;
}

.sponsor-native-media img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.adgate-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 6px;
}

.adgate-help-text {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .sponsor-native-card {
    grid-template-columns: 1fr;
  }

  .sponsor-native-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-trust-inline,
  .result-note-strip,
  .adgate-trust-row {
    gap: 8px;
  }

  .sponsor-native-card {
    padding: 16px;
    border-radius: 20px;
  }

  .sponsor-native-copy p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .hero-v3-panel {
    padding: 14px;
    border-radius: 20px;
  }

  .mobile-menu-drawer {
    width: min(86vw, 280px);
    padding: 14px 12px 18px;
  }

  .mobile-menu-head {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .mobile-menu-head strong {
    font-size: 16px;
  }

  .download-form-v3 input,
  .download-form-v3 button {
    border-radius: 12px;
  }

  .result-card {
    padding: 14px;
    border-radius: 18px;
  }

  .result-card img,
  .result-card video {
    max-height: 52vh;
    margin-bottom: 14px;
  }

  .result-video-shell {
    max-height: 62vh;
    margin-bottom: 14px;
  }

  .result-card h3 {
    font-size: 20px;
  }

  .mobile-menu-links a {
    font-size: 14px;
    padding: 10px 11px;
  }
}
