/* ============================================================
   Vitrine Pro — Main stylesheet
   Palette: warm off-white bg, deep forest green accent, charcoal text
   Fonts: Playfair Display (headings) + Instrument Sans (body)
   ============================================================ */

:root {
  --bg:         #f7f5f1;
  --bg-dark:    #1c1e1b;
  --surface:    #ffffff;
  --surface-2:  #f0ede8;
  --green:      #2d5a27;
  --green-dark: #1e3d1a;
  --green-light:#3a7032;
  --amber:      #c8843a;
  --text:       #1c1c1a;
  --text-mid:   #4a4a46;
  --text-light: #8a8a84;
  --border:     #e0dbd2;
  --radius:     4px;
  --radius-lg:  10px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.25);
}
.btn-primary.btn-large {
  font-size: 1.1rem;
  padding: 18px 36px;
}
.btn-primary.btn-full {
  width: 100%;
  text-align: center;
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-mid);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ---- SHARED SECTION STYLES ---- */
.section-tag {
  display: inline-block;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: -8px;
  margin-bottom: 0;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-body {
  margin: 12px auto 0;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.logo-dot {
  color: var(--green);
}
.nav-cta {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover {
  background: var(--green);
  color: #fff;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(45, 90, 39, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(200, 132, 58, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero > .container {
  position: relative;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid rgba(45, 90, 39, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--text);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title-accent {
  color: var(--green);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-text .section-title {
  margin-bottom: 20px;
}
.problem-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.problem-icon {
  color: #c0392b;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Google search mock */
.search-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-family: 'Instrument Sans', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 10px 18px;
  margin-bottom: 16px;
}
.search-icon { font-size: 0.9rem; }
.search-query {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.search-result {
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  border-left: 3px solid transparent;
}
.search-result.featured {
  background: rgba(45, 90, 39, 0.05);
  border-left-color: var(--green);
}
.result-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a0dab;
  margin-bottom: 2px;
}
.result-url {
  font-size: 0.75rem;
  color: var(--green-light);
  margin-bottom: 4px;
}
.result-snippet {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.search-result.missing {
  background: rgba(200, 57, 43, 0.06);
  border-left-color: #c0392b;
  padding: 16px 12px;
}
.result-missing-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c0392b;
  font-style: italic;
}

/* ---- HOW / STEPS ---- */
.how {
  padding: 96px 0;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.step:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(45, 90, 39, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--green);
  opacity: 0.4;
  align-self: center;
  padding-top: 8px;
}

/* ---- FOR WHOM ---- */
.forwhom {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.professions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.profession-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  cursor: default;
}
.profession-card:hover {
  border-color: var(--green);
  background: rgba(45, 90, 39, 0.04);
  transform: translateY(-2px);
}
.profession-icon { font-size: 1.5rem; }
.forwhom-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.forwhom-note a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 90, 39, 0.3);
  transition: border-color 0.2s ease;
}
.forwhom-note a:hover { border-color: var(--green); }

/* ---- FEATURES ---- */
.features {
  padding: 96px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.feature-item h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---- SOCIAL PROOF ---- */
.proof {
  padding: 96px 0;
  background: var(--bg-dark);
}
.proof .section-tag {
  color: rgba(255,255,255,0.5);
}
.proof .section-title {
  color: #fff;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.author-job {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ---- PRICING ---- */
.pricing {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(45, 90, 39, 0.12);
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.price-from {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.pricing-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 36px;
}
.pricing-includes {
  text-align: left;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.pricing-includes-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.pricing-includes ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-includes li {
  font-size: 0.925rem;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  align-items: center;
}
.pricing-includes li::before { display: none; }

/* ---- CITIES ---- */
.cities {
  padding: 32px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cities-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.cities-text strong {
  color: var(--text-mid);
  font-weight: 600;
}

/* ---- CONTACT ---- */
.contact {
  padding: 96px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-title {
  margin-bottom: 16px;
}
.contact-direct {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-direct-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-email {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  border-bottom: 1px solid rgba(45, 90, 39, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
  display: inline-block;
}
.contact-email:hover { border-color: var(--green); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer .logo { color: rgba(255,255,255,0.9); }
.footer .logo-dot { color: var(--amber); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .problem-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-arrow {
    display: none;
  }

  .features-grid { grid-template-columns: 1fr; gap: 28px; }

  .testimonials { grid-template-columns: 1fr; gap: 20px; }

  .professions-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .stat-divider { width: 80px; height: 1px; }
  .stat { padding: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 64px 0 56px; }
  .problem, .how, .forwhom, .features, .proof, .pricing, .contact {
    padding: 64px 0;
  }

  .hero-stats { width: 100%; }

  .professions-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-card { padding: 32px 24px; }

  .contact-form { padding: 24px; }

  .footer-inner { flex-direction: column; gap: 24px; }
}

/* ---- SUCCESS MESSAGE ---- */
.form-success {
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid rgba(45, 90, 39, 0.25);
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}
