/* Furlinx Landing Page Theme */
:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --fg: #1a1a18;
  --fg-muted: #6b6b5e;
  --accent: #5c7a4e;
  --accent-warm: #d4933a;
  --accent-warm-light: #f5e6d3;
  --border: #ddd8cf;
  --radius: 6px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 380px;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.product-img-placeholder {
  height: 220px;
  background: linear-gradient(145deg, #e8e3dc 0%, #d4cfc7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedflow-hero::after {
  content: '';
  width: 120px;
  height: 160px;
  background: linear-gradient(180deg, #ccc8bf 0%, #b8b3aa 100%);
  border-radius: 12px 12px 4px 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.product-label {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
}
.product-name {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.product-desc {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.product-price {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* ── PRODUCTS ── */
.products {
  padding: 80px 48px;
  background: white;
}
.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.product-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(92,122,78,0.1);
}
.product-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-warm);
}
.card-icon { margin-bottom: 20px; }

/* ── SMART PETS ── */
.smart-pets {
  padding: 80px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.smart-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.smart-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.smart-features { display: flex; flex-direction: column; gap: 12px; }
.smart-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg);
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.smart-product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.smart-img-placeholder {
  height: 260px;
  background: linear-gradient(160deg, #e0dcd5 0%, #ccc7be 100%);
}
.smart-label { padding: 24px; }
.smart-label-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.smart-label-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.smart-label-price .strike {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-left: 8px;
}
.smart-label-tag {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

/* ── SHEDDING SYSTEM ── */
.shedding {
  padding: 80px 48px;
  background: white;
}
.shedding-inner { max-width: 1100px; margin: 0 auto; }
.shedding-header { max-width: 560px; }
.shedding-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}
.shedding-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.step-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-warm-light);
  margin-bottom: 16px;
  line-height: 1;
}
.step-content h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  background: var(--accent);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  background: var(--fg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-left: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.footer-links span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-left: auto;
  text-align: right;
}
.footer-brand { display: flex; align-items: center; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: center; }
  .hero-sub br { display: none; }
  .products { padding: 56px 24px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .smart-pets { padding: 56px 24px; }
  .smart-inner { grid-template-columns: 1fr; gap: 40px; }
  .shedding { padding: 56px 24px; }
  .shedding-steps { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-wrap: wrap; gap: 20px; }
  .footer-links { margin-left: 0; }
  .footer-copy { margin-left: 0; text-align: left; }
}