:root {
  --bg: #020617;
  --bg-alt: #050b19;
  --section-alt: #050816;
  --border: #1e293b;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --accent: #8b5cf6;
  --accent-soft: #4f46e5;
  --accent-grad: linear-gradient(120deg, #8b5cf6, #22d3ee);
  --btn-primary: #8b5cf6;
  --btn-primary-hover: #7c3aed;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.9);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, #111827 0, #020617 55%),
    linear-gradient(135deg, #020617, #030712);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: radial-gradient(circle at top, #020617 0, rgba(2, 6, 23, 0.94));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 64, 175, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1.4rem;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 20% 0, #2bae0b, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
}

.brand-mark.small {
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  font-size: 1rem;
}

.brand-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* NAV */

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  color: var(--text-muted);
  padding: 0.2rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--accent-grad);
  transition: width 0.18s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

/* NAV TOGGLE */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 32px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 0 auto;
}

/* HERO */

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.7rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.18rem 0.75rem;
  font-size: 0.76rem;
}

.pill-soft {
  background: rgba(30, 64, 175, 0.3);
  color: #2bae0b;
  border: 1px solid rgba(96, 165, 250, 0.5);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0.9rem 0 0.7rem;
}

.hero h1 span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 32rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.hero-actions {
  margin: 1.4rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, transform 0.1s ease;
}

.btn-primary {
  background: #2aaf0a;
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(139, 92, 246, 0.6);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: #512dc4;
}

.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #4b5563;
  margin-right: 0.3rem;
}

/* HERO VISUAL */

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-screen {
  border-radius: 26px;
  background: radial-gradient(circle at top, #0b1120, #020617 60%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.hero-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.screen-dots {
  display: flex;
  gap: 0.28rem;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4b5563;
}

.screen-dots span:nth-child(1) {
  background: #f97373;
}
.screen-dots span:nth-child(2) {
  background: #facc15;
}
.screen-dots span:nth-child(3) {
  background: #22c55e;
}

.screen-label {
  font-variant-numeric: tabular-nums;
}

.hero-screen-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 1rem;
}

/* mock video */

.video-mock {
  border-radius: 18px;
  border: 1px solid rgba(71, 85, 105, 0.8);
  background: radial-gradient(circle at top, #1d4ed8, #020617 65%);
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 0,
    rgba(96, 165, 250, 0.5),
    transparent 55%
  );
}

.video-play {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-pill);
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.video-tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
  font-size: 0.76rem;
  padding: 0.25rem 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.tag-audio {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #16a34a);
}

/* prompt panel */

.prompt-panel {
  border-radius: 16px;
  background: #020617;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.8rem 0.9rem;
  color: #e5e7eb;
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prompt-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 0.14rem 0.55rem;
  font-size: 0.75rem;
}

.prompt-pill span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #38bdf8;
}

.prompt-text {
  border-radius: 10px;
  background: #020617;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.5rem;
}

.prompt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.prompt-meta span {
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(51, 65, 85, 0.9);
  padding: 0.2rem 0.6rem;
  font-size: 0.74rem;
  color: #512dc4;
}

/* hero stats */

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

.hero-stat {
  border-radius: 1px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid #33415500;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-stat strong {
  font-size: 0.94rem;
  color: #2aaf0a;
}

/* SECTIONS */

.section {
  padding: 4rem 0;
}

.section.alt {
  background: radial-gradient(circle at top, #020617 0, #050816 75%);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.section-subtitle {
  max-width: 32rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* CARDS & GRIDS */

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

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

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

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.95);
  padding: 1.2rem 1.1rem;
  font-size: 0.92rem;
}

.card.slim {
  padding: 1.1rem 1rem;
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.card h4 {
  font-size: 0.9rem;
  margin-top: 0.4rem;
  margin-bottom: 0.1rem;
}

.card p {
  color: var(--text-muted);
}

.card ul {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.card ul li + li {
  margin-top: 0.18rem;
}

.gap-top {
  margin-top: 1.2rem;
}

/* TAGS SECTION */

.tags-section {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 1.2rem;
}

.tags-column h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(79, 70, 229, 0.6);
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
}

/* PRICING */

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

.pricing-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.96);
  padding: 1.2rem 1.1rem;
  font-size: 0.9rem;
  position: relative;
}

.pricing-card.highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.pricing-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.badge-pill {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  border-radius: var(--radius-pill);
  background: #e0e7ff;
  color: #1e293b;
  padding: 0.18rem 0.6rem;
  font-size: 0.78rem;
}

/* FAQ */

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

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.96);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
}

.faq-item h3 {
  font-size: 0.96rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* CTA */

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

.cta-bar {
  border-radius: 0px;
  padding: 1.5rem 1.6rem;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #e5edff;
}

.cta-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.cta-text p {
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-actions .btn-primary {
  background: #020617;
  box-shadow: none;
}

.cta-actions .btn-primary:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.8);
}

.cta-actions .btn-outline {
  border-color: rgba(219, 234, 254, 0.85);
  color: #e5edff;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(30, 64, 175, 0.3);
  padding: 1.8rem 0 2.4rem;
  background: #020617;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-text {
  display: flex;
  flex-direction: column;
}

.footer-text span:first-child {
  color: var(--text-main);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-screen-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-3,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tags-section {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    padding: 0.7rem 1.5rem 1rem;
    background: #020617;
    border-bottom: 1px solid rgba(30, 64, 175, 0.55);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-3,
  .cards-2,
  .grid-3,
  .grid-2,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
  
}
/* --- KLING Video Model Section --- */

.kling-model {
  background: #000;
  color: #f9fafb;
  padding: 4rem 1.5rem 4.5rem;
}

.kling-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Title */

.kling-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.kling-title span {
  font-style: italic;
  font-weight: 500;
}

/* Grid */

.kling-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: center;
}

/* Left card */

.kling-text-card {
  background: #050505;
  border-radius: 18px;
  padding: 2rem 2.25rem;
  border-left: 2px solid #ffffff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.8);
}

.kling-text-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.kling-text-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.kling-text-card .kling-faded {
  margin-top: 1.3rem;
  color: #6b7280;
}

/* Right media */

.kling-media {
  border-radius: 24px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
}

.kling-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* CTA */

.kling-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.kling-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 2.4rem;
  border: 1px solid #2bae0b;
  font-size: 0.95rem;
  color: #fff;
  background: #2bae0b;
  transition: background 0.2s ease, color 0.2s ease,
  box-shadow 0.2s ease, transform 0.1s ease;
}

.kling-cta-btn:hover {
  background: #f9fafb;
  color: #000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .kling-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kling-text-card {
    padding: 1.6rem 1.7rem;
  }

  .kling-model {
    padding-top: 3.2rem;
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 540px) {
  .kling-model {
    padding: 2.8rem 1.1rem 3.2rem;
  }

  .kling-text-card {
    border-left-width: 1px;
  }
}
/* ===== KLING BLOG SECTION ===== */

.kling-blog {
  background: #000;
  padding: 4rem 1.5rem 4.5rem;
  color: #6b7280;
}

.kling-blog-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Heading */

.kling-blog-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.kling-blog-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.kling-blog-subtitle {
  font-size: 1rem;
  font-style: italic;
  color: #e5e7eb;
}

/* Grid */

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

/* Card */

.kling-blog-card {
  background: #111827;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  border: 1px solid #020617;
}

.kling-blog-thumb {
  border-radius: 26px 26px 0 0;
  overflow: hidden;
}

.kling-blog-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.kling-blog-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.kling-blog-post-title {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.kling-blog-date {
  font-size: 0.82rem;
  color: #9ca3af;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .kling-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .kling-blog {
    padding: 3.2rem 1.1rem 3.7rem;
  }

  .kling-blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kling-blog-thumb img {
    height: 190px;
  }
}
/* ===== Kling O1 Image Model Section ===== */

.kling-image {
  background: #000;
  padding: 4rem 1.5rem 4.5rem;
  color: #6b7280;
}

.kling-image-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Heading */

.kling-image-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.kling-image-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.kling-image-header span {
  font-style: italic;
  font-weight: 500;
}

/* Grid layout */

.kling-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

/* Left image card */

.kling-image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
}

.kling-image-main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* small inset thumbnail */

.kling-image-thumb {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 180px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
}

.kling-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right copy block */

.kling-image-copy {
  border-left: 1px solid #ffffff;
  padding-left: 2rem;
}

.kling-image-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
}

.kling-image-label.bottom {
  margin-top: 2.2rem;
}

.kling-image-copy h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.kling-image-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #e5e7eb;
}

/* CTA button */

.kling-image-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.kling-image-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 2.6rem;
  border: 1px solid #2bae0b;
  font-size: 0.95rem;
  color: #fff;
  background: #2bae0b;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.1s ease;
}

.kling-image-btn:hover {
  background: #f9fafb;
  color: #000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .kling-image-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kling-image-copy {
    border-left: none;
    border-top: 1px solid #ffffff;
    padding-left: 0;
    padding-top: 1.6rem;
    margin-top: 0.5rem;
  }

  .kling-image-thumb {
    width: 150px;
  }
}

@media (max-width: 640px) {
  .kling-image {
    padding: 3.2rem 1.1rem 3.6rem;
  }

  .kling-image-thumb {
    width: 130px;
  }
}
/* ===== Kling AI NextGen Initiative Section ===== */

.kling-nextgen {
  background: #000;
  color: #f9fafb;
  padding: 4rem 1.5rem 4.5rem;
}

.kling-nextgen-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Header */

.kling-nextgen-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.2rem;
}

.kling-nextgen-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.kling-nextgen-header p {
  font-size: 0.94rem;
  color: #e5e7eb;
  line-height: 1.7;
}

/* Benefit cards */

.kling-nextgen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.kling-nextgen-card {
  background: #111827;
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  border: 1px solid #020617;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
  font-size: 0.86rem;
}

.kling-nextgen-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.kling-nextgen-card ul {
  list-style: none;
  padding-left: 0;
  color: #6b7280;
}

.kling-nextgen-card li {
  position: relative;
  padding-left: 0.8rem;
  margin-bottom: 0.18rem;
}

.kling-nextgen-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* Image */

.kling-nextgen-media {
  margin: 0 auto;
  max-width: 960px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
}

.kling-nextgen-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Caption */

.kling-nextgen-caption {
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Button */

.kling-nextgen-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.kling-nextgen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.4rem;
  border-radius: 999px;
  border: 1px solid #2bae0b;
  color: #fff;
  font-size: 0.9rem;
  background: #2bae0b;
  transition: background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.1s ease;
}

.kling-nextgen-btn:hover {
  background: #f9fafb;
  color: #000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .kling-nextgen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kling-nextgen {
    padding: 3.2rem 1.1rem 3.8rem;
  }

  .kling-nextgen-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== KLING VIDEO 2.6 – PLATFORM FEATURES (ONE COLUMN) ===== */

.kv26-platform {
  background: #000;
  color: #f9fafb;
  padding: 4rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kv26-container {
  max-width: 900px; /* narrower since it's one column */
  margin: 0 auto;
}

/* Header */

.kv26-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.4rem;
}

.kv26-header h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.kv26-header p {
  font-size: 0.98rem;
  color: #e5e7eb;
  line-height: 1.7;
}

/* One column wrapper */

.kv26-column {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* Blocks */

.kv26-block {
  background: #020617;
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  border: 1px solid #111827;
}

.kv26-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.kv26-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kv26-block li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

/* Sublist */

.kv26-sublist {
  margin-top: 0.2rem;
  padding-left: 1.1rem;
}

.kv26-sublist li {
  font-size: 0.9rem;
  color: #d1d5db;
}

/* Pills for ON/OFF */

.kv26-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0.2rem 0.35rem 0.2rem 0;
}

.kv26-pill-on {
  background: #22c55e;
  color: #022c22;
}

.kv26-pill-off {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #4b5563;
}

/* Notes & footer */

.kv26-note {
  display: block;
  font-size: 0.83rem;
  color: #9ca3af;
  margin-top: 0.1rem;
}

.kv26-block-highlight {
  background: radial-gradient(circle at top left, #111827, #020617);
}

.kv26-footer-text {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #d1d5db;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 640px) {
  .kv26-platform {
    padding: 3.2rem 1.1rem;
  }

  .kv26-block {
    padding: 1.1rem 1.2rem;
  }

  .kv26-header p {
    font-size: 0.92rem;
  }
}
/* ===== KLING VIDEO 2.6 – PLATFORM FEATURES (ONE COLUMN) ===== */

.kv-platform {
  background: #000;
  color: #f9fafb;
  padding: 4rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kv-platform-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */

.kv-platform-header {
  text-align: left;
  margin-bottom: 2.2rem;
}

.kv-platform-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.kv-platform-header h2 {
  font-size: clamp(2rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.kv-platform-intro {
  font-size: 1.0rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Content blocks */

.kv-platform-block {
  background: #020617;
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.5rem;
  border: 1px solid #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.kv-platform-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.kv-platform-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kv-platform-block li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

/* Sublist */

.kv-sublist {
  margin-top: 0.25rem;
  padding-left: 1.1rem;
}

.kv-sublist li {
  font-size: 0.9rem;
  color: #d1d5db;
}

/* Pills for ON / OFF */

.kv-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0.2rem 0.35rem 0.2rem 0;
}

.kv-pill-on {
  background: #22c55e;
  color: #022c22;
}

.kv-pill-off {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #4b5563;
}

/* Notes & highlight */

.kv-note {
  display: block;
  font-size: 0.83rem;
  color: #9ca3af;
  margin-top: 0.1rem;
}

.kv-platform-highlight {
  background: radial-gradient(circle at top left, #111827, #020617);
}

/* Responsive */

@media (max-width: 640px) {
  .kv-platform {
    padding: 3.2rem 1.1rem;
  }

  .kv-platform-block {
    padding: 1.1rem 1.2rem;
  }

  .kv-platform-intro {
    font-size: 0.9rem;
  }
}
/* ===== Shared Section Styling ===== */

.kv-section {
  background: #000;
  color: #f9fafb;
  padding: 4rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kv-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Headers */

.kv-header {
  text-align: left;
  margin-bottom: 2rem;
}

.kv-header-margin {
  margin-top: 3rem;
}

.kv-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.kv-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.kv-intro {
  font-size: 0.96rem;
  color: #e5e7eb;
  line-height: 1.7;
}

.kv-formula {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #22c55e;
}

/* Cards */

.kv-card {
  background: #020617;
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.kv-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

.kv-card p {
  font-size: 0.94rem;
  color: #6b7280;
  line-height: 1.7;
}

.kv-card ul {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
}

.kv-card li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

/* Extra text styles */

.kv-note {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 0.4rem;
}

.kv-example {
  font-size: 0.9rem;
  color: #a5b4fc;
}

.kv-tags {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #c4b5fd;
}

/* Responsive tweaks */

@media (max-width: 640px) {
  .kv-section {
    padding: 3rem 1.1rem;
  }

  .kv-card {
    padding: 1.1rem 1.25rem;
  }

  .kv-intro {
    font-size: 0.9rem;
  }

  .kv-card p,
  .kv-card li {
    font-size: 0.9rem;
  }
}
/* ===== SECTION 8 – PRICING OVERVIEW ===== */

.kv-price {
  background: #000;
  color: #f9fafbc2;
  padding: 4rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kv-price-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */

.kv-price-header {
  text-align: left;
  margin-bottom: 2.4rem;
}

.kv-price-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.kv-price-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.kv-price-intro {
  font-size: 0.96rem;
  color: #e5e7eb;
  line-height: 1.7;
}

/* Grid layout */

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

.kv-price-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cards */

.kv-price-card {
  background: #020617;
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  border: 1px solid #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.kv-price-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

.kv-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kv-price-card li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

/* Table-style pricing card */

.kv-price-card-table {
  padding-top: 1.5rem;
}

.kv-price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
  border-bottom: 1px solid #111827;
  padding: 0.65rem 0;
}

.kv-price-row:last-of-type {
  border-bottom: none;
}

.kv-price-label {
  font-size: 0.9rem;
  color: #049b3c;
}

.kv-price-label span {
  color: #4c46b5;
  font-weight: 500;
}

.kv-price-value {
  font-size: 0.94rem;
  font-weight: 500;
  color: #e5e7eb;
  text-align: right;
}

.kv-price-subtitle {
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.kv-price-note {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
  .kv-price-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .kv-price {
    padding: 3rem 1.1rem;
  }

  .kv-price-card {
    padding: 1.1rem 1.25rem;
  }

  .kv-price-intro {
    font-size: 0.9rem;
  }

  .kv-price-value {
    text-align: left;
  }
}

/* ===== SECTION 9 – FAQ ===== */

.kv-faq {
  background: #000;
  color: #f9fafb;
  padding: 4rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kv-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */

.kv-faq-header {
  text-align: left;
  margin-bottom: 2.2rem;
}

.kv-faq-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.kv-faq-header h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.kv-faq-intro {
  font-size: 0.96rem;
  color: #e5e7eb;
  line-height: 1.7;
}

/* FAQ items */

.kv-faq-item {
  background: #020617;
  border-radius: 18px;
  margin-bottom: 1rem;
  border: 1px solid #111827;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.kv-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

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

.kv-faq-question {
  font-size: 0.98rem;
  font-weight: 500;
}

.kv-faq-icon {
  font-size: 1.2rem;
  line-height: 1;
  color: #9ca3af;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Rotate icon when open */
.kv-faq-item[open] .kv-faq-icon {
  transform: rotate(45deg);
  color: #22c55e;
}

.kv-faq-body {
  padding: 0 1.4rem 1.2rem;
  border-top: 1px solid #111827;
}

.kv-faq-body p {
  font-size: 0.94rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0.7rem 0;
}

.kv-faq-body ul,
.kv-faq-body ol {
  margin: 0.4rem 0 0.6rem;
  padding-left: 1.3rem;
}

.kv-faq-body li {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

/* Responsive */

@media (max-width: 640px) {
  .kv-faq {
    padding: 3rem 1.1rem;
  }

  .kv-faq-body p,
  .kv-faq-body li {
    font-size: 0.9rem;
  }
}

