﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Thai:wght@300;400;500;600;700;800&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-elevated: #ffffff;
  --ink: #111111;
  --ink-secondary: #374151;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --accent: #111111;
  --accent-hover: #333333;
  --accent-light: #f3f4f6;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --line: #e5e7eb;
  --line-light: #f3f4f6;
  --card: #ffffff;
  --card-hover: #fafafa;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', 'Noto Sans Thai', system-ui, -apple-system, sans-serif;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ─── UTILITIES ─── */
.muted {
  color: var(--muted);
}

.muted-light {
  color: var(--muted-light);
}

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

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  background: var(--bg-alt);
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
}

.btn.ghost:hover {
  background: var(--accent-light);
  border-color: transparent;
}

.btn.lg {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.btn.sm {
  padding: 6px 12px;
  font-size: 0.8125rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ─── CARDS ─── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-mini {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}

.card-mini:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-sm);
}

/* ─── TAGS / BADGES ─── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.tag.active {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.tag.inactive {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.tag.pro {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* ─── INPUT ─── */
input,
select,
textarea {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.875rem;
  width: 100%;
  transition: all var(--transition);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-secondary);
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════
   HOME / LANDING PAGE
   ═══════════════════════════════════════ */

/* ── Home Nav ── */
.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.home-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-nav .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
}

.home-nav .nav-logo {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.875rem;
}

.home-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-nav .nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
}

.home-nav .nav-links a:hover {
  color: var(--ink);
  background: var(--accent-light);
}

.home-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Hero Section ── */
.home-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-home {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-home h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-home h1 .text-gradient {
  background: linear-gradient(135deg, #111 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.8125rem;
  color: var(--muted-light);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust .check {
  color: var(--success);
}

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 96px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.stats-bar .stat-item {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.stats-bar .stat-item:hover {
  background: var(--bg-alt);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Workflow Banner ── */
.workflow-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-lg);
  margin-bottom: 96px;
  font-size: 0.875rem;
  font-weight: 500;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.workflow-banner .wf-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow-banner .wf-arrow {
  opacity: 0.4;
  font-size: 0.75rem;
}

/* ── Section ── */
.section {
  margin-bottom: 96px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  cursor: default;
}

.feature-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Platforms ── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.platform-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
}

.platform-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.platform-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.platform-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.platform-card p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Steps / How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card.featured::before {
  content: 'ยอดนิยม';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pricing-card .price-period {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-card .pricing-features li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--ink-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card .pricing-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--accent);
  font-size: 0.875rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--muted);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: #d1d5db;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  transition: all var(--transition);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question .faq-icon {
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Download Extension ── */
.download-card {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s;
  background: var(--bg);
}

.download-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #d1d5db;
}

.download-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.download-icon-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.download-icon-area h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.download-version {
  font-size: 0.8125rem;
  color: var(--muted);
}

.download-instructions {
  padding: 28px 32px;
}

.download-instructions h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.install-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-top: 2px;
}

.install-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.install-step-text strong {
  font-size: 0.9375rem;
  font-weight: 600;
}

.install-step-text span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.install-step-text code {
  display: inline;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
}

.download-filepath {
  padding: 16px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filepath-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

.filepath-value {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── CTA ── */
.cta-section {
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  margin-bottom: 64px;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 28px;
}

.cta-section .btn {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}

.cta-section .btn:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── Footer ── */
.home-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  text-align: center;
}

.home-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   STUDIO PAGE (USER)
   ═══════════════════════════════════════ */

.studio-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
}

/* ── Studio Sidebar ── */
.studio-sidebar {
  grid-row: 1 / -1;
  background: var(--bg);
  border-right: 1px solid var(--line);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studio-sidebar .sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  margin-bottom: 20px;
}

.studio-sidebar .sidebar-logo {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.75rem;
}

.studio-sidebar .sidebar-title {
  font-weight: 700;
  font-size: 0.9375rem;
}

.studio-sidebar .sidebar-sub {
  font-size: 0.6875rem;
  color: var(--muted);
}

/* Sidebar Nav */
.sidebar-section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding: 16px 12px 6px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-secondary);
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  transition: all var(--transition);
}

.sidebar-nav .nav-item:hover {
  background: var(--accent-light);
  color: var(--ink);
}

.sidebar-nav .nav-item.active {
  background: var(--accent);
  color: #ffffff;
}

.sidebar-nav .nav-item .nav-icon {
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
}

/* Sidebar Footer */
.sidebar-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.sidebar-plan {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
}

.sidebar-plan .plan-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-light);
  margin-bottom: 6px;
}

.sidebar-plan .plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.sidebar-plan .plan-expire {
  font-size: 0.6875rem;
  color: var(--muted);
  margin-top: 6px;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.sidebar-user:hover {
  background: var(--accent-light);
}

.sidebar-user .user-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.sidebar-user .user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user .user-name {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user .user-email {
  font-size: 0.6875rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Studio Header ── */
.studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.studio-header .header-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.studio-header .header-title p {
  font-size: 0.8125rem;
  color: var(--muted);
}

.studio-header .header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Studio Content ── */
.studio-content {
  background: var(--bg-alt);
  padding: 24px 28px;
  overflow-y: auto;
}

/* Content Panels */
.studio-panel {
  display: none;
}

.studio-panel.active {
  display: block;
}

/* Tab bar inside studio */
.studio-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.studio-tabs .tab {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.studio-tabs .tab:hover {
  background: var(--accent-light);
}

.studio-tabs .tab.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* Stats cards in studio */
.studio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.studio-stat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.studio-stat-card h4 {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}

.studio-stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}

.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 0.875rem;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════
   ADMIN PAGE
   ═══════════════════════════════════════ */

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
}

/* Reuse sidebar styles from studio */
.admin-layout .studio-sidebar {
  background: var(--accent);
  color: #ffffff;
}

.admin-layout .studio-sidebar .sidebar-logo {
  background: #ffffff;
  color: var(--accent);
}

.admin-layout .studio-sidebar .sidebar-title {
  color: #ffffff;
}

.admin-layout .studio-sidebar .sidebar-sub {
  color: rgba(255, 255, 255, 0.5);
}

.admin-layout .sidebar-section-label {
  color: rgba(255, 255, 255, 0.4);
}

.admin-layout .sidebar-nav .nav-item {
  color: rgba(255, 255, 255, 0.65);
}

.admin-layout .sidebar-nav .nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.admin-layout .sidebar-nav .nav-item.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.admin-layout .sidebar-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.admin-layout .sidebar-plan {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.admin-layout .sidebar-plan .plan-label {
  color: rgba(255, 255, 255, 0.4);
}

.admin-layout .sidebar-plan .plan-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.admin-layout .sidebar-user .user-avatar {
  background: rgba(255, 255, 255, 0.15);
}

.admin-layout .sidebar-user:hover {
  background: rgba(255, 255, 255, 0.08);
}

.admin-layout .sidebar-user .user-name {
  color: #ffffff;
}

.admin-layout .sidebar-user .user-email {
  color: rgba(255, 255, 255, 0.5);
}

/* Admin content */
.admin-content {
  background: var(--bg-alt);
  padding: 24px 28px;
  overflow-y: auto;
}

/* Admin table */
.admin-table {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-table .table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.admin-table .table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.875rem;
  align-items: center;
  transition: background var(--transition);
}

.admin-table .table-row:last-child {
  border-bottom: none;
}

.admin-table .table-row:hover {
  background: var(--bg-alt);
}

/* ═══════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════ */

.login-layout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.login-layout::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(600px circle at 30% 20%, rgba(17, 17, 17, 0.02) 0%, transparent 60%),
    radial-gradient(400px circle at 70% 80%, rgba(17, 17, 17, 0.02) 0%, transparent 60%);
}

.login-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 24px;
}

.login-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.login-card .login-logo {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  font-weight: 800;
  margin-bottom: 24px;
}

.login-card h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.login-card .login-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.login-card .btn-google {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.login-card .btn-google:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.login-card .login-alt {
  width: 100%;
  margin-bottom: 24px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 0.75rem;
  color: var(--muted-light);
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.login-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-footer .secure-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ═══════════════════════════════════════
   MODAL (shared)
   ═══════════════════════════════════════ */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

.modal.hidden {
  display: none;
}

.modal-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  width: 520px;
  max-width: 90vw;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header .modal-title {
  font-weight: 700;
  font-size: 1.125rem;
}

.modal-body {
  display: grid;
  gap: 14px;
}

.modal-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* ═══════════════════════════════════════
   FORM GRIDS
   ═══════════════════════════════════════ */

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.form-group label {
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

.mobile-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.sidebar-overlay {
  display: none;
}

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

  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero-home {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-home h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .studio-layout,
  .admin-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .mobile-topbar {
    display: flex;
  }

  .studio-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    z-index: 100;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
  }

  .studio-sidebar.show {
    left: 0;
  }

  /* Sidebar Overlay */
  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .sidebar-overlay.show {
    display: block;
    opacity: 1;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .admin-table .table-header,
  .admin-table .table-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .admin-table .table-header>*:nth-child(n+4),
  .admin-table .table-row>*:nth-child(n+4) {
    display: none;
  }

  .studio-stats {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   KS INNOVATORS LANDING
   ═══════════════════════════════════════ */

.ks-site {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 46%, #ffffff 100%);
}

.ks-site * {
  letter-spacing: 0;
}

.ks-site .hero-badge,
.ks-site .hero-home h1,
.ks-site .hero-subtitle,
.ks-site .hero-actions,
.ks-site .hero-trust,
.ks-site .stats-bar,
.ks-site .workflow-banner {
  animation: none;
  opacity: 1;
  transform: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ks-nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

.ks-nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ks-site .home-nav .nav-brand span {
  font-size: 0.98rem;
  font-weight: 800;
}

.ks-site .btn {
  border-radius: 8px;
}

.btn-icon,
.mini-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.mini-icon {
  width: 15px;
  height: 15px;
}

.ks-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
  text-align: left;
  padding-top: 132px;
  padding-bottom: 64px;
}

.ks-hero-copy {
  min-width: 0;
}

.ks-hero .hero-badge {
  margin-bottom: 22px;
}

.ks-hero h1 {
  font-size: 4rem;
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: 0;
  color: #111111;
}

.ks-hero h1 span {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  font-size: 1.62rem;
  line-height: 1.38;
  font-weight: 600;
  color: var(--ink-secondary);
}

.ks-hero .hero-subtitle {
  max-width: 680px;
  margin: 0 0 32px;
  color: #3f3f46;
}

.ks-hero .hero-actions,
.ks-hero .hero-trust {
  justify-content: flex-start;
}

.ks-hero .hero-trust {
  flex-wrap: wrap;
  gap: 14px;
  color: #52525b;
}

.ks-hero-visual {
  min-height: 520px;
  border: 1px solid #111111;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 244, 245, 0.78)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.05) 0, rgba(17, 17, 17, 0.05) 1px, transparent 1px, transparent 42px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 18px 18px 0 #111111;
}

.ks-hero-visual::before,
.ks-hero-visual::after {
  content: '';
  position: absolute;
  background: #111111;
}

.ks-hero-visual::before {
  width: 1px;
  height: 100%;
  left: 18%;
  top: 0;
  opacity: 0.12;
}

.ks-hero-visual::after {
  width: 100%;
  height: 1px;
  left: 0;
  top: 22%;
  opacity: 0.12;
}

.ks-hero-logo {
  width: min(82%, 460px);
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 1;
}

.ks-system-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.panel-row {
  padding: 16px;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}

.panel-row:last-child {
  border-right: 0;
}

.panel-row span {
  display: block;
  font-size: 0.74rem;
  color: #71717a;
  margin-bottom: 4px;
}

.panel-row strong {
  display: block;
  font-size: 0.92rem;
  color: #111111;
}

.ks-stats {
  border-radius: 8px;
  margin-bottom: 104px;
}

.ks-site .feature-card,
.ks-site .platform-card,
.ks-site .step-card,
.ks-site .pricing-card,
.ks-site .testimonial-card,
.ks-site .faq-item {
  border-radius: 8px;
}

.ks-site .feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.ks-site .feature-icon svg,
.ks-workflow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.ks-program-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.ks-program-card:hover {
  border-color: #111111;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ks-program-card.dark {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
  color: #71717a;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ks-program-card.dark .program-top {
  color: #d4d4d8;
}

.program-icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid currentColor;
  border-radius: 8px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ks-program-card h3 {
  font-size: 1.18rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.ks-program-card p {
  color: #52525b;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.ks-program-card.dark p {
  color: #d4d4d8;
}

.ks-program-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.ks-program-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3f3f46;
  font-size: 0.86rem;
}

.ks-program-card.dark li {
  color: #f4f4f5;
}

.ks-program-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 9px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
}

.ks-workflow {
  border-radius: 8px;
  margin-bottom: 104px;
}

.ks-workflow .wf-step {
  gap: 8px;
}

.ks-cta {
  border-radius: 8px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.ks-cta .cta-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.4rem;
}

.ks-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ks-cta .hero-actions {
  margin: 0;
}

.ks-cta .cta-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.ks-cta .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.ks-footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ks-site .footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  justify-content: center;
  margin: 15px 0;
}

.ks-site .footer-links a {
  color: #71717a;
}

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

  .ks-hero-visual {
    min-height: 440px;
    box-shadow: 12px 12px 0 #111111;
  }

  .ks-programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ks-nav-logo {
    width: 34px;
    height: 34px;
  }

  .ks-site .home-nav .nav-inner {
    padding: 0 16px;
  }

  .ks-site .home-nav .nav-brand span {
    font-size: 0.82rem;
  }

  .ks-hero {
    gap: 34px;
    padding-top: 100px;
    padding-bottom: 54px;
  }

  .ks-hero h1 {
    font-size: 2.8rem;
  }

  .ks-hero h1 span {
    font-size: 1.16rem;
  }

  .ks-hero .hero-actions,
  .ks-cta .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ks-hero .hero-actions .btn,
  .ks-cta .hero-actions .btn {
    width: 100%;
  }

  .ks-hero-visual {
    min-height: 360px;
    box-shadow: 8px 8px 0 #111111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px 14px 14px;
  }

  .ks-hero-logo {
    width: min(78%, 300px);
    max-height: 190px;
    transform: none;
    margin: auto;
  }

  .ks-system-panel {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .panel-row {
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .panel-row:last-child {
    border-bottom: 0;
  }

  .ks-workflow {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .ks-workflow .wf-arrow {
    display: none;
  }

  .ks-cta {
    padding: 44px 20px;
  }
}
