:root {
  --bg: #ffffff;
  --bg-alt: #f8f7f4;
  --ink: #12110e;
  --ink-muted: #5e5a52;
  --accent: #c8531a;
  --accent-soft: rgba(200, 83, 26, 0.08);
  --accent-cta: #12110e;
  --border: rgba(18, 17, 14, 0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.08);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --nav-height: 140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, em { font-family: var(--serif); font-weight: 600; line-height: 1.1; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--accent); }

/* Navigation */
nav {
  height: var(--nav-height);
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
}

nav.scrolled {
  height: 90px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

nav.scrolled .logo img { height: 80px; }


.logo img { height: 120px; width: auto; transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.02); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }

.nav-cta {
  background: var(--accent-cta);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }

/* Hero */
.hero-container { padding: 160px 6vw 100px; background: var(--bg); }
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-label {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); margin-bottom: 24px; }
.hero-sub { font-size: 1.25rem; color: var(--ink-muted); margin-bottom: 40px; max-width: 540px; line-height: 1.5; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-main {
  background: var(--accent);
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-main:hover { background: #b04816; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(200, 83, 26, 0.25); }

.btn-ghost {
  padding: 18px 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--ink); }

.hero-proof { margin-top: 48px; display: flex; align-items: center; gap: 16px; font-size: 0.9rem; color: var(--ink-muted); font-weight: 500; }
.hero-proof-dots { display: flex; }
.proof-dot {
  width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-right: -10px;
  box-shadow: var(--shadow-sm);
}

/* Email Mockup */
.hero-visual { position: relative; }
.email-mock {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}
.email-header { display: flex; justify-content: space-between; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.email-body { color: var(--ink-muted); margin-bottom: 32px; line-height: 1.5; font-style: italic; }
.ai-result { background: var(--bg-alt); border-radius: 16px; padding: 24px; border: 1px dashed var(--accent); }
.ai-result .label { color: var(--accent); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.tags { display: flex; gap: 8px; }
.tag { padding: 4px 10px; background: #fff; border-radius: 6px; font-size: 0.75rem; font-weight: 600; border: 1px solid var(--border); }
.tag.urgent { color: #e03131; border-color: #ffc9c9; background: #fff5f5; }

/* Stats Bar */
.stats-bar {
  background: var(--ink);
  color: #fff;
  padding: 40px 6vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 2.5rem; font-family: var(--serif); color: var(--accent); margin-bottom: 4px; }
.stat-item span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; opacity: 0.6; }

/* Sections */
section { padding: 120px 6vw; overflow: hidden; }
.section-tag { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 16px; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 32px; }
.section-lead { font-size: 1.35rem; color: var(--ink-muted); max-width: 800px; margin-bottom: 64px; line-height: 1.4; }

/* Problem Cards */
.pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.pain { padding: 48px; background: var(--bg-alt); border-radius: 24px; position: relative; border: 1px solid transparent; transition: all 0.3s ease; }
.pain:hover { background: #fff; border-color: var(--border); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pain-icon { width: 56px; height: 56px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); box-shadow: var(--shadow-sm); }
.pain-num { position: absolute; top: 48px; right: 48px; font-family: var(--serif); font-size: 2rem; opacity: 0.1; font-weight: 700; }
.pain h3 { margin-bottom: 16px; font-size: 1.5rem; }
.pain p { color: var(--ink-muted); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.service {
  padding: 56px;
  background: var(--bg-alt);
  border-radius: 32px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-num { color: var(--accent); font-weight: 800; font-size: 0.8rem; display: block; margin-bottom: 20px; }
.service h3 { font-size: 1.8rem; margin-bottom: 20px; }
.service p { color: var(--ink-muted); margin-bottom: 32px; }
.service-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); }
.service-price { font-weight: 700; font-size: 0.95rem; }
.service-eu { font-size: 0.8rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 6px; }

/* How it works */
.how-section { background: var(--bg-alt); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how-steps { display: flex; flex-direction: column; gap: 48px; }
.how-step { display: flex; gap: 24px; }
.step-n {
  flex-shrink: 0; width: 44px; height: 44px; background: var(--ink); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--serif);
}
.how-step h3 { font-size: 1.5rem; margin-bottom: 12px; }
.how-step p { color: var(--ink-muted); }
.how-visual { background: #fff; padding: 64px; border-radius: 40px; box-shadow: var(--shadow-md); }
.quote { font-family: var(--serif); font-size: 1.8rem; font-style: italic; margin-bottom: 32px; line-height: 1.3; }
.quote-author { font-size: 1rem; }

/* Trust Strip */
.trust-strip { background: var(--accent); color: #fff; padding: 80px 6vw; }
.trust-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; }
.trust-icon { margin-bottom: 24px; }
.trust-item h3 { color: #fff; margin-bottom: 12px; }
.trust-item p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* Contact Form */
.form-section { background: #fff; }
.form-wrapper { max-width: 800px; margin: 0 auto; background: var(--bg-alt); padding: 64px; border-radius: 32px; border: 1px solid var(--border); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--ink-muted); }
.form-group input, .form-group textarea {
  padding: 16px; border-radius: 12px; border: 1px solid var(--border);
  font-family: inherit; font-size: 1rem; transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.btn-form-submit {
  background: var(--accent); color: #fff; padding: 20px; border: none;
  border-radius: 12px; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease;
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200, 83, 26, 0.2); }
.form-success { text-align: center; padding: 20px; background: #ebfbee; color: #2b8a3e; border-radius: 12px; border: 1px solid #b2f2bb; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.success-icon { width: 40px; height: 40px; background: #2b8a3e; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

/* CTA Section */
.cta-section { background: var(--ink); color: #fff; text-align: center; padding: 140px 6vw; }
.cta-section h2 { color: #fff; margin-bottom: 24px; }
.cta-section p { font-size: 1.3rem; opacity: 0.7; margin-bottom: 48px; }
.btn-cta-white { background: #fff; color: var(--ink); padding: 20px 48px; border-radius: 12px; text-decoration: none; font-weight: 700; display: inline-block; transition: all 0.3s ease; }
.btn-cta-white:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255,255,255,0.1); }
.cta-note { margin-top: 24px; font-size: 0.8rem; opacity: 0.5; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* Footer */
footer { padding: 100px 6vw; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; border-top: 1px solid var(--border); }
.footer-brand h4 { font-size: 1.5rem; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-muted); max-width: 300px; }
footer h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
footer ul { list-style: none; }
footer li { margin-bottom: 12px; }
footer a { text-decoration: none; color: var(--ink-muted); font-size: 0.95rem; transition: color 0.3s; }
footer a:hover { color: var(--accent); }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Mobile Menu */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: #fff; flex-direction: column; padding: 120px 40px;
    transition: 0.4s; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.5rem; font-family: var(--serif); }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px; }
}
