/* =========================================
   RENVYO – Shared Styles
   ========================================= */
:root {
  --accent:    #5aa046;
  --accent-dk: #3d7a31;
  --dark:      #1a1f16;
  --mid:       #3a4235;
  --muted:     #6b7265;
  --bg:        #f7f9f6;
  --white:     #ffffff;
  --border:    rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; line-height: 1.15; }

a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
.renvyo-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,249,246,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  transition: padding 0.3s;
}
.brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.brand span { color: var(--accent); }
.brand-footer { display: inline-block; margin-bottom: 18px; }

.nav-links { list-style: none; display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── BUTTONS ── */
.btn-primary-renvyo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
}
.btn-primary-renvyo:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(90,160,70,0.35);
}
.btn-outline-renvyo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid rgba(0,0,0,0.15);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-renvyo:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(90,160,70,0.05);
}
.btn-lg-renvyo { padding: 16px 36px; font-size: 1rem; }

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 0;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

/* ── SECTION HELPERS ── */
.section-pad { padding: 100px 0; }
.mb-60 { margin-bottom: 60px; }
.bg-light-subtle { background: #f0f4ee; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── DOT PULSE ── */
.dot-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(90,160,70,0.2) 0%, transparent 70%);
}
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  position: relative;
}

/* ── FOOTER ── */
.renvyo-footer {
  background: var(--dark);
  padding: 80px 0 30px;
  color: rgba(255,255,255,0.65);
}
.footer-about { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
  font-size: 0.95rem;
}
.footer-socials a:hover { background: var(--accent); color: #fff; }
.footer-heading { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-newsletter-text { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--accent-dk); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--dark);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(90,160,70,0.18) 0%, transparent 65%);
}
.page-hero-eyebrow { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; position: relative; }
.page-hero-title { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: #fff; position: relative; margin-bottom: 18px; }
.page-hero-title span { color: var(--accent); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 550px; line-height: 1.8; position: relative; }

/* ── ANIMATIONS ── */
[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-anim].visible { opacity: 1; transform: translateY(0); }
