/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #1a1410;
  --bg-card: #241c16;
  --bg-elevated: #2d231c;
  --text: #e8ddd0;
  --text-dim: #9b8e7e;
  --text-muted: #6b5f52;
  --accent: #c4933a;
  --accent-bright: #e6a940;
  --accent-subtle: rgba(196, 147, 58, 0.15);
  --red: #c44a3a;
  --red-dim: rgba(196, 74, 58, 0.2);
  --green: #5a8f4a;
  --border: rgba(155, 142, 126, 0.2);
  --radius: 8px;
  --radius-lg: 12px;
  --font-display: 'Changa One', 'Impact', sans-serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-bright); }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--accent); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-family: var(--font-body);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #1a1410;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-bright); color: #1a1410; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-bright); }
.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ====== HEADER ====== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.site-header .container {
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--text); }
.logo-svg { flex-shrink: 0; }
.logo-star { color: var(--accent); font-size: 1.4rem; }
.logo-dim { color: var(--text-muted); font-weight: 400; font-size: 0.85em; }
.logo-tagline {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  display: none;
}
@media (min-width: 900px) { .logo-tagline { display: inline; } }

.main-nav { display: flex; gap: 24px; align-items: center; flex: 1; }
.main-nav a {
  color: var(--text-dim); font-size: 0.9rem; font-weight: 600;
}
.main-nav a:hover { color: var(--text); }
.nav-phone {
  color: var(--accent) !important;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1rem !important;
}

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px 10px;
  color: var(--text-dim); font-size: 0.8rem;
  font-weight: 700; cursor: pointer; font-family: var(--font-body);
}
.lang-toggle:hover { border-color: var(--accent); }
.lang-option { transition: color 0.2s; }
.lang-option.active { color: var(--accent); }
.lang-sep { color: var(--text-muted); }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.2s;
}

/* ====== HERO ====== */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(196, 147, 58, 0.08), transparent),
    var(--bg);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-subtle);
  border: 1px solid rgba(196, 147, 58, 0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); }
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-phone {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.hero-phone a { color: var(--accent); font-weight: 700; }

.hero-body {
  max-width: 640px; margin: 0 auto 32px;
  text-align: left;
}
.hero-body p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.hero-body strong { color: var(--text); }

/* ====== PROBLEM STRIP ====== */
.problem-strip {
  background: var(--red-dim);
  border-top: 1px solid rgba(196, 74, 58, 0.3);
  border-bottom: 1px solid rgba(196, 74, 58, 0.3);
  padding: 18px 0;
  text-align: center;
}
.problem-strip p {
  color: #e8a090;
  font-size: 0.95rem;
}
.problem-strip strong { color: var(--red); }

/* ====== SOLUTIONS ====== */
.solutions { padding: 80px 0; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s;
}
.solution-card:hover { border-color: var(--accent); }
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.solution-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; }

/* ====== PRICING ====== */
.pricing { padding: 80px 0; background: var(--bg-card); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--accent); }
.pricing-card-featured {
  border-color: var(--accent);
  position: relative;
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #1a1410;
  font-weight: 700; font-size: 0.8rem;
  padding: 4px 16px; border-radius: 50px;
}
.pricing-header { text-align: center; margin-bottom: 24px; }
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.price-sub { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-dim);
}
.pricing-features li:last-child { border-bottom: none; }

/* ====== HOW IT WORKS ====== */
.how-it-works { padding: 80px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.step { text-align: center; }
.step-number {
  width: 56px; height: 56px;
  background: var(--accent-subtle);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step p { color: var(--text-dim); font-size: 0.9rem; }

/* ====== ROI ====== */
.roi { padding: 80px 0; background: var(--bg-card); }
.roi-body { max-width: 680px; margin: 0 auto 32px; text-align: center; }
.roi-body p { color: var(--text-dim); font-size: 1.02rem; line-height: 1.75; margin-bottom: 16px; }
.roi-body strong { color: var(--accent); }
.roi-stats { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
.roi-stat { text-align: center; min-width: 160px; }
.roi-number { font-family: var(--font-display); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.roi-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }

/* ====== FREE DEMO FORM ====== */
.free-demo { padding: 80px 0; }
.free-demo-body { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.free-demo-body p { color: var(--text-dim); font-size: 1rem; line-height: 1.75; margin-bottom: 12px; }
.free-demo-body strong { color: var(--text); }
.demo-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-dim); font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 14px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--accent); }
.form-group input::placeholder { color: var(--text-muted); }

/* ====== TESTIMONIALS ====== */
.testimonials { padding: 80px 0; background: var(--bg-card); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-card cite { display: block; font-style: normal; }
.testimonial-card cite strong { display: block; color: var(--text); font-size: 0.95rem; }
.testimonial-card cite span { color: var(--text-muted); font-size: 0.85rem; }

/* ====== PORTFOLIO ====== */
.portfolio { padding: 80px 0; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
  text-decoration: none;
  color: var(--text);
}
.portfolio-card:hover { border-color: var(--accent); }
.portfolio-thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.portfolio-placeholder { font-size: 3rem; opacity: 0.4; }
.portfolio-label { padding: 18px 20px; }
.portfolio-label strong { display: block; font-size: 0.95rem; }
.portfolio-label span { color: var(--text-muted); font-size: 0.85rem; }

/* ====== FAQ ====== */
.faq { padding: 80px 0; background: var(--bg-card); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.02rem;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.2s;
  font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item p {
  padding: 0 0 20px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== CTA BOTTOM ====== */
.cta-bottom {
  padding: 80px 0;
  text-align: center;
}
.cta-bottom h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-bottom p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-or { color: var(--text-muted); font-size: 0.9rem; }

/* ====== FOOTER ====== */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer-links a {
  display: block;
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem;
}
.payment-badges { display: flex; gap: 8px; }
.badge-icon { font-size: 1.3rem; opacity: 0.5; }

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 12px;
    backdrop-filter: blur(12px);
  }
  .main-nav.open .nav-phone { margin-left: 0; }
  .mobile-menu-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .pricing-card-featured { transform: none; }
  .cta-actions { flex-direction: column; }
}
