/* FreshSpot — youthful green + white, card/bento layout. Space Grotesk + DM Sans */
:root {
  --green: #1fbf5c;
  --green-deep: #149c49;
  --green-ink: #0c5f2c;
  --green-soft: #e7f8ee;
  --lime: #c4f56b;
  --ink: #16241b;
  --muted: #5e7066;
  --line: #e3ece6;
  --bg: #ffffff;
  --bg-soft: #f3f8f5;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 22px 48px -26px rgba(20, 156, 73, 0.4);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Space Grotesk", system-ui, sans-serif; font-weight: 700; line-height: 1.08; margin: 0 0 0.4em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
a { color: var(--green-ink); text-decoration: none; }
a:hover { color: var(--green-deep); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--green-deep); background: var(--green-soft); padding: 7px 16px; border-radius: 999px; margin-bottom: 16px; }
.section__head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section__head p { color: var(--muted); font-size: 1.06rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-family: "Space Grotesk", sans-serif; font-weight: 600; border: 2px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { transform: translateY(-2px); background: var(--green-deep); color: #fff; }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-deep); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--green-ink); color: #fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 34px; height: 34px; border-radius: 12px; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 1.1rem; }
.nav__links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); font-weight: 500; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 700; color: var(--green-ink); white-space: nowrap; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero { padding: 64px 0 80px; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); }
.hero h1 .hl { color: var(--green); }
.hero p.lead { font-size: 1.16rem; color: var(--muted); max-width: 40ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero__chips span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.88rem; font-weight: 500; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero__float { position: absolute; background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: 14px 18px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.hero__float--1 { top: 24px; left: -16px; }
.hero__float--2 { bottom: 24px; right: -16px; }
.hero__float .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; }

/* Bento services */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento .card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.bento .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bento .card--wide { grid-column: span 2; background: var(--green-soft); border-color: transparent; }
.bento .card--green { background: var(--ink); color: #fff; }
.bento .card--green h3 { color: #fff; }
.card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.bento .card--green .card__icon { background: rgba(255,255,255,0.12); color: var(--lime); }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }
.bento .card--green p { color: #c3d3c9; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 10px; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 0.85rem; }
.feature-list strong { display: block; }
.feature-list span { color: var(--muted); font-size: 0.95rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: left; }
.step__num { width: 48px; height: 48px; border-radius: 14px; background: var(--lime); color: var(--green-ink); font-family: "Space Grotesk"; font-weight: 700; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.25rem; }
.step p { color: var(--muted); margin: 0; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; }
.plan--featured { background: var(--ink); color: #fff; border-color: transparent; position: relative; }
.plan--featured h3 { color: #fff; }
.plan--featured::after { content: "Popular"; position: absolute; top: 22px; right: 22px; background: var(--lime); color: var(--green-ink); font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.plan h3 { font-size: 1.35rem; }
.plan__price { font-family: "Space Grotesk"; font-size: 2.6rem; font-weight: 700; margin: 8px 0 2px; }
.plan__price span { font-size: 1rem; color: var(--muted); font-family: "DM Sans"; font-weight: 400; }
.plan--featured .plan__price span { color: #aebdb4; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 11px; }
.plan li { padding-left: 26px; position: relative; font-size: 0.96rem; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.plan--featured li::before { color: var(--lime); }
.plan .btn { margin-top: auto; justify-content: center; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote__stars { color: #f0a93a; margin-bottom: 12px; letter-spacing: 2px; }
.quote p { font-weight: 500; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote__avatar { width: 42px; height: 42px; border-radius: 14px; background: var(--green); color: #fff; display: grid; place-items: center; font-family: "Space Grotesk"; font-weight: 700; }
.quote__who strong { display: block; }
.quote__who span { color: var(--muted); font-size: 0.85rem; }

/* Areas */
.areas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.areas span { background: #fff; border: 1px solid var(--line); padding: 10px 20px; border-radius: 999px; font-weight: 500; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; flex: 0 0 auto; }
.contact-info strong { display: block; }
.contact-info span { color: var(--muted); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: grid; gap: 16px; box-shadow: var(--shadow); }
.form label { font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; font-family: inherit; font-size: 0.98rem; background: var(--bg-soft); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form textarea { resize: vertical; min-height: 110px; }
.form .note { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* Footer */
.site-footer { background: var(--ink); color: #c3d3c9; padding: 64px 0 28px; }
.site-footer a { color: #c3d3c9; }
.site-footer a:hover { color: var(--lime); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-grid h4 { color: #fff; font-family: "Space Grotesk"; font-size: 1.02rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid .brand { color: #fff; }
.footer-grid p { color: #9fb2a6; font-size: 0.92rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: #8aa093; }
.footer-bottom a { color: #8aa093; }

/* Cookie bar */
.cookie-bar { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 60; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 22px 50px -18px rgba(0,0,0,0.28); padding: 18px 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; transform: translateY(150%); transition: transform 0.35s ease; max-width: 980px; margin: 0 auto; }
.cookie-bar--visible { transform: translateY(0); }
.cookie-bar__text { margin: 0; font-size: 0.9rem; color: var(--muted); flex: 1 1 320px; }
.cookie-bar__actions { display: flex; gap: 10px; align-items: center; }
.cookie-bar__btn { padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: 2px solid var(--green); }
.cookie-bar__btn--accept { background: var(--green); color: #fff; }
.cookie-bar__btn--learn { background: transparent; color: var(--green-deep); }

/* Legal */
.legal { padding: 64px 0 84px; }
.legal__wrap { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 46px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.4rem; margin-top: 34px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }

/* Page hero */
.page-hero { background: var(--green-soft); padding: 56px 0; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0; }
.page-hero p { color: var(--muted); margin: 10px 0 0; }
.breadcrumb { font-size: 0.85rem; color: var(--green-deep); margin-bottom: 10px; }

/* Responsive */
@media (max-width: 920px) {
  .hero__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .bento, .steps, .plans, .quotes { grid-template-columns: 1fr 1fr; }
  .bento .card--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__media { order: -1; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .nav__links { position: fixed; inset: 64px 0 auto 0; background: #fff; flex-direction: column; gap: 0; padding: 12px 0; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.25s ease; }
  .nav__links--open { transform: translateY(0); }
  .nav__links li { width: 100%; text-align: center; padding: 10px 0; }
  .nav__toggle { display: block; }
  .nav__phone { display: none; }
  .bento, .steps, .plans, .quotes, .footer-grid { grid-template-columns: 1fr; }
  .bento .card--wide { grid-column: span 1; }
  .legal__wrap { padding: 28px 22px; }
}
