/* King Lemon Law Theme Variables and Styling */
:root {
  --kll-lemon: #FFD700;
  --kll-lemon-light: #FFF8DC;
  --kll-lemon-dark: #E6BE00;
  --kll-dark: #1a1a2e;
  --kll-darker: #12122a;
  --kll-text: #2d2d3f;
  --kll-text-light: #6b6b80;
  --kll-white: #ffffff;
  --kll-green: #22c55e;
  --kll-green-dark: #16a34a;
  --kll-radius: 16px;
  --kll-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --kll-shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

.kll-widget-container {
  font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--kll-text);
  line-height: 1.6;
}

/* HEADER / NAV */
.kll-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
  z-index: 100;
}
.kll-nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
  background: linear-gradient(135deg, #b8860b, #d4a017, #c49000);
  padding: 8px 22px 8px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(184,134,11,0.25);
  position: relative;
}
.kll-nav-logo-text {
  font-size: 16px; font-weight: 800; color: var(--kll-white);
  letter-spacing: 2px; line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  padding-top: 22px;
  text-transform: none;
}
@keyframes sparkle { 0%,100%{opacity:0.3;transform:scale(0.8)} 50%{opacity:1;transform:scale(1.3)} }
@keyframes sparkle2 { 0%,100%{opacity:0.2;transform:scale(0.7)} 50%{opacity:1;transform:scale(1.4)} }
@keyframes sparkle3 { 0%,100%{opacity:0.4;transform:scale(0.9)} 50%{opacity:1;transform:scale(1.2)} }

.kll-nav-links { display: flex; gap: 28px; align-items: center; }
.kll-nav-links a {
  text-decoration: none; color: var(--kll-text-light); font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.kll-nav-links a:hover { color: var(--kll-dark); }
.kll-nav-phone {
  background: var(--kll-lemon); color: var(--kll-dark); padding: 10px 20px;
  border-radius: 50px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all 0.2s;
}
.kll-nav-phone:hover { background: var(--kll-lemon-dark); transform: scale(1.03); }

/* HERO */
.kll-hero {
  padding: 100px 40px 60px;
  background: linear-gradient(135deg, var(--kll-lemon-light) 0%, var(--kll-white) 50%, #fffef5 100%);
  position: relative;
  overflow: hidden;
}
.kll-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.kll-hero-grid {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.kll-hero-left { position: relative; z-index: 2; }
.kll-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kll-white); border: 1px solid rgba(255,215,0,0.4);
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--kll-dark);
  margin-bottom: 24px;
}
.kll-hero-badge .dot { width: 8px; height: 8px; background: var(--kll-green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.kll-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; line-height: 1.1;
  color: var(--kll-dark); margin-bottom: 20px;
  letter-spacing: -1px;
}
.kll-hero h1 em { font-style: normal; color: var(--kll-lemon-dark); }
.kll-hero-sub {
  font-size: 18px; color: var(--kll-text-light);
  margin-bottom: 28px; max-width: 480px;
}
.kll-hero-zero {
  background: linear-gradient(135deg, #fffbe6, #fff8dc);
  border: 2px solid var(--kll-lemon);
  border-radius: 12px; padding: 16px 20px;
  margin-bottom: 28px; max-width: 480px;
}
.kll-hero-zero strong { font-size: 20px; color: var(--kll-dark); }
.kll-hero-zero p { font-size: 14px; color: var(--kll-text-light); margin-top: 4px; }

.kll-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.kll-btn-primary {
  background: var(--kll-lemon); color: var(--kll-dark); padding: 16px 32px;
  border-radius: 50px; font-weight: 700; font-size: 16px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.kll-btn-primary:hover { background: var(--kll-lemon-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.3); }
.kll-btn-secondary {
  background: var(--kll-white); color: var(--kll-dark); padding: 16px 32px;
  border-radius: 50px; font-weight: 700; font-size: 16px;
  text-decoration: none; border: 2px solid #e0e0e0;
  transition: all 0.25s;
}
.kll-btn-secondary:hover { border-color: var(--kll-dark); }

.kll-hero-stats { display: flex; gap: 32px; }
.kll-stat { display: flex; align-items: center; gap: 14px; text-align: left; }
.kll-stat-left { display: flex; flex-direction: column; }
.kll-stat-val { font-size: 48px; font-weight: 800; color: var(--kll-dark); line-height: 1; }
.kll-stat-label { font-size: 15px; color: var(--kll-text-light); font-weight: 600; line-height: 1.2; margin-top: 0; }
.kll-stat-stars { color: var(--kll-lemon-dark); font-size: 20px; letter-spacing: 2px; margin-top: 6px; }

/* HERO RIGHT - LEMON TREE */
.kll-hero-right {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  min-height: 500px;
}
.kll-lemon-svg {
  width: 420px; height: 520px;
  filter: drop-shadow(0 20px 40px rgba(255,215,0,0.15));
}
@keyframes lemonFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes lemonDrop1 { 0%{transform:translate(0,0) rotate(0deg);opacity:1} 70%{opacity:1} 100%{transform:translate(-30px,180px) rotate(45deg);opacity:0} }
@keyframes lemonDrop2 { 0%{transform:translate(0,0) rotate(0deg);opacity:1} 70%{opacity:1} 100%{transform:translate(25px,200px) rotate(-60deg);opacity:0} }
@keyframes lemonDrop3 { 0%{transform:translate(0,0) rotate(0deg);opacity:1} 70%{opacity:1} 100%{transform:translate(-15px,160px) rotate(30deg);opacity:0} }
@keyframes lemonDrop4 { 0%{transform:translate(0,0) rotate(0deg);opacity:1} 70%{opacity:1} 100%{transform:translate(40px,190px) rotate(-45deg);opacity:0} }
@keyframes lemonDrop5 { 0%{transform:translate(0,0) rotate(0deg);opacity:1} 70%{opacity:1} 100%{transform:translate(-45px,170px) rotate(55deg);opacity:0} }
@keyframes sway { 0%,100%{transform:rotate(-2deg)} 50%{transform:rotate(2deg)} }

.kll-hero-video {
  width: 100%;
  max-width: 500px;
  border-radius: var(--kll-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  object-fit: cover;
  border: 4px solid var(--kll-white);
  z-index: 1;
  position: relative;
}

/* FLOATING MINI QUIZ */
.kll-floating-quiz {
  position: absolute;
  bottom: 20px; right: -10px;
  background: var(--kll-white);
  border-radius: var(--kll-radius);
  box-shadow: var(--kll-shadow-lg);
  padding: 24px;
  width: 280px;
  animation: slideInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s both;
  border: 1px solid rgba(255,215,0,0.2);
  z-index: 5;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

.kll-floating-quiz h3 { font-size: 15px; font-weight: 700; color: var(--kll-dark); margin-bottom: 14px; }
.kll-fq-input {
  width: 100%; padding: 10px 14px; border: 1px solid #e2e2e2;
  border-radius: 10px; font-size: 14px; margin-bottom: 10px;
  outline: none; transition: border 0.2s;
  background: #fff;
  color: var(--kll-text);
}
.kll-fq-input:focus { border-color: var(--kll-lemon-dark); }
.kll-fq-btn {
  width: 100%; padding: 12px; background: var(--kll-lemon);
  border: none; border-radius: 10px; font-weight: 700;
  font-size: 14px; color: var(--kll-dark); cursor: pointer;
  transition: all 0.2s;
}
.kll-fq-btn:hover { background: var(--kll-lemon-dark); }
.kll-fq-phone { text-align: center; margin-top: 10px; font-size: 13px; color: var(--kll-text-light); }
.kll-fq-phone a { color: var(--kll-dark); font-weight: 600; text-decoration: none; }

/* STATS BAR */
.kll-stats-bar {
  background: var(--kll-dark); padding: 32px 40px;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.kll-sb-item { text-align: center; color: var(--kll-white); }
.kll-sb-val { font-size: 32px; font-weight: 800; }
.kll-sb-val.gold { color: var(--kll-lemon); }
.kll-sb-label { font-size: 13px; opacity: 0.7; margin-top: 4px; }

/* TICKER */
.kll-ticker-wrap {
  background: linear-gradient(135deg, #fffbe6, #fff8dc);
  border-top: 2px solid var(--kll-lemon);
  border-bottom: 2px solid var(--kll-lemon);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.kll-ticker-wrap::before, .kll-ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
}
.kll-ticker-wrap::before { left: 0; background: linear-gradient(90deg, #fffbe6, transparent); }
.kll-ticker-wrap::after { right: 0; background: linear-gradient(90deg, transparent, #fffbe6); }
.kll-ticker-track {
  display: flex; gap: 0;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.kll-ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: 15px; font-weight: 600;
  color: var(--kll-dark);
}
.kll-ticker-item .t-brand { font-weight: 800; color: var(--kll-dark); }
.kll-ticker-item .t-model { color: var(--kll-text-light); }
.kll-ticker-item .t-result { color: #16a34a; font-weight: 700; }
.kll-ticker-sep { color: var(--kll-lemon-dark); padding: 0 6px; font-size: 18px; }

/* SECTIONS COMMON */
.kll-section { padding: 80px 40px; background: #fff; }
.kll-section-inner { max-width: 1100px; margin: 0 auto; }
.kll-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; color: var(--kll-dark);
  text-align: center; margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.kll-section-sub {
  text-align: center; color: var(--kll-text-light);
  font-size: 16px; margin-bottom: 48px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* WHO QUALIFIES */
.kll-qualify { background: #fafafa; }
.kll-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.kll-card {
  background: var(--kll-white); border-radius: var(--kll-radius);
  padding: 28px; border: 1px solid #eee;
  transition: all 0.25s;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
  row-gap: 12px;
}
.kll-card:hover { transform: translateY(-4px); box-shadow: var(--kll-shadow); border-color: var(--kll-lemon); }
.kll-card-icon { font-size: 32px; margin-bottom: 0; line-height: 1; }
.kll-card h3 { font-size: 17px; font-weight: 700; color: var(--kll-dark); margin-bottom: 0; line-height: 1.3; }
.kll-card p { font-size: 14px; color: var(--kll-text-light); line-height: 1.5; grid-column: 1 / span 2; margin-top: 4px; }

/* HOW IT WORKS */
.kll-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.kll-steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--kll-lemon), var(--kll-green));
}
.kll-step { text-align: center; position: relative; }
.kll-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--kll-lemon); color: var(--kll-dark);
  font-size: 28px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 2;
  border: 4px solid var(--kll-white);
  box-shadow: 0 4px 16px rgba(255,215,0,0.25);
}
.kll-step h3 { font-size: 16px; font-weight: 700; color: var(--kll-dark); margin-bottom: 6px; }
.kll-step p { font-size: 13px; color: var(--kll-text-light); }

/* WHY US */
.kll-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.kll-why-card {
  padding: 28px; border-radius: var(--kll-radius);
  background: linear-gradient(135deg, #fffef5, var(--kll-white));
  border: 1px solid rgba(255,215,0,0.2);
  text-align: center;
}
.kll-why-icon { font-size: 36px; margin-bottom: 12px; }
.kll-why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--kll-dark); }
.kll-why-card p { font-size: 14px; color: var(--kll-text-light); }

/* QUIZ */
.kll-quiz-section { background: var(--kll-dark); color: var(--kll-white); padding: 80px 40px; }
.kll-quiz-section .kll-section-title { color: var(--kll-white); }
.kll-quiz-section .kll-section-sub { color: rgba(255,255,255,0.6); }
.kll-quiz-box {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border-radius: var(--kll-radius);
  padding: 40px; border: 1px solid rgba(255,255,255,0.1);
}
.kll-quiz-progress {
  display: flex; gap: 8px; margin-bottom: 32px;
}
.kll-quiz-dot {
  flex: 1; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s;
}
.kll-quiz-dot.active { background: var(--kll-lemon); }
.kll-quiz-step-label {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 8px; font-weight: 600;
}
.kll-quiz-question {
  font-size: 22px; font-weight: 700; color: var(--kll-white);
  margin-bottom: 24px;
}
.kll-quiz-options { display: flex; flex-direction: column; gap: 10px; }
.kll-quiz-opt {
  padding: 16px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--kll-white); cursor: pointer;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s; text-align: left;
}
.kll-quiz-opt:hover { background: rgba(255,215,0,0.15); border-color: var(--kll-lemon); }
.kll-quiz-opt.selected { background: rgba(255,215,0,0.2); border-color: var(--kll-lemon); }
.kll-quiz-nav { display: flex; justify-content: space-between; margin-top: 28px; }
.kll-quiz-back {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: var(--kll-white); padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 0.2s;
}
.kll-quiz-back:hover { border-color: var(--kll-white); }
.kll-quiz-next {
  background: var(--kll-lemon); color: var(--kll-dark);
  border: none; padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: all 0.2s; margin-left: auto;
}
.kll-quiz-next:hover { background: var(--kll-lemon-dark); }
.kll-quiz-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* CONTACT FORM */
.kll-contact-form { display: none; flex-direction: column; gap: 14px; }
.kll-contact-form input[type="text"],
.kll-contact-form input[type="email"],
.kll-contact-form input[type="tel"],
.kll-contact-form textarea {
  width: 100% !important; padding: 14px 18px !important; border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  background: rgba(255,255,255,0.06) !important;
  color: var(--kll-white) !important; font-size: 15px !important;
  outline: none !important; transition: border 0.2s !important;
  font-family: inherit !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}
.kll-contact-form input::placeholder, .kll-contact-form textarea::placeholder { color: rgba(255,255,255,0.35) !important; }
.kll-contact-form input:focus, .kll-contact-form textarea:focus { border-color: var(--kll-lemon) !important; background: rgba(255,255,255,0.1) !important; }
.kll-contact-form textarea { resize: vertical !important; min-height: 80px !important; }
.kll-submit-btn {
  background: var(--kll-green); color: var(--kll-white);
  border: none; padding: 16px; border-radius: 50px;
  font-weight: 700; font-size: 16px; cursor: pointer;
  transition: all 0.2s;
}
.kll-submit-btn:hover { background: var(--kll-green-dark); transform: translateY(-1px); }
.kll-tos-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  line-height: 1.5; cursor: pointer;
}
.kll-tos-check input[type="checkbox"] {
  margin-top: 2px; width: 18px; height: 18px;
  accent-color: var(--kll-lemon); cursor: pointer; flex-shrink: 0;
}
.kll-tos-check a { text-decoration: underline; }

/* RESULT */
.kll-quiz-result { display: none; text-align: center; padding: 20px 0; }
.kll-result-icon { font-size: 72px; margin-bottom: 16px; }
.kll-result-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.kll-result-title.success { color: var(--kll-lemon); }
.kll-result-title.maybe { color: #f59e0b; }
.kll-result-title.consult { color: #60a5fa; }
.kll-result-desc { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.6; }
.kll-result-cta {
  display: inline-flex; background: var(--kll-lemon); color: var(--kll-dark);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 16px;
  text-decoration: none; transition: all 0.2s;
}
.kll-result-cta:hover { background: var(--kll-lemon-dark); transform: translateY(-2px); }

/* CONFETTI */
.kll-confetti-container {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 1000;
  overflow: hidden;
}
.kll-confetti-piece {
  position: absolute; width: 10px; height: 10px;
  top: -20px;
  animation: confettiFall 3s ease-in forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* FAQ */
.kll-faq-list { max-width: 720px; margin: 0 auto; }
.kll-faq-item {
  border-bottom: 1px solid #eee; overflow: hidden;
}
.kll-faq-q {
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--kll-dark);
  transition: color 0.2s;
}
.kll-faq-q:hover { color: var(--kll-lemon-dark); }
.kll-faq-arrow { font-size: 20px; transition: transform 0.3s; color: var(--kll-text-light); }
.kll-faq-item.open .kll-faq-arrow { transform: rotate(45deg); }
.kll-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.3s;
  font-size: 15px; color: var(--kll-text-light); line-height: 1.6;
}
.kll-faq-item.open .kll-faq-a { max-height: 1000px; padding-bottom: 20px; }

/* FOOTER */
.kll-footer {
  background: var(--kll-darker); color: rgba(255,255,255,0.5);
  padding: 40px; text-align: center; font-size: 13px;
}
.kll-footer a { color: var(--kll-lemon); text-decoration: none; }
.kll-footer-phone { font-size: 20px; font-weight: 700; color: var(--kll-white); margin-bottom: 8px; }
.kll-footer-links { display: flex; justify-content: center; gap: 24px; margin: 16px 0; flex-wrap: wrap; }
.kll-footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.kll-footer-links a:hover { color: var(--kll-lemon); }
.kll-footer-policy {
  max-width: 800px; margin: 24px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; color: rgba(255,255,255,0.35);
  line-height: 1.7; text-align: left;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .kll-nav {
    padding: 0 15px;
    height: 64px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .kll-nav-links { display: none; }
  .kll-nav-logo { padding: 6px 14px; flex-shrink: 0; }
  .kll-nav-logo-text { font-size: 13px; padding-top: 18px; letter-spacing: 0.5px; }
  .kll-nav-logo svg { width: 112px !important; height: 20px !important; top: -1px; }
  .kll-nav-phone { font-size: 12px; padding: 8px 14px; white-space: nowrap; flex-shrink: 0; }
  
  .kll-hero { padding: 25px 15px 30px; }
  .kll-hero h1 { font-size: 28px; margin-bottom: 12px; }
  .kll-hero-sub { font-size: 14px; margin-bottom: 16px; line-height: 1.4; }
  .kll-hero-zero { padding: 10px 15px; margin-bottom: 16px; }
  .kll-hero-zero strong { font-size: 16px; }
  .kll-hero-zero p { font-size: 13px; margin-top: 2px; }
  .kll-hero-badge { margin-bottom: 12px; }
  .kll-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .kll-hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    min-height: auto;
    width: 100%;
  }
  .kll-lemon-svg { width: 100%; max-width: 300px; height: auto; }
  .kll-hero-video { width: 100%; max-width: 100%; height: auto; border-width: 2px; }
  .kll-floating-quiz {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 0;
    padding: 20px;
    box-shadow: var(--kll-shadow-lg);
  }
  
  .kll-hero-stats { gap: 15px; flex-wrap: wrap; justify-content: center; }
  .kll-stat { flex: 1 1 45%; }
  .kll-stat-val { font-size: 24px; }
  .kll-stats-bar { gap: 20px; padding: 20px 15px; flex-direction: column; align-items: center; }
  .kll-sb-val { font-size: 26px; }
  .kll-section { padding: 50px 15px; }
  .kll-quiz-section { padding: 80px 15px; }
  
  .kll-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .kll-steps::before { display: none; }
  .kll-quiz-box { padding: 20px; }
  .kll-section-title { font-size: 28px; }
  .kll-cards { grid-template-columns: 1fr; }
}

@media(max-width:480px) {
  .kll-hero h1 { font-size: 32px; }
  .kll-hero-btns { flex-direction: column; width: 100%; }
  .kll-btn-primary, .kll-btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .kll-steps { grid-template-columns: 1fr; }
  .kll-stat { flex: 1 1 100%; }
  .kll-quiz-question { font-size: 18px; }
  .kll-quiz-nav { flex-direction: column; gap: 10px; }
  .kll-quiz-back, .kll-quiz-next { width: 100%; margin: 0; }
  .kll-footer { padding: 30px 15px; }
  .kll-footer-links { flex-direction: column; gap: 12px; }
  .kll-why-grid { grid-template-columns: 1fr; }
}

@media print {
  .kll-nav, .kll-floating-quiz, .kll-stats-bar, .kll-quiz-section, .kll-footer { display: none; }
  .kll-hero { min-height: auto; padding: 40px; }
  .kll-section { padding: 30px; break-inside: avoid; }
}
