/* ============================================
   LINTASKOD — REDESIGNED STYLESHEET
   Clean, professional, conversion-focused
   ============================================ */

/* --- Reset & Custom Properties --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --surface: #FFFFFF;
  --text: #0F172A;
  --text-soft: #475569;
  --text-muted: #94A3B8;
  --accent: #1D4ED8;
  --accent-hover: #1E40AF;
  --accent-light: #EFF6FF;
  --wa: #25D366;
  --wa-hover: #1DA851;
  --wa-dark: #128C7E;
  --success: #059669;
  --success-light: #ECFDF5;
  --warning: #D97706;
  --error: #DC2626;
  --error-light: #FEF2F2;
  --border: #E2E8F0;
  --border-hover: #CBD5E1;
  --border-accent: #BFDBFE;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', ui-monospace, monospace;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

picture { display: contents; }
img { display: block; max-width: 100%; height: auto; }

main,
section,
nav,
footer,
.container,
.nav-inner,
.hero-grid,
.solution-grid,
.lead-grid,
.pricing-grid,
.showcase-slider,
.card {
  min-width: 0;
}

/* --- Container & Layout --- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow { max-width: 800px; }

.section {
  padding: 80px 0;
}

@supports (content-visibility: auto) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

.section-alt {
  background: var(--bg-alt);
}

/* --- Typography --- */
h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 600; line-height: 1.15; }

.section-kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--text);
}

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 600px;
  margin-bottom: 40px;
}

.section-lead em {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn-whatsapp:hover {
  background: var(--wa-hover);
  border-color: var(--wa-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn .wa-icon { flex-shrink: 0; }

/* --- Cards --- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card-icon svg { width: 20px; height: 20px; }

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text { display: flex; }
.text-lintas { color: var(--accent); }
.text-kod { color: var(--error); }

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.nav-hamburger:hover { background: var(--bg-alt); border-color: var(--border-hover); }

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  pointer-events: none;
}

.mobile-menu.is-open {
  display: block;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88%);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom, 24px);
  box-shadow: -8px 0 32px rgba(0,0,0,0.08);
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.mobile-menu-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-menu-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-menu-close:hover { background: var(--bg-alt); color: var(--text); border-color: var(--border-hover); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin: 2px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-nav a::after {
  content: '\2192';
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.mobile-menu-nav a:hover { background: var(--accent-light); color: var(--accent); }
.mobile-menu-nav a:hover::after { color: var(--accent); transform: translateX(3px); }

.mobile-menu-cta { padding-top: 16px; margin-top: auto; }

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}

body.menu-open { overflow: hidden; }

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 48px 0 80px;
  background: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--accent-light);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 24px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-badge:hover {
  background: #DBEAFE;
  border-color: var(--accent);
}

.hero-badge strong { color: var(--error); font-weight: 700; }

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero headline */
h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--text);
}

h1 .line { display: block; }

/* Rotating word */
.rotator-wrap {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-top: -1.08em;
}

.rotator-fallback { visibility: visible; }
.rotator-ready .rotator-fallback { opacity: 0; }

.rotator {
  display: inline-block;
  position: relative;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: width;
}

.rotator-measure {
  position: absolute;
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
  font-style: italic;
  font-weight: 500;
  padding-right: 0.3em;
}

.rotator-list {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

.rotator-word {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding-right: 0.3em;
  white-space: nowrap;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.rotator-word, .rotator-measure { font-size: inherit; }

.rotator-word.active { opacity: 1; transform: translateY(0); }
.rotator-word.is-initial { transition: none; }

.rotator-word.exiting {
  opacity: 0;
  transform: translateY(-100%);
  transition:
    opacity 0.35s cubic-bezier(0.65, 0, 0.35, 1),
    transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.rotator-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 1s infinite;
  transform: translateY(-0.05em);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.2; }
}

.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.hero-lead em {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.hero-cta { margin-bottom: 28px; }

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-item svg { color: var(--success); flex-shrink: 0; }

/* Browser frame (hero visual) */
.browser-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-xl);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #22C55E; }

.browser-url, .browser-bar strong {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.browser-bar strong {
  margin-left: auto;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
}

.browser-body { padding: 12px; }

.browser-body img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  object-fit: cover;
  object-position: center top;
}

.hero-visual .browser-frame {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual:hover .browser-frame {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.pain-card {
  display: flex;
  flex-direction: column;
}

.pain-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  overflow-wrap: break-word;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pain-bridge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  background: var(--accent-light);
}

.pain-bridge p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.pain-bridge strong { color: var(--text); }

.bridge-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bridge-metric .value {
  font-size: 36px;
  font-weight: 700;
  color: var(--success);
  letter-spacing: -0.04em;
  line-height: 1;
}

.bridge-metric .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.solution-copy { max-width: 480px; }

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg-alt);
}

.solution-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  padding: 20px;
}

.feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
}

.feature-card .card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.feature-card .card-icon svg { width: 18px; height: 18px; }

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.process-step {
  position: relative;
  padding: 24px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-line {
  position: absolute;
  top: 48px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: var(--border);
}

.process-step:last-child .step-line { display: none; }

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

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

/* ============================================
   PRICING
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.pricing-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--error-light);
  color: var(--error);
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-badge-accent {
  background: var(--accent-light);
  color: var(--accent);
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-original {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-original del { color: var(--text-soft); }

.pricing-slot {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--error-light);
  color: var(--error);
  margin-bottom: 12px;
}

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

.pricing-price strong {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-save {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--success-light);
  color: var(--success);
  margin-bottom: 24px;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

.pricing-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  margin-top: 7px;
}

.pricing-meta {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  margin-bottom: 20px;
}

.pricing-meta span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-note {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-note strong { color: var(--text-soft); }

/* ============================================
   SHOWCASE
   ============================================ */

.showcase-slider {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.showcase-frame .browser-bar strong {
  font-size: 14px;
}

.showcase-shot {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center top;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.showcase-shot.is-switching { opacity: 0; transform: translateY(4px); }

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.showcase-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.showcase-arrow:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--bg-alt);
}

.showcase-arrow svg { width: 18px; height: 18px; }

.showcase-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--border-hover);
  cursor: pointer;
  padding: 0;
  transition: width 0.2s, background 0.2s;
}

.showcase-dot.active {
  width: 28px;
  background: var(--accent);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.compare-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.compare-highlight {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.88), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-sm);
}

.compare-highlight span {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}

.compare-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.compare-highlight p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.compare-wrap { margin-bottom: 28px; }

.compare-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.compare-scroll-hint {
  display: none;
  text-align: center;
  padding: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1120px;
}

.compare-table thead {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  border-bottom: 1px solid var(--border-accent);
}

.compare-table th {
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.col-criteria { min-width: 210px; }

.col-highlight {
  background: var(--accent-light) !important;
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
  box-shadow: inset 0 3px 0 var(--accent);
}

.brand-name {
  display: block;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--accent);
}

.badge-recommend {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table th:not(.col-criteria):not(.col-highlight) {
  border-left: 1px solid var(--border);
}

.compare-table td {
  padding: 20px 24px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table tbody tr:hover td {
  background: #F8FAFC;
}

.cell-criteria {
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.3;
}

.criteria-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.criteria-icon svg { width: 19px; height: 19px; }

.cell-highlight {
  background: rgba(239, 246, 255, 0.72);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
  color: var(--text);
  font-weight: 600;
}

.icon-check, .icon-cross, .icon-neutral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

.icon-check { background: var(--success-light); color: var(--success); }
.icon-cross { background: var(--error-light); color: var(--error); }
.icon-neutral { background: var(--bg-alt); color: var(--text-muted); }

.compare-summary {
  padding: 16px 20px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  background: var(--accent-light);
}

.compare-summary p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.compare-summary strong { color: var(--text); }

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--border-hover); }

.faq-item summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-light);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
  background: var(--success-light);
  color: var(--success);
}

.faq-item p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  padding: 0 20px 20px;
  max-width: 680px;
}

/* ============================================
   LEAD MAGNET
   ============================================ */

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lead-form {
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

.lead-form input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.lead-form input::placeholder { color: var(--text-muted); }

.lead-form input:focus {
  border-color: var(--accent);
  background: var(--surface);
}

.lead-form button {
  width: 100%;
  margin-top: 4px;
}

/* ============================================
   FINAL CTA
   ============================================ */

.section-cta {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}

.section-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
  color: #fff;
}

.section-cta p {
  font-size: 17px;
  color: var(--slate-400, #94A3B8);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background:
    linear-gradient(180deg, #0F172A 0%, #08111F 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #94A3B8;
}

.footer-content {
  padding: 56px 24px 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.footer-brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-brand-text .text-lintas { color: #60A5FA; }
.footer-brand-text .text-kod { color: #F87171; }

.footer-tagline {
  max-width: 300px;
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.65;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-width: 0;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 4px;
}

.footer-nav-group a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 0.2s, transform 0.2s;
}

.footer-nav-group a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  gap: 16px;
}

.footer-copy { font-size: 13px; color: #64748B; }

.footer-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #64748B;
  text-transform: uppercase;
}

.footer-meta a {
  color: inherit;
  text-decoration: none;
}

.footer-meta a:hover {
  color: #fff;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  background: var(--bg-alt);
  padding: 72px 0;
}

.legal-container {
  max-width: 860px;
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 14px;
}

.legal-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.legal-card h2:first-of-type {
  margin-top: 28px;
}

.legal-card p {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-footer-bottom {
  border-top: 0;
  padding-top: 0;
}

/* ============================================
   INTERACTIVE CHECKLIST
   ============================================ */

.checklist-body {
  background: var(--bg-alt);
}

.error-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eff6ff 100%);
}

.error-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px clamp(18px, 4vw, 48px) 42px;
}

.error-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.error-hero {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 0;
}

.error-code {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: clamp(72px, 17vw, 168px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: 0;
}

.error-hero h1 {
  max-width: 780px;
  margin: 10px 0 18px;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.error-copy {
  max-width: 620px;
  color: var(--text-soft);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.interactive-checklist {
  background: var(--bg-alt);
}

.checklist-hero {
  padding: 64px 0 34px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.checklist-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: end;
}

.checklist-intro h1 {
  max-width: 820px;
  margin: 10px 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.checklist-intro p {
  max-width: 680px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.score-panel {
  padding: 24px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  background: var(--accent-light);
}

.score-label {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.score-panel p {
  margin: 8px 0 16px;
  color: var(--text-soft);
  font-weight: 600;
}

.score-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbeafe;
}

.score-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 0.25s ease;
}

.checklist-section {
  padding-top: 34px;
}

.checklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.checklist-form,
.result-card {
  min-width: 0;
}

.checklist-group {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.checklist-group-header {
  padding: 18px 0 8px;
}

.checklist-group-header span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checklist-group-header h2 {
  margin-top: 4px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.check-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.check-item:has(input:checked) {
  border-color: var(--border-accent);
  background: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.check-item input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.check-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
}

.check-item small {
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.55;
}

.result-card {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  padding: 24px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.result-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.result-card h2 {
  margin-bottom: 10px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.result-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.lead-mini-form {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.lead-mini-form label {
  display: grid;
  gap: 5px;
}

.lead-mini-form span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.lead-mini-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.lead-mini-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.checklist-wa {
  width: 100%;
  min-height: 48px;
}

.checklist-pdf-link {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}

.checklist-pdf-link:hover {
  color: var(--accent);
}

/* ============================================
   QUALIFY MODAL
   ============================================ */

.qualify-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.qualify-modal.is-open {
  display: flex;
  animation: modal-fade 0.2s ease;
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.qualify-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.qualify-modal-content {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xl);
  animation: modal-slide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.qualify-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-soft);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.qualify-modal-close:hover { background: var(--bg-alt); color: var(--text); border-color: var(--border-hover); }

.qualify-modal-header { margin-bottom: 24px; padding-right: 36px; }

.qualify-modal-header h3 {
  margin: 8px 0;
  font-size: 22px;
}

.qualify-modal-header p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }

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

.qualify-field { display: grid; gap: 6px; }

.qualify-field span { font-size: 13px; font-weight: 600; color: var(--text-soft); }

.qualify-field input,
.qualify-field select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.qualify-field input::placeholder { color: var(--text-muted); }

.qualify-field input:focus,
.qualify-field select:focus {
  border-color: var(--accent);
  background: var(--surface);
}

.qualify-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.qualify-field option { color: var(--text); background: var(--surface); }

.qualify-form button {
  width: 100%;
  margin-top: 4px;
}

body.modal-open { overflow: hidden; }

/* ============================================
   MOBILE SCROLL TO TOP
   ============================================ */

.scroll-top-btn {
  display: none;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grouped items */
.reveal-group > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-group > .reveal:nth-child(6) { transition-delay: 400ms; }

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */

*:focus { outline: none; }

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.15);
}

.lead-form input:focus-visible,
.qualify-field input:focus-visible,
.qualify-field select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

@media (min-width: 1440px) {
  .container {
    max-width: 1520px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
  }

  .hero-content {
    max-width: 650px;
  }

  .hero-lead {
    max-width: 620px;
  }

  .pain-grid {
    gap: 22px;
  }

  .solution-grid,
  .lead-grid {
    gap: 72px;
  }

  .pricing-grid {
    gap: 32px;
  }

  .showcase-slider {
    max-width: 1280px;
  }
}

/* ============================================
   RESPONSIVE — TABLET (max 968px)
   ============================================ */

@media (max-width: 968px) {
  .site-nav {
    height: auto;
    min-height: var(--nav-h);
  }

  .nav-inner {
    min-height: var(--nav-h);
    gap: 12px;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .brand-text { display: none; }
  .brand-logo { width: 32px; height: 32px; }

  .hero { padding: 32px 0 60px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content { max-width: none; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta { display: flex; justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .rotator-wrap {
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }

  .rotator {
    text-align: center;
  }

  .rotator-word {
    left: 50%;
    transform: translate(-50%, 100%);
  }

  .rotator-word.active {
    transform: translate(-50%, 0);
  }

  .rotator-word.exiting {
    transform: translate(-50%, -100%);
  }

  .hero-visual { width: 100%; min-width: 0; }

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

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .solution-copy { max-width: none; }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .step-line { display: none; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================ */

@media (max-width: 640px) {
  :root { --nav-h: 56px; }

  .container { padding: 0 16px; }

  .section { padding: 48px 0; }

  .error-page {
    padding: 18px 18px 34px;
  }

  .error-nav .brand-text {
    display: flex;
  }

  .error-hero {
    padding: 54px 0;
  }

  .error-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .error-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-kicker { font-size: 11px; margin-bottom: 10px; }
  .section-heading {
    font-size: clamp(22px, 6.5vw, 32px);
    margin-bottom: 12px;
  }
  .section-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .site-nav {
    width: 100%;
  }

  .nav-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-panel {
    width: min(100%, 340px);
    max-width: calc(100vw - 20px);
  }

  .mobile-menu-nav a,
  .mobile-menu-cta .btn {
    white-space: normal;
  }

  .mobile-menu-cta .btn {
    min-height: 48px;
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Hero mobile */
  .hero { padding: 24px 0 48px; }

  h1 {
    font-size: clamp(30px, 9vw, 40px);
    margin-bottom: 14px;
    letter-spacing: -0.025em;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 10px 5px 8px;
    margin-bottom: 18px;
    gap: 6px;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.35;
  }

  .hero-badge span:last-child {
    min-width: 0;
  }

  .rotator-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    overflow: visible;
  }

  .rotator {
    max-width: calc(100vw - 48px);
  }

  .rotator-fallback {
    display: none;
  }

  .rotator-ready .rotator-fallback {
    display: none;
  }

  .badge-dot { width: 6px; height: 6px; }

  .hero-lead {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-cta { margin-bottom: 20px; }

  .hero-cta .btn,
  .process-cta .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    line-height: 1.25;
  }

  .hero-trust {
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }

  .trust-item {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    font-size: 10.5px;
    gap: 4px;
  }

  .trust-item svg { width: 12px; height: 12px; }

  /* Browser frame mobile */
  .browser-frame {
    border-radius: 10px;
    max-width: 100%;
  }
  .browser-bar { padding: 8px 12px; }
  .browser-body { padding: 8px; }
  .hero-visual .browser-body img,
  .showcase-shot {
    max-height: 360px;
    object-fit: contain;
  }
  .browser-dots span { width: 8px; height: 8px; }
  .browser-url { display: none; }
  .browser-bar strong { font-size: 12px; }

  /* Pain cards mobile */
  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-card { padding: 18px; }
  .pain-card h3 { font-size: 16px; }
  .pain-card p { font-size: 13px; }

  .pain-bridge {
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
    text-align: center;
  }

  .bridge-metric { white-space: normal; justify-content: center; }
  .bridge-metric .value { font-size: 28px; }

  /* Solution mobile */
  .solution-features { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 16px; }

  /* Process mobile */
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step {
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .process-step:last-child { border-bottom: none; }
  .step-num { margin-bottom: 10px; width: 40px; height: 40px; font-size: 13px; }
  .process-step h3 { font-size: 16px; margin-bottom: 6px; }
  .process-step p { font-size: 13px; }

  /* Pricing mobile */
  .pricing-card { padding: 20px; }
  .pricing-card h3 { font-size: 24px; }
  .pricing-price strong { font-size: 36px; }
  .pricing-desc { font-size: 14px; margin-bottom: 16px; }
  .pricing-meta { padding: 12px; }
  .pricing-meta span { font-size: 12px; }
  .pricing-list li { font-size: 13px; }
  .pricing-cta,
  .pricing-cta.btn,
  .pricing-cta .btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
    padding: 12px 16px;
    white-space: normal;
    line-height: 1.25;
  }

  /* Comparison table mobile */
  .compare-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }
  .compare-highlight {
    min-height: 0;
    padding: 16px;
  }
  .compare-highlight span {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .compare-highlight strong {
    font-size: 15px;
  }
  .compare-highlight p {
    font-size: 13px;
  }
  .compare-scroll-hint { display: block; }
  .compare-scroll-wrap {
    margin-left: -4px;
    margin-right: -4px;
    border-radius: 10px;
  }
  .compare-table { min-width: 860px; }
  .compare-table th,
  .compare-table td {
    padding: 14px 12px;
    font-size: 12.5px;
  }
  .compare-table th { font-size: 13px; }
  .compare-table td.cell-criteria {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    white-space: normal;
    min-width: 140px;
  }
  .brand-name { font-size: 16px; }
  .badge-recommend { font-size: 9px; padding: 3px 8px; }
  .criteria-icon { width: 32px; height: 32px; }
  .criteria-icon svg { width: 16px; height: 16px; }
  .icon-check,
  .icon-cross,
  .icon-neutral {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  .compare-summary { padding: 14px 16px; }
  .compare-summary p { font-size: 13px; }

  /* FAQ mobile */
  .faq-item summary {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 14px;
  }
  .faq-item p { padding: 0 16px 16px; font-size: 14px; }

  /* Showcase mobile */
  .showcase-controls {
    gap: 8px;
    max-width: 100%;
    overflow: hidden;
  }
  .showcase-arrow { width: 36px; height: 36px; }
  .showcase-dots {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
  .showcase-dot.active { width: 24px; }

  /* Lead form mobile */
  .lead-form { padding: 20px; }

  /* Final CTA mobile */
  .section-cta h2 { font-size: clamp(22px, 6vw, 32px); }
  .section-cta p { font-size: 15px; }
  .section-cta .btn {
    width: 100%;
    min-height: 50px;
    white-space: normal;
    line-height: 1.25;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .legal-page {
    padding: 44px 0;
  }

  .legal-page h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  .legal-card {
    padding: 22px;
    border-radius: var(--radius);
  }

  .legal-card h2 {
    margin-top: 24px;
    font-size: 18px;
  }

  .legal-card p {
    font-size: 14.5px;
  }

  .checklist-hero {
    padding: 38px 0 24px;
  }

  .checklist-shell,
  .checklist-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .checklist-intro h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  .checklist-intro p {
    font-size: 15px;
  }

  .score-panel {
    padding: 18px;
  }

  .score-panel strong {
    font-size: 38px;
  }

  .checklist-section {
    padding-top: 20px;
  }

  .checklist-group-header h2 {
    font-size: 23px;
  }

  .check-item {
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 15px;
  }

  .check-item strong {
    font-size: 14.5px;
  }

  .check-item small {
    font-size: 12.5px;
  }

  .result-card {
    position: static;
    padding: 18px;
  }

  .result-card h2 {
    font-size: 23px;
  }

  .scroll-top-btn {
    position: fixed;
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: var(--bg-dark);
    color: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  }

  .scroll-top-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .scroll-top-btn svg {
    width: 20px;
    height: 20px;
  }

  .scroll-top-btn:active {
    background: var(--accent);
    transform: translateY(1px) scale(0.98);
  }

  /* Footer mobile */
  .footer-content { padding: 36px 16px 22px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 26px;
  }

  .footer-brand {
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.035);
  }

  .footer-brand-row {
    gap: 10px;
  }

  .footer-logo {
    width: 34px;
    height: 34px;
  }

  .footer-brand-text {
    font-size: 17px;
  }

  .footer-tagline {
    max-width: none;
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-nav-group {
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.025);
  }

  .footer-nav-title {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .footer-nav-group a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
  }

  .footer-nav-group a:first-of-type {
    border-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding-top: 18px;
  }
  .footer-copy {
    max-width: 260px;
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-meta {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

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

  .nav-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 9px;
  }

  h1 {
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.1;
  }

  .hero-trust { gap: 5px; }
  .trust-item { font-size: 10px; }

  .hero-visual .browser-body img,
  .showcase-shot {
    max-height: 300px;
  }

  .pain-card { padding: 14px; }
  .pain-card h3 { font-size: 15px; }
  .pain-card p { font-size: 12px; }

  .pricing-card { padding: 16px; }
  .pricing-card h3 { font-size: 22px; }
  .pricing-price strong { font-size: 32px; }

  .footer-content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-brand,
  .footer-nav-group {
    padding: 14px;
  }

  .qualify-modal { padding: 12px; }
  .qualify-modal-content {
    padding: 24px;
    max-height: calc(100dvh - 24px);
  }
  .qualify-modal-header h3 { font-size: 20px; }
}

@media (max-width: 360px) {
  .container { padding: 0 10px; }

  .nav-hamburger {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 27px;
  }

  .btn {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-trust { gap: 4px; }
  .trust-item { font-size: 9.5px; }
  .trust-item svg { width: 10px; height: 10px; }

  .pricing-price strong {
    font-size: 30px;
  }

  .compare-table {
    min-width: 820px;
  }
}

/* Image ownership / download deterrent */
img { -webkit-user-drag: none; user-select: none; }
.browser-body { position: relative; overflow: hidden; }
.browser-body::after { content: "LintasKod Solution"; position: absolute; inset: 12px; z-index: 5; display: flex; align-items: center; justify-content: center; border-radius: 6px; pointer-events: auto; color: rgba(15, 23, 42, 0.18); font-family: var(--mono); font-size: clamp(18px, 3vw, 34px); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45); transform: rotate(-18deg); }
.browser-body::before { content: ""; position: absolute; inset: 12px; z-index: 4; border-radius: 6px; pointer-events: none; background-image: repeating-linear-gradient(-32deg, rgba(15, 23, 42, 0.055) 0 1px, transparent 1px 64px); }
.browser-body img { pointer-events: none; }
@media (max-width: 640px) { .browser-body::after { inset: 8px; font-size: clamp(14px, 5vw, 22px); } .browser-body::before { inset: 8px; } }
