/* ===========================================================
   Dewpoint — Marketingové poradenství
   Paleta: Dew Blue #7BCBDD | Mist White #FBFCFB | Sage Green #6D8B74
           Stone Gray #757A82 | Soft Gold #C89A53
   =========================================================== */

:root {
  --dew: #7BCBDD;
  --dew-deep: #4FAFC4;
  --mist: #FBFCFB;
  --sage: #6D8B74;
  --sage-deep: #55705C;
  --stone: #757A82;
  --gold: #C89A53;
  --gold-deep: #B0843F;
  --ink: #23303A;
  --line: rgba(117, 122, 130, 0.18);
  --shadow: 0 18px 50px -24px rgba(35, 48, 58, 0.45);
  --shadow-sm: 0 8px 24px -14px rgba(35, 48, 58, 0.4);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --ff: "Segoe UI", Tahoma, "Helvetica Neue", Arial, sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--dew-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; color: var(--ink); font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 92px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head p { color: var(--stone); margin-top: 16px; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff); font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s ease;
  text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--dew); color: var(--dew-deep); background: rgba(123,203,221,.08); }
.btn-light { background: var(--mist); color: var(--ink); }
.btn-light:hover { background: #fff; color: var(--gold-deep); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 251, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--ink); }
.brand img { width: 38px; height: 38px; }
.brand span small { display: block; font-family: var(--ff); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--stone); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: var(--ink); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.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; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 118px 0 104px;
  background:
    linear-gradient(180deg, rgba(251,252,251,.72) 0%, rgba(251,252,251,.55) 40%, rgba(109,139,116,.28) 100%),
    url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=1900&q=80") center/cover no-repeat;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
.hero h1 .accent { color: var(--dew-deep); }
.hero-lead { font-size: 1.16rem; color: #3c4a54; margin: 22px 0 30px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 42px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--serif); font-size: 2rem; color: var(--sage-deep); display: block; }
.hero-stats .stat span { font-size: .86rem; color: var(--stone); }
.hero-card {
  background: rgba(251,252,251,.9); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow);
}
.hero-card img { border-radius: 12px; height: 420px; width: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */
.trust { padding: 34px 0; border-bottom: 1px solid var(--line); background: #fff; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 46px; flex-wrap: wrap; }
.trust-row span { font-family: var(--serif); font-size: 1.1rem; color: var(--stone); opacity: .85; letter-spacing: .04em; }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--mist), #fff); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(123,203,221,.22), rgba(109,139,116,.22));
  margin-bottom: 20px;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--stone); font-size: .97rem; }
.card ul { list-style: none; margin-top: 16px; }
.card ul li { position: relative; padding-left: 24px; margin: 8px 0; font-size: .92rem; color: #47535c; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* ---------- Approach / feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; max-height: 480px; width: 100%; object-fit: cover; }
.steps { list-style: none; margin-top: 26px; }
.steps li { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.steps li:last-child { border-bottom: 0; }
.steps .num {
  flex: 0 0 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--dew); color: #12333c; font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
}
.steps h4 { font-size: 1.08rem; margin-bottom: 4px; }
.steps p { color: var(--stone); font-size: .93rem; }

/* ---------- Stats band ---------- */
.band {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: var(--mist);
}
.band .section-head h2, .band .eyebrow { color: var(--mist); }
.band .eyebrow { color: rgba(251,252,251,.75); }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.band-grid strong { font-family: var(--serif); font-size: 2.6rem; display: block; color: #fff; }
.band-grid span { color: rgba(251,252,251,.82); font-size: .95rem; }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(180deg, #fff, var(--mist)); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { border: 1.5px solid var(--gold); box-shadow: var(--shadow); }
.plan .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.plan h3 { font-size: 1.4rem; }
.plan .desc { color: var(--stone); font-size: .92rem; margin: 8px 0 20px; min-height: 42px; }
.plan .price { font-family: var(--serif); font-size: 2.6rem; color: var(--ink); }
.plan .price small { font-family: var(--ff); font-size: .9rem; color: var(--stone); font-weight: 500; }
.plan .period { color: var(--stone); font-size: .85rem; margin-bottom: 22px; }
.plan ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.plan ul li { position: relative; padding-left: 26px; margin: 11px 0; font-size: .94rem; color: #445059; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.plan ul li.muted { color: var(--stone); }
.plan ul li.muted::before { content: "–"; color: var(--stone); }
.price-note { text-align: center; color: var(--stone); font-size: .9rem; margin-top: 30px; }
.price-note a { font-weight: 600; }

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.quote p { font-style: italic; color: #3c4a54; margin-bottom: 20px; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote .who strong { display: block; font-size: .95rem; }
.quote .who span { font-size: .82rem; color: var(--stone); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 24px; font-size: 1.05rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--serif);
}
.faq-q .chev { transition: transform .3s ease; color: var(--dew-deep); flex: 0 0 auto; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--stone); }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--mist), #fff); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-info > p { color: var(--stone); margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-item .ic {
  flex: 0 0 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(123,203,221,.16);
}
.info-item .ic svg { width: 22px; height: 22px; }
.info-item strong { display: block; font-size: .95rem; }
.info-item span, .info-item a { color: var(--stone); font-size: .93rem; }
.contact-map { margin-top: 8px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-map img { width: 100%; height: 190px; object-fit: cover; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; color: #3c4a54; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--ff); font-size: .95rem; color: var(--ink); background: var(--mist); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--dew); box-shadow: 0 0 0 3px rgba(123,203,221,.2); background: #fff;
}
.field textarea { resize: vertical; min-height: 118px; }
.field .err { color: #b4453a; font-size: .8rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #d9776d; }
.field.invalid .err { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--stone); margin-bottom: 20px; }
.consent input { width: auto; margin-top: 4px; }
.form-note { font-size: .83rem; color: var(--stone); margin-top: 14px; text-align: center; }
.form-success {
  display: none; background: rgba(109,139,116,.12); border: 1px solid var(--sage);
  color: var(--sage-deep); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 20px; font-size: .95rem;
}
.form-success.show { display: block; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(35,48,58,.78), rgba(85,112,92,.78)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1700&q=80") center/cover;
  color: #fff; text-align: center;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-strip p { color: rgba(255,255,255,.88); max-width: 620px; margin: 16px auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251,252,251,.78); padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: var(--mist); margin-bottom: 16px; }
.site-footer .brand span small { color: rgba(251,252,251,.55); }
.footer-about { font-size: .92rem; color: rgba(251,252,251,.62); max-width: 320px; }
.footer-col h4 { color: var(--mist); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--ff); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(251,252,251,.7); font-size: .93rem; }
.footer-col a:hover { color: var(--dew); }
.footer-bottom {
  border-top: 1px solid rgba(251,252,251,.14); margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: rgba(251,252,251,.55);
}
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 90;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 26px; max-width: 940px; margin: 0 auto;
  display: none; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.cookie.show { display: grid; }
.cookie h4 { font-size: 1.05rem; margin-bottom: 5px; }
.cookie p { font-size: .88rem; color: var(--stone); }
.cookie p a { font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Legal pages ---------- */
.legal-hero { padding: 66px 0 40px; background: linear-gradient(180deg, rgba(123,203,221,.14), var(--mist)); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.legal-hero p { color: var(--stone); margin-top: 10px; }
.legal-body { padding: 56px 0 80px; }
.legal-body .container { max-width: 860px; }
.legal-body h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.legal-body h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal-body p, .legal-body li { color: #3f4a53; font-size: .98rem; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { margin: 0 0 16px 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 26px; margin-bottom: 34px; }
.legal-toc h4 { margin-bottom: 10px; font-family: var(--ff); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.legal-toc ul { list-style: none; margin: 0; }
.legal-toc li { margin-bottom: 7px; }
.legal-updated { font-size: .88rem; color: var(--stone); font-style: italic; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 68px 0; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .hero-card img { height: 300px; }
  .card-grid, .price-grid, .quotes-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--mist); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
  }
  .cookie { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .form-row { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .cta-strip .btn { width: 100%; }
}
