/* ============================================
   KMH IT — Design System (Option C: Bold & Direct)
   Colors: #0d0d12 bg, #00ff88 accent, #ff4444 danger
   Fonts: Space Grotesk (headings), Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

/* === Reset & Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-color: #00ff88 #0d0d12; }

/* Scrollbar — Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d0d12; }
::-webkit-scrollbar-thumb { background: #00ff88; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #00e67a; }

body {
  font-family: 'Inter', sans-serif;
  background: #0d0d12;
  color: #c0c0c0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .price, .stat-num, .nav-brand {
  font-family: 'Space Grotesk', sans-serif;
}

a { color: #00ff88; text-decoration: none; transition: all 0.3s; }
a:hover { color: #00e67a; }

img { max-width: 100%; height: auto; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 18, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.nav-brand span { color: #00ff88; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: #ffffff; }

/* Nav CTA Button */
.nav-cta a {
  background: #00ff88;
  color: #0d0d12 !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta a:hover {
  background: #00e67a;
  box-shadow: 0 0 12px rgba(0,255,136,0.25);
  color: #0d0d12 !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  padding-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu ul {
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #999;
}

.dropdown-menu li a:hover {
  color: #00ff88;
  background: rgba(0,255,136,0.04);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-close { display: none; }

/* === Hero Section === */
.hero {
  padding: 140px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(ellipse at 15% 70%, rgba(0, 255, 136, 0.04) 0%, transparent 50%);
}

.hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: #00ff88;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.hero h1 em {
  font-style: normal;
  color: #00ff88;
}

.hero .lead {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00ff88;
  color: #0d0d12;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: #00e67a;
  color: #0d0d12;
  box-shadow: 0 0 40px rgba(0,255,136,0.2);
}

.hero-cta .arrow { font-size: 1.1rem; }

.hero .price-hint {
  font-size: 0.85rem;
  color: #888;
  margin-top: 12px;
}

/* Hero with video variant */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-video video,
.hero-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.hero-video .play-overlay:hover {
  background: rgba(0,0,0,0.15);
}

.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(0, 255, 136, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0,255,136,0.3);
}

.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #0d0d12;
  margin-left: 3px;
}

/* === Proof Strip === */
.proof-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.proof-item {
  background: #0d0d12;
  padding: 28px 32px;
  transition: background 0.3s;
}

.proof-item:hover {
  background: #111118;
}

.proof-item .proof-highlight {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.4;
}

.proof-item .proof-highlight em {
  font-style: normal;
  color: #00ff88;
}

.proof-item .proof-detail {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
}

/* === Sections === */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.section .section-lead {
  font-size: 1rem;
  color: #aaa;
  max-width: 600px;
  margin-bottom: 48px;
  margin-top: -20px;
}

/* === Service Cards (Front page) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: #0d0d12;
  padding: 40px 32px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: #111118;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 255, 136, 0.06);
}

.service-card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  filter: grayscale(0);
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-card .card-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00ff88;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.service-card:hover .card-link {
  gap: 10px;
}

/* === Feature Grid (2 columns) === */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}

.feature-cell {
  background: #0d0d12;
  padding: 32px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-cell:hover {
  background: #111118;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.04);
}

.feature-cell .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4a9eff;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.feature-cell h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-cell p {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.6;
}

/* === Pricing === */
.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: 140px 120px 1fr 160px;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: #0d0d12;
  transition: background 0.3s;
}

.price-row:hover {
  background: #111118;
}

.price-row.highlight {
  background: rgba(0,255,136,0.03);
  border-left: 3px solid #00ff88;
}

.pr-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.pr-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ff88;
}

.pr-desc {
  font-size: 0.85rem;
  color: #999;
}

.pr-btn { text-align: right; }

.pr-btn a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.pr-btn a:hover {
  border-color: #00ff88;
  color: #00ff88;
}

/* === Danger Zone === */
.danger {
  background: rgba(255,60,60,0.04);
  border: 1px solid rgba(255,60,60,0.1);
  border-radius: 16px;
  padding: 40px;
  margin-top: 48px;
}

.danger h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #ff4444;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.danger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.danger-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #999;
}

.danger-item .icon {
  color: #ff4444;
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* (Old testimonials block removed — styles now in single block below) */

/* === Review Topics (green variant of danger zone) === */
.review-topics {
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.12);
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
}

.review-topics h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #00ff88;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}

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

.review-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.review-item .icon {
  color: #00ff88;
  font-size: 0.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* === Sample Report === */
.sample-report {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #00ff88;
  border-radius: 8px;
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.sample-report-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.sample-report-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.sample-report-content p {
  color: #c0c0c0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* === About / Why Me === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  font-size: 0.92rem;
  color: #999;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text strong {
  color: #ffffff;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
}

.about-highlight-item {
  background: #0d0d12;
  padding: 20px 24px;
}

.about-highlight-item h3,
.about-highlight-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00ff88;
  margin-bottom: 4px;
}

.about-highlight-item p {
  font-size: 0.82rem;
  color: #999;
}

.experience-areas {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.experience-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

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

.exp-tag {
  font-size: 0.78rem;
  color: #ccc;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  border-left: 3px solid;
}

.exp-tag.c1 { border-left-color: #4a9eff; }
.exp-tag.c2 { border-left-color: #00ff88; }
.exp-tag.c3 { border-left-color: #ff6b6b; }
.exp-tag.c4 { border-left-color: #ffd93d; }
.exp-tag.c5 { border-left-color: #a78bfa; }
.exp-tag.c6 { border-left-color: #f97316; }
.exp-tag.c7 { border-left-color: #2dd4bf; }
.exp-tag.c8 { border-left-color: #f472b6; }

/* === FAQ Grid === */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}

.faq-cell {
  background: #0d0d12;
  padding: 28px;
  transition: background 0.3s;
}

.faq-cell:hover {
  background: #111118;
}

.faq-cell h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.faq-cell p {
  font-size: 0.85rem;
  color: #999;
}

/* Mobile comparison cards — hidden on desktop */
.comparison-mobile { display: none; }

/* === Comparison Note (green accent box) === */
.comparison-note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: 8px;
}
.comparison-note p {
  font-size: 0.88rem;
  color: #999;
  margin: 0;
}

/* === Standalone Line (hero accent) === */
.standalone-line {
  font-size: 1.15rem;
  color: #c0c0c0;
  margin-bottom: 32px;
  display: block;
  font-weight: 500;
}

/* === Danger / Success Boxes (global) === */
.danger-box {
  background: rgba(255, 68, 68, 0.04);
  border-left: 3px solid #ff4444;
  border-radius: 0 8px 8px 0;
  padding: 16px 24px;
  margin: 16px 0;
}
.danger-box p {
  font-size: 0.88rem;
  color: #cc8888;
  margin-bottom: 0;
}
.danger-box + .success-box {
  margin-top: 24px;
}
.success-box {
  background: rgba(0, 255, 136, 0.04);
  border-left: 3px solid #00ff88;
  border-radius: 0 8px 8px 0;
  padding: 16px 24px;
  margin: 16px 0;
}
.success-box p {
  font-size: 0.88rem;
  color: #88ccaa;
  margin-bottom: 0;
}

/* === Bottom CTA === */
.bottom-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bottom-cta h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.bottom-cta p {
  color: #999;
  font-size: 0.95rem;
}

.bottom-cta .actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.bottom-cta a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

/* === Buttons === */
.cta-green {
  background: #00ff88;
  color: #0d0d12 !important;
  font-weight: 600;
}

.cta-green:hover {
  background: #00e67a;
  color: #0d0d12 !important;
  box-shadow: 0 0 30px rgba(0,255,136,0.2);
}

.cta-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff !important;
}

.cta-outline:hover {
  border-color: #00ff88;
  color: #00ff88 !important;
}

/* === Footer === */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 0.8rem;
  color: #888;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: #888;
  text-decoration: none;
}

.footer-links a:hover { color: #00ff88; }

/* === Step List (for service pages) === */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
  counter-reset: step;
}

.step-item {
  background: #0d0d12;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  counter-increment: step;
}

.step-item .step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ff88;
  padding-top: 2px;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.step-item p {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.6;
}

/* === Comparison Table (for remontti) === */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-header {
  background: #111118;
  padding: 16px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-cell {
  background: #0d0d12;
  padding: 16px 24px;
  font-size: 0.85rem;
  color: #999;
}

.comparison-cell.label {
  color: #ffffff;
  font-weight: 500;
}


/* === Responsive === */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  /* Comparison table: stacked cards on mobile */
  .comparison-grid {
    display: none;
  }
  .comparison-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .comparison-mobile-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .comparison-mobile-card .cmc-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .comparison-mobile-card .cmc-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.82rem;
  }
  .comparison-mobile-card .cmc-type {
    color: #00ff88;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .comparison-mobile-card .cmc-value {
    color: #999;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 120px 20px 60px; }
  .feature-row, .danger-grid, .review-grid, .faq-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 8px; }
  .pr-btn { text-align: left; }
  .bottom-cta { grid-template-columns: 1fr; padding: 60px 20px; }
  .bottom-cta .actions { flex-direction: column; }
  .section { padding: 60px 20px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }

  /* Mobile nav — right side panel */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 75vw);
    height: 100dvh;
    background: rgba(13, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 28px 28px;
    gap: 0;
    border-left: 1px solid rgba(255,255,255,0.06);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 0.95rem; }
  .nav-toggle { display: block; z-index: 1002; }

  /* Close button inside panel */
  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
  }
  .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    padding-top: 0;
  }
  .dropdown-menu ul {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  justify-items: center;
}
.testimonial-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 0.9rem;
  color: #999;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-card blockquote::before {
  content: "\201C";
  font-size: 2rem;
  color: #00ff88;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-footer .name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #ffffff;
}
.testimonial-footer .role {
  font-size: 0.78rem;
  color: #888;
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .sample-report {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
}

/* Language Switcher */
.nav-lang a {
  color: #888;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-lang a:hover {
  color: #00ff88;
}
