/* ============================================================
   Squirrels — Landing Page Styles
   Palette: warm orange/amber/brown — fun & professional
   ============================================================ */

/* --- TOKENS ------------------------------------------------ */
:root {
  --orange:      #E07B39;
  --orange-dark: #C46A2A;
  --orange-light:#FBE8D5;
  --gold:        #F0A500;
  --gold-light:  #FEF3D0;
  --brown:       #5C3317;
  --brown-mid:   #8B5E3C;
  --cream:       #FEFAF4;
  --cream-dark:  #F5EDD8;
  --green:       #4A7A35;
  --text:        #2C1810;
  --text-muted:  #7A5C4A;
  --border:      #E8D5B0;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(92,51,23,.08);
  --shadow-md:   0 4px 16px rgba(92,51,23,.12);
  --shadow-lg:   0 8px 32px rgba(92,51,23,.16);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.15;
  color: var(--brown);
}
p { color: var(--text-muted); }

/* --- LAYOUT ------------------------------------------------ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 720px; }
.section { padding: 96px 0; }
.section-alt { background: var(--cream-dark); }

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 15px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange-light); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm  { padding: 8px 18px; font-size: 14px; }
.btn-lg  { padding: 16px 32px; font-size: 17px; }
.btn-xl  { padding: 20px 48px; font-size: 18px; }
.btn-full { width: 100%; justify-content: center; }

/* --- NAV --------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254,250,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon { font-size: 24px; }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--brown);
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--orange); }

/* --- HERO -------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--brown) 0%, #8B4A1E 50%, var(--orange) 100%);
  color: var(--white);
  padding: 120px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .highlight {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}
.trust-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Floating acorns */
.hero-deco { pointer-events: none; }
.acorn {
  position: absolute;
  font-size: 32px;
  opacity: 0.25;
  animation: float 6s ease-in-out infinite;
}
.acorn-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 48px; }
.acorn-2 { top: 25%; left: 12%; animation-delay: 1s; font-size: 24px; }
.acorn-3 { top: 60%; right: 6%; animation-delay: 2s; font-size: 40px; }
.acorn-4 { top: 20%; right: 10%; animation-delay: 0.5s; font-size: 28px; }
.acorn-5 { bottom: 20%; left: 8%; animation-delay: 1.5s; font-size: 36px; }
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

/* --- STATS BAR --------------------------------------------- */
.stats-bar {
  background: var(--brown);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
}
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* --- SECTION HEADERS --------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--brown);
  max-width: 640px;
  margin: 0 auto 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* --- STEPS ------------------------------------------------- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  flex: 1;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-icon { font-size: 40px; margin-bottom: 8px; }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: var(--orange-light);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brown);
}
.step p { font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.step-detail {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  background: var(--orange-light);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-block;
}
.step-arrow {
  font-size: 28px;
  color: var(--border);
  padding: 0 16px;
  margin-top: 80px;
  flex-shrink: 0;
  font-weight: 300;
}

/* --- FEATURES ---------------------------------------------- */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-text .section-title { text-align: left; margin-left: 0; }
.features-text .section-subtitle { text-align: left; margin-left: 0; margin-bottom: 32px; }
.features-text .section-badge { margin-bottom: 16px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s;
}
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { transform: translateX(4px); }
.feature-check { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-weight: 700; color: var(--brown); margin-bottom: 4px; font-size: 15px; }
.feature-item p { font-size: 14px; margin: 0; }

/* --- TESTIMONIALS ------------------------------------------ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-featured {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-12px);
}
.testimonial-featured:hover { transform: translateY(-16px); }
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-featured .testimonial-stars { color: var(--gold); }
.testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-muted);
}
.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.85); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-featured .author-avatar { background: rgba(255,255,255,0.15); color: var(--white); }
.author-name { font-weight: 700; font-size: 14px; color: var(--brown); }
.testimonial-featured .author-name { color: var(--white); }
.author-role { font-size: 12px; color: var(--text-muted); }
.testimonial-featured .author-role { color: rgba(255,255,255,0.6); }

/* --- PRICING ----------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price-card-featured:hover { transform: translateY(-12px); }
.price-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.price-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 60px;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.price-currency { font-size: 28px; font-weight: 700; margin-top: 8px; }
.price-per { font-size: 20px; font-weight: 500; color: var(--text-muted); }
.price-period { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-desc { font-size: 14px; line-height: 1.5; margin-bottom: 24px; min-height: 42px; }
.price-features { margin-bottom: 28px; }
.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.price-features li:last-child { border-bottom: none; }
.pricing-guarantee {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}
.pricing-guarantee strong { color: var(--white); }

/* --- FAQ --------------------------------------------------- */
.faqs { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq[open] { border-color: var(--orange); }
.faq summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
  font-weight: 300;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* --- FINAL CTA --------------------------------------------- */
.cta-final {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 60%, var(--gold) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-final-inner { position: relative; }
.cta-squirrel { font-size: 72px; margin-bottom: 16px; animation: float 4s ease-in-out infinite; }
.cta-final-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-final-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.cta-final-trust {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* --- FOOTER ------------------------------------------------ */
.footer { background: var(--brown); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-text { color: var(--white); font-size: 22px; }
.footer-brand p { font-size: 14px; margin-top: 8px; line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-weight: 700; color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.footer-col a { font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; }

/* --- ANIMATIONS -------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE -------------------------------------------- */
@media (max-width: 900px) {
  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }
  .pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 32px; }
  .price-card-featured { transform: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .step { max-width: 100%; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .stats-inner { flex-wrap: wrap; gap: 16px; }
  .stat { padding: 8px 20px; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .features-text .section-title { font-size: 26px; }
  .acorn { display: none; }
}
