:root {
  --bg: #0b0b0f;
  --bg-alt: #13131a;
  --fg: #ffffff;
  --muted: #a0a0b0;
  --accent: #ff4d2e;
  --accent-hover: #ff6a4d;
  --border: #23232e;
  --radius: 12px;
  --max: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11, 11, 15, 0.9);
  backdrop-filter: blur(12px);
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 32px; }
.lang-switch { font-size: 14px; color: var(--muted); }
.lang-switch a { margin-left: 12px; }
.lang-switch a.active { color: var(--fg); font-weight: 600; }

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero .sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 40px;
}
.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: var(--radius);
  font-size: 17px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.cta-sub { display: block; font-size: 13px; color: var(--muted); margin-top: 12px; }

/* Press */
.press {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.press-logos span {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
}

/* Section */
section { padding: 96px 0; }
section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 16px;
}
section .section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* Problem */
.problem { background: var(--bg-alt); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.problem-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.problem-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent);
}
.problem-card p { color: var(--muted); }

/* Offers */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.offer-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  transition: all 0.2s;
}
.offer-card.featured { border-color: var(--accent); position: relative; }
.offer-card.featured::before {
  content: "★";
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--accent);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.offer-card h3 { font-size: 22px; margin-bottom: 8px; }
.offer-card .price {
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0 8px;
}
.offer-card .price small { font-size: 14px; color: var(--muted); font-weight: 400; }
.offer-card .delivery {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.offer-card ul { list-style: none; margin-bottom: 32px; }
.offer-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
}
.offer-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Case study */
.case {
  background: var(--bg-alt);
}
.case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.case-inner h2 { text-align: left; }
.case-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}
.case-clients span {
  padding: 8px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--muted);
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.case-stat .num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
}
.case-stat .label {
  font-size: 14px;
  color: var(--muted);
}

/* Guarantee */
.guarantee {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.guarantee h3 { font-size: 24px; margin-bottom: 16px; }
.guarantee p { color: var(--muted); font-size: 16px; }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 120px 0;
}
.final-cta h2 { margin-bottom: 24px; }

/* Footer */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
footer a { color: var(--muted); margin: 0 12px; }

/* Press logos (webp images + text fallback) */
.press-logos img.plogo-img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
  filter: grayscale(100%) brightness(2);
}
.press-logos img.plogo-img:hover { opacity: 1; filter: none; }
.press-logos .plogo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.press-logos .plogo-text:hover { opacity: 1; }

/* How it works */
.how { background: var(--bg); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.how-step {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.how-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.how-step h3 { font-size: 20px; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--muted); }

/* Testimonials */
.testimonials { background: var(--bg-alt); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-card blockquote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 500;
}
.testi-card blockquote::before { content: "“"; color: var(--accent); font-size: 40px; line-height: 0; vertical-align: -14px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff9066);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #0b0b0f; font-size: 15px;
}
.testi-meta { font-size: 13px; }
.testi-meta strong { display: block; color: var(--fg); }
.testi-meta span { color: var(--muted); }

/* Case study pull quote */
.case-pullquote {
  margin-top: 32px;
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  font-style: italic;
  color: var(--fg);
}
.case-pullquote cite { display: block; margin-top: 12px; font-size: 13px; color: var(--muted); font-style: normal; }

/* FAQ accordion */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
}

/* Scroll reveal (CSS only) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal 0.8s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Legal / content pages */
.content-page { padding: 80px 0; max-width: 760px; margin: 0 auto; }
.content-page h1 { font-size: 40px; font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.content-page h2 { font-size: 22px; margin: 32px 0 12px; }
.content-page p, .content-page li { color: var(--muted); margin-bottom: 12px; }
.content-page ul { padding-left: 20px; }
.content-page a { color: var(--accent); }

/* Form */
.form-wrap { max-width: 560px; margin: 0 auto; }
.form-wrap label { display: block; font-size: 14px; margin-bottom: 6px; color: var(--muted); }
.form-wrap input, .form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font);
  font-size: 15px;
  margin-bottom: 16px;
}
.form-wrap input:focus, .form-wrap textarea:focus { outline: none; border-color: var(--accent); }
.form-wrap textarea { min-height: 140px; resize: vertical; }
.cal-embed {
  margin: 32px 0;
  padding: 48px 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  background: var(--bg-alt);
  color: var(--muted);
}

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .case-inner { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .how-grid { grid-template-columns: 1fr; }
  .press-logos { gap: 28px; }
  .press-logos svg.plogo { width: 110px; height: 26px; }
}
