/* Laptop Ekran Tamiri — conversion-focused service page */
.letp-page {
  --letp-orange: #fd7901;
  --letp-orange-d: #ea580c;
  --letp-navy: #0f172a;
  --letp-navy-soft: #1e293b;
  --letp-bg: #f4f6fa;
  --letp-surface: #ffffff;
  --letp-border: #e2e8f0;
  --letp-muted: #64748b;
  --letp-text: #0f172a;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--letp-bg);
  color: var(--letp-text);
}

.letp-wrap { width: min(1180px, 92%); margin: 0 auto; }

/* Hero */
.letp-hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
  background: linear-gradient(155deg, #080d18 0%, #0f172a 42%, #162033 100%);
  color: #fff;
  overflow: hidden;
}
.letp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(253, 121, 1, 0.2), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(59, 130, 246, 0.07), transparent 50%);
  pointer-events: none;
}
.letp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.letp-bc {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 4px;
}
.letp-bc a { color: #cbd5e1; text-decoration: none; }
.letp-bc a:hover { color: var(--letp-orange); }
.letp-bc span[aria-hidden] { opacity: 0.45; }

.letp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(253, 121, 1, 0.14);
  border: 1px solid rgba(253, 121, 1, 0.35);
  color: #fdba74;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.letp-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--letp-orange);
}
.letp-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.letp-snippet {
  margin: 0 0 16px;
  max-width: 560px;
  font-size: clamp(15px, 1.65vw, 16px);
  line-height: 1.72;
  color: #94a3b8;
}
.letp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.letp-badge-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
}
.letp-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.letp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.letp-btn:active { transform: scale(0.98); }
.letp-btn--primary {
  background: var(--letp-orange);
  color: #fff;
  box-shadow: 0 6px 24px rgba(253, 121, 1, 0.32);
}
.letp-btn--primary:hover { background: var(--letp-orange-d); color: #fff; }
.letp-btn--phone {
  background: #16a34a;
  color: #fff;
}
.letp-btn--phone:hover { background: #15803d; color: #fff; }
.letp-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.letp-btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.letp-btn--dark { background: var(--letp-navy); color: #fff; }
.letp-btn--dark:hover { background: var(--letp-navy-soft); color: #fff; }
.letp-btn--block { width: 100%; }

.letp-hero-visual { position: relative; }
.letp-hero-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  background: #111827;
}
.letp-hero-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.letp-hero-float {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.letp-hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(253, 121, 1, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--letp-orange);
  font-weight: 800;
}
.letp-hero-float p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #cbd5e1;
}
.letp-hero-float strong { color: #fff; display: block; font-size: 13px; margin-bottom: 2px; }

/* Trust stats */
.letp-stats {
  background: var(--letp-surface);
  border-bottom: 1px solid var(--letp-border);
  padding: 28px 0;
}
.letp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.letp-stat strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--letp-navy);
  margin-bottom: 4px;
}
.letp-stat span {
  font-size: 13px;
  color: var(--letp-muted);
}

/* Sections */
.letp-section { padding: clamp(48px, 7vw, 80px) 0; }
.letp-section--white { background: var(--letp-surface); }
.letp-section-head { margin-bottom: 32px; max-width: 680px; }
.letp-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.letp-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--letp-orange);
}
.letp-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.18;
}
.letp-h3-sub {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
}
.letp-section-head p {
  margin: 0;
  color: var(--letp-muted);
  line-height: 1.65;
  font-size: 15px;
}

/* Prose */
.letp-prose { max-width: 760px; }
.letp-prose p {
  margin: 0 0 16px;
  line-height: 1.72;
  color: var(--letp-muted);
  font-size: 16px;
}
.letp-prose p:last-child { margin-bottom: 0; }
.letp-prose a { color: var(--letp-orange-d); font-weight: 600; text-decoration: none; }
.letp-prose a:hover { text-decoration: underline; }
.letp-prose code {
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 4px;
  background: #f1f5f9;
  color: var(--letp-navy);
}

/* Symptom cards */
.letp-symptoms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.letp-symptom {
  padding: 20px 18px;
  border-radius: 14px;
  background: var(--letp-surface);
  border: 1px solid var(--letp-border);
  display: flex;
  flex-direction: column;
}
.letp-symptom h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}
.letp-symptom p {
  margin: 0 0 14px;
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  color: var(--letp-muted);
}
.letp-symptom footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--letp-border);
}
.letp-solution {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff7ed;
  color: #c2410c;
}
.letp-symptom footer a {
  font-size: 12px;
  font-weight: 700;
  color: var(--letp-orange);
  text-decoration: none;
  white-space: nowrap;
}
.letp-symptom footer a:hover { text-decoration: underline; }

/* Bento links */
.letp-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.letp-bento a {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 12px;
  background: var(--letp-bg);
  border: 1px solid var(--letp-border);
  text-decoration: none;
  color: inherit;
}
.letp-bento a:hover { border-color: #fdba74; background: #fff7ed; }
.letp-bento strong { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.letp-bento span { font-size: 12px; color: var(--letp-muted); }

/* Process 6 steps */
.letp-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: letp-step;
}
.letp-step {
  padding: 20px 16px;
  border-radius: 14px;
  background: var(--letp-surface);
  border: 1px solid var(--letp-border);
  counter-increment: letp-step;
}
.letp-step::before {
  content: counter(letp-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--letp-orange-d);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}
.letp-step h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}
.letp-step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--letp-muted);
}
.letp-process-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--letp-muted);
}
.letp-process-note a { color: var(--letp-orange-d); font-weight: 600; text-decoration: none; }
.letp-process-note a:hover { text-decoration: underline; }

/* Why us */
.letp-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.letp-why-card {
  padding: 22px 20px;
  border-radius: 14px;
  background: var(--letp-surface);
  border: 1px solid var(--letp-border);
}
.letp-why-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}
.letp-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--letp-muted);
}

/* Pricing block */
.letp-price-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.letp-price-factors {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--letp-muted);
  line-height: 1.7;
  font-size: 15px;
}
.letp-price-cta {
  padding: 24px;
  border-radius: 16px;
  background: var(--letp-navy);
  color: #fff;
}
.letp-price-cta h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}
.letp-price-cta > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}
.letp-price-cta .letp-btn { margin-bottom: 10px; }
.letp-price-links {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  display: grid;
  gap: 6px;
}
.letp-price-links a {
  font-size: 13px;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
}
.letp-price-links a:hover { color: #fff; }

/* Regions */
.letp-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.letp-region {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--letp-surface);
  border: 1px solid var(--letp-border);
  text-decoration: none;
  color: var(--letp-text);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.15s;
}
.letp-region:hover {
  border-color: var(--letp-orange);
  color: var(--letp-orange-d);
}
.letp-regions-more {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--letp-muted);
}
.letp-regions-more a { color: var(--letp-orange-d); font-weight: 600; text-decoration: none; }
.letp-regions-more a:hover { text-decoration: underline; }

/* Brands */
.letp-brand-toolbar { margin-bottom: 16px; }
.letp-brand-search {
  max-width: 280px;
  position: relative;
}
.letp-brand-search input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--letp-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--letp-surface);
}
.letp-brand-search input:focus {
  outline: none;
  border-color: var(--letp-orange);
  box-shadow: 0 0 0 3px rgba(253, 121, 1, 0.12);
}
.letp-brand-search svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--letp-muted);
}
.letp-brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.letp-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 12px;
  background: var(--letp-bg);
  border: 1px solid var(--letp-border);
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  font-size: 14px;
}
.letp-brand:hover { border-color: #fdba74; background: #fff7ed; }
.letp-brand.is-hidden { display: none; }
.letp-brand--all { background: var(--letp-navy); color: #fff; border-color: var(--letp-navy); }
.letp-brand--all:hover { background: var(--letp-navy-soft); color: #fff; }

/* FAQ */
.letp-faq { max-width: 760px; margin: 0 auto; }
.letp-faq details {
  background: var(--letp-surface);
  border: 1px solid var(--letp-border);
  border-radius: 12px;
  margin-bottom: 8px;
}
.letp-faq details[open] { border-color: #fdba74; }
.letp-faq summary {
  padding: 16px 44px 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  position: relative;
}
.letp-faq summary::-webkit-details-marker { display: none; }
.letp-faq summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--letp-orange);
}
.letp-faq details[open] summary::after { content: '−'; }
.letp-faq p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--letp-muted);
  font-size: 14px;
  line-height: 1.65;
}
.letp-faq-more {
  margin: 20px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14px;
  color: var(--letp-muted);
}
.letp-faq-more a { color: var(--letp-orange-d); font-weight: 600; text-decoration: none; }

/* CTA */
.letp-cta {
  padding: clamp(44px, 6vw, 68px) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
  text-align: center;
  color: #fff;
}
.letp-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
}
.letp-cta p {
  margin: 0 auto 22px;
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 15px;
}
.letp-cta .letp-actions { justify-content: center; }

/* Footer SEO harmony */
body:has(.letp-page) .et-density {
  background: var(--letp-bg);
  border-top: 1px solid var(--letp-border);
}

@media (max-width: 1024px) {
  .letp-symptoms { grid-template-columns: repeat(2, 1fr); }
  .letp-process { grid-template-columns: repeat(3, 1fr); }
  .letp-why { grid-template-columns: repeat(2, 1fr); }
  .letp-regions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .letp-hero-grid { grid-template-columns: 1fr; }
  .letp-hero-visual { order: -1; max-width: 440px; }
  .letp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .letp-bento { grid-template-columns: repeat(2, 1fr); }
  .letp-price-inner { grid-template-columns: 1fr; }
  .letp-process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .letp-symptoms,
  .letp-bento,
  .letp-why,
  .letp-process,
  .letp-regions { grid-template-columns: 1fr; }
  .letp-actions .letp-btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .letp-btn { transition: none; }
}
