/* =====================================================
   MYHANE Landing Page CSS
   Temaya uygun, modern SaaS
   ===================================================== */

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

:root {
  --l-accent: #2563eb;
  --l-accent-hover: #1d4ed8;
  --l-accent-soft: #eff6ff;
  --l-dark: #0f172a;
  --l-text: #1e293b;
  --l-text-muted: #64748b;
  --l-text-light: #94a3b8;
  --l-bg: #ffffff;
  --l-bg-soft: #f8fafc;
  --l-border: #e2e8f0;
  --l-success: #16a34a;
  --l-warning: #ca8a04;
  --l-danger: #dc2626;
  --l-radius: 14px;
  --l-radius-lg: 20px;
  --l-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --l-shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --l-shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--l-text);
  background: var(--l-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.l-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--l-border);
  z-index: 100;
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.l-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.3px;
  color: var(--l-dark);
}

.l-logo-icon {
  font-size: 24px;
}

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

.l-nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--l-text-muted);
  transition: all 0.2s;
}

.l-nav-link:hover,
.l-nav-link.active {
  color: var(--l-accent);
  background: var(--l-accent-soft);
}

.l-nav-cta {
  margin-left: 10px;
}

.l-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.l-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--l-dark);
  transition: all 0.2s;
}

/* ===== BUTTONS ===== */
.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.l-btn-primary {
  background: var(--l-accent);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.l-btn-primary:hover {
  background: var(--l-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.l-btn-secondary {
  background: white;
  color: var(--l-dark);
  border: 1.5px solid var(--l-border);
}

.l-btn-secondary:hover {
  border-color: var(--l-accent);
  color: var(--l-accent);
}

.l-btn-ghost {
  background: transparent;
  color: var(--l-text);
}

.l-btn-ghost:hover {
  background: var(--l-accent-soft);
  color: var(--l-accent);
}

.l-btn-lg {
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 14px;
}

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

/* ===== COMMON ===== */
.l-accent {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.l-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--l-accent-soft);
  color: var(--l-accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}

.l-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--l-accent);
  margin-bottom: 12px;
}

/* ===== HERO ===== */
.l-hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, #dbeafe 0%, transparent 60%),
    linear-gradient(180deg, var(--l-bg) 0%, var(--l-bg-soft) 100%);
}

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

.l-hero-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--l-dark);
  margin-bottom: 24px;
}

.l-hero-lead {
  font-size: 17px;
  color: var(--l-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.l-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.l-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--l-text-muted);
}

/* Hero visual / mockup */
.l-hero-visual {
  position: relative;
}

.l-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.l-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: var(--l-shadow-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s;
}

.l-mockup:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.l-mockup-bar {
  background: #f1f5f9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--l-border);
}

.l-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.l-dot.red { background: #ef4444; }
.l-dot.yellow { background: #eab308; }
.l-dot.green { background: #22c55e; }

.l-mockup-title {
  margin-left: 16px;
  font-size: 12px;
  color: var(--l-text-muted);
  font-weight: 500;
}

.l-mockup-body {
  padding: 30px 24px;
  background: linear-gradient(135deg, #eff6ff, #f3e8ff);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-height: 320px;
}

.l-mockup-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.2s;
}

.l-mockup-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.l-mi-emoji {
  font-size: 28px;
}

.l-mi-label {
  font-size: 10px;
  color: var(--l-text-muted);
  font-weight: 600;
  text-align: center;
}

/* ===== STATS ===== */
.l-stats-section {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid var(--l-border);
}

.l-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.l-stat-value {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  line-height: 1;
}

.l-stat-label {
  font-size: 13px;
  color: var(--l-text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.l-section {
  padding: 90px 0;
  position: relative;
}

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

.l-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.l-section-header h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--l-dark);
  margin-bottom: 16px;
}

.l-section-header p {
  font-size: 17px;
  color: var(--l-text-muted);
  line-height: 1.6;
}

/* ===== WHY CARDS ===== */
.l-whys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l-why-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.l-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--l-shadow-md);
  border-color: transparent;
}

.l-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.l-why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.l-why-card p {
  color: var(--l-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.l-why-card ul {
  list-style: none;
  font-size: 14px;
  color: var(--l-text);
}

.l-why-card li {
  padding: 4px 0;
  font-weight: 500;
}

/* ===== FEATURES GRID ===== */
.l-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.l-feat-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius);
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.l-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c, var(--l-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.l-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--l-shadow-md);
}

.l-feat-card:hover::before {
  transform: scaleX(1);
}

.l-feat-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.l-feat-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 8px;
}

.l-feat-card p {
  font-size: 13px;
  color: var(--l-text-muted);
  line-height: 1.6;
}

/* ===== AI GRID ===== */
.l-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.l-ai-card {
  background: linear-gradient(135deg, #f3e8ff, #e0e7ff);
  border-radius: var(--l-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.l-ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(147, 51, 234, 0.2);
}

.l-ai-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.l-ai-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 8px;
}

.l-ai-card p {
  font-size: 14px;
  color: var(--l-text);
  margin-bottom: 14px;
  line-height: 1.6;
}

.l-ai-tag {
  display: inline-block;
  background: white;
  color: var(--l-accent);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* ===== SECTORS ===== */
.l-sectors-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.l-sector-card {
  display: block;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.l-sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--l-accent);
  box-shadow: var(--l-shadow-md);
}

.l-sector-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.l-sector-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 6px;
}

.l-sector-card p {
  font-size: 13px;
  color: var(--l-text-muted);
  line-height: 1.5;
}

/* ===== STEPS ===== */
.l-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.l-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.l-step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.l-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 10px;
}

.l-step p {
  color: var(--l-text-muted);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.l-cta-section {
  padding: 60px 0;
  background: var(--l-bg-soft);
}

.l-cta-box {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: var(--l-radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.l-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  border-radius: 50%;
}

.l-cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  position: relative;
}

.l-cta-box p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.l-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}

.l-cta-box .l-btn-primary {
  background: white;
  color: var(--l-accent);
  font-weight: 700;
}

.l-cta-box .l-btn-primary:hover {
  background: #f1f5f9;
}

.l-cta-box .l-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.l-cta-box .l-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
}

.l-cta-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.9;
  position: relative;
}

/* ===== FOOTER ===== */
.l-footer {
  background: var(--l-dark);
  color: #cbd5e1;
  padding: 60px 0 30px;
}

.l-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.l-footer .l-logo {
  color: white;
  margin-bottom: 16px;
}

.l-footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}

.l-footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.l-footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}

.l-footer-col a:hover {
  color: white;
}

.l-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 10px;
}

.l-footer-flag {
  color: #cbd5e1;
}

/* ===== PAGE HERO (özellikler/sektörler/iletişim) ===== */
.l-page-hero {
  padding: 70px 0 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, #dbeafe 0%, transparent 60%),
    linear-gradient(180deg, var(--l-bg) 0%, var(--l-bg-soft) 100%);
  border-bottom: 1px solid var(--l-border);
}

.l-page-hero h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--l-dark);
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.l-page-hero p {
  font-size: 17px;
  color: var(--l-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== FEATURES PAGE ===== */
.l-feature-block {
  padding: 70px 0;
}

.l-feature-alt {
  background: var(--l-bg-soft);
}

.l-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.l-feature-split.reverse {
  direction: rtl;
}

.l-feature-split.reverse > * {
  direction: ltr;
}

.l-feature-text h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--l-dark);
  margin-bottom: 14px;
  letter-spacing: -0.7px;
}

.l-feature-text > p {
  font-size: 16px;
  color: var(--l-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.l-feature-list {
  list-style: none;
}

.l-feature-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--l-text);
  font-size: 15px;
  line-height: 1.5;
}

.l-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--l-accent-soft);
  color: var(--l-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.l-feature-visual {
  aspect-ratio: 1;
  background: var(--visual-bg, #f1f5f9);
  border-radius: var(--l-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--l-shadow-md);
}

.l-feature-demo-icon {
  font-size: 120px;
  opacity: 0.8;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Mini features grid */
.l-mini-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.l-mini-feat {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.l-mini-feat:hover {
  transform: translateY(-2px);
  box-shadow: var(--l-shadow-md);
  border-color: var(--l-accent);
}

.l-mini-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.l-mini-feat h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 6px;
}

.l-mini-feat p {
  font-size: 12px;
  color: var(--l-text-muted);
  line-height: 1.5;
}

/* ===== SECTORS PAGE ===== */
.l-sector-nav-section {
  padding: 30px 0;
  background: white;
  border-bottom: 1px solid var(--l-border);
  position: sticky;
  top: 68px;
  z-index: 50;
}

.l-sector-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.l-sector-nav a {
  padding: 9px 16px;
  background: var(--l-bg-soft);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--l-text);
  transition: all 0.2s;
}

.l-sector-nav a:hover {
  background: var(--l-accent-soft);
  color: var(--l-accent);
}

.l-sector-block {
  padding: 80px 0;
  scroll-margin-top: 140px;
}

.l-sector-alt {
  background: var(--l-bg-soft);
}

.l-sector-detail {
  max-width: 1100px;
  margin: 0 auto;
}

.l-sector-head {
  padding: 40px;
  border-radius: var(--l-radius-lg);
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.l-sector-big-icon {
  font-size: 72px;
  flex-shrink: 0;
}

.l-sector-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--l-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.l-sector-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.l-sector-grid h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 12px;
  margin-top: 24px;
}

.l-sector-grid h3:first-child {
  margin-top: 0;
}

.l-sector-grid > div > p {
  color: var(--l-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.l-sector-highlight {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius);
  padding: 28px;
  position: sticky;
  top: 160px;
}

.l-sector-highlight h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 16px;
}

.l-sector-highlight ul {
  list-style: none;
}

.l-sector-highlight li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--l-text);
  line-height: 1.5;
}

/* ===== CONTACT PAGE ===== */
.l-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.l-contact-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.l-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--l-shadow-md);
  border-color: var(--l-accent);
}

.l-contact-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.l-contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 10px;
}

.l-contact-card p {
  font-size: 14px;
  color: var(--l-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.l-contact-link {
  color: var(--l-accent);
  font-weight: 600;
  font-size: 15px;
}

/* FAQ */
.l-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.l-faq {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.l-faq[open] {
  box-shadow: var(--l-shadow-sm);
  border-color: var(--l-accent);
}

.l-faq summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--l-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

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

.l-faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--l-accent);
  transition: transform 0.2s;
  line-height: 1;
}

.l-faq[open] .l-faq-icon {
  transform: rotate(45deg);
}

.l-faq-content {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--l-text-muted);
  line-height: 1.7;
}

.l-faq-content ul {
  margin-top: 10px;
  padding-left: 20px;
}

/* Legal blocks */
.l-legal-block {
  max-width: 800px;
  margin: 0 auto 40px;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius);
  padding: 36px;
  scroll-margin-top: 140px;
}

.l-legal-block h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--l-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.l-legal-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--l-dark);
  margin: 18px 0 10px;
}

.l-legal-block p {
  color: var(--l-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.l-legal-block ul {
  color: var(--l-text-muted);
  padding-left: 22px;
  line-height: 1.8;
}

.l-legal-block a {
  color: var(--l-accent);
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .l-hero-title { font-size: 42px; }
  .l-section-header h2, .l-feature-text h2, .l-cta-box h2, .l-sector-head h2 { font-size: 32px; }
  .l-whys-grid, .l-features-grid, .l-ai-grid, .l-sectors-preview, .l-steps { grid-template-columns: repeat(2, 1fr); }
  .l-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .l-container { padding: 0 16px; }

  .l-nav { display: none; }
  .l-nav.open {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--l-border);
    box-shadow: var(--l-shadow-md);
  }
  .l-nav.open .l-nav-link { padding: 12px 14px; }
  .l-nav.open .l-nav-cta { margin: 10px 0 0; }
  .l-menu-toggle { display: flex; }

  .l-hero { padding: 50px 0 70px; }
  .l-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .l-hero-title { font-size: 34px; }
  .l-hero-lead { font-size: 15px; }
  .l-page-hero h1 { font-size: 32px; }

  .l-section { padding: 60px 0; }
  .l-section-header h2, .l-feature-text h2, .l-cta-box h2, .l-sector-head h2 { font-size: 26px; }

  .l-whys-grid, .l-features-grid, .l-ai-grid, .l-sectors-preview, .l-steps, .l-stats-grid { grid-template-columns: 1fr; }
  .l-stats-grid { grid-template-columns: repeat(2, 1fr); }

  .l-mockup-body { grid-template-columns: repeat(3, 1fr); padding: 20px 14px; }

  .l-feature-split { grid-template-columns: 1fr; gap: 30px; }
  .l-feature-split.reverse { direction: ltr; }
  .l-feature-visual { aspect-ratio: 2; }
  .l-feature-demo-icon { font-size: 80px; }
  .l-mini-features { grid-template-columns: repeat(2, 1fr); }

  .l-sector-head { flex-direction: column; text-align: center; padding: 30px 20px; }
  .l-sector-big-icon { font-size: 56px; }
  .l-sector-grid { grid-template-columns: 1fr; gap: 24px; }
  .l-sector-highlight { position: static; }

  .l-contact-grid { grid-template-columns: 1fr; }
  .l-footer-grid { grid-template-columns: 1fr; }
  .l-cta-box { padding: 40px 24px; }
  .l-cta-box h2 { font-size: 24px; }

  .l-legal-block { padding: 24px; }
}
