/*
  Siteshop mockup - design system
  Genbruger brand-farver fra siteshop.skitse.website:
    #0d2818 (dark green, primary), #ff1f22 (red, CTA),
    #a8d0aa (soft green), #fff6f6 / #f7fafc (warm off-white).
  Font: Lato (som pa det eksisterende skitse-site).
  Taenkt som konverterings-optimeret landingpage der tager laeseren
  gennem: hook - problem - losning - proof - produkt - CTA.
*/

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ink: #0d2818;
  --ink-soft: #2a4a38;
  --muted: #5a6b60;
  --bg: #ffffff;
  --bg-soft: #f7f9f6;
  --bg-warm: #fff6f6;
  --line: #e5ebe3;
  --line-strong: #c8d4c7;

  --green: #0d2818;
  --green-soft: #a8d0aa;
  --green-pale: #e8f2e8;
  --red: #ff1f22;
  --red-dark: #d91a1d;
  --red-soft: rgba(255, 31, 34, 0.08);

  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);

  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(13, 40, 24, 0.06), 0 1px 2px rgba(13, 40, 24, 0.04);
  --shadow: 0 10px 30px rgba(13, 40, 24, 0.08), 0 2px 6px rgba(13, 40, 24, 0.04);
  --shadow-lg: 0 30px 80px rgba(13, 40, 24, 0.14), 0 8px 20px rgba(13, 40, 24, 0.06);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 800; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }

p { color: var(--ink-soft); }
.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.highlight-green { color: var(--green); }
.highlight-red { color: var(--red); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn__arrow { transition: transform 0.25s var(--ease); display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 31, 34, 0.28);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 31, 34, 0.38);
}
.btn--dark {
  background: var(--green);
  color: #fff;
}
.btn--dark:hover {
  background: #1a3a27;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.8rem 0;
}
.btn--ghost:hover { color: var(--red); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.logo img { height: 36px; width: auto; }

.nav { display: flex; }
.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav a, .nav-trigger {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
  cursor: pointer;
}
.nav a:hover, .nav-trigger:hover { color: var(--red); }
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem;
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s var(--ease);
  display: block;
  flex-direction: column;
  gap: 0;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  border-radius: 8px;
}
.nav-dropdown a:hover {
  background: var(--green-pale);
  color: var(--green);
}

.header-cta {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.menu-toggle { display: none; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn { padding: 0.7rem 1.1rem; font-size: 0.9rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(168, 208, 170, 0.28), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(255, 31, 34, 0.06), transparent 60%),
    linear-gradient(180deg, #fbfdfa 0%, #ffffff 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.hero__trust .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(168, 208, 170, 0.3);
}
.hero__headline {
  margin-bottom: 1.4rem;
}
.hero__headline .accent { color: var(--red); }
.hero__lead { margin-bottom: 2rem; max-width: 540px; }

.hero__ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__proof {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero__proof strong { color: var(--ink); font-weight: 900; display: block; font-size: 1.4rem; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  width: 100%;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem;
  border: 1px solid var(--line);
}
.hero-card--main {
  inset: 6% 8% 18% 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, #0d2818 0%, #1a3a27 100%);
  color: #fff;
  border: 0;
  padding: 1.6rem;
}
.hero-card--main h4 { color: #fff; margin-bottom: 0.6rem; }
.hero-card--main p { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.hero-card--main .chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  background: rgba(168, 208, 170, 0.2);
  color: var(--green-soft);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-card__rows { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1rem; }
.hero-card__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0.7rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.88rem;
}
.hero-card__row span:first-child { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-card__row span:last-child { color: var(--green-soft); font-weight: 700; font-family: 'SF Mono', Menlo, monospace; font-size: 0.82rem; }

.hero-card--sync {
  bottom: 8%;
  right: 2%;
  width: 62%;
  padding: 1.1rem 1.3rem;
}
.hero-card--sync .sync-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.hero-card--sync .sync-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,0.15);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(34,197,94,0.15); }
  50% { box-shadow: 0 0 0 9px rgba(34,197,94,0.05); }
}
.hero-card--sync .sync-title { font-weight: 800; font-size: 0.92rem; color: var(--ink); }
.hero-card--sync .sync-sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.hero-card--sync .metric { font-size: 2rem; font-weight: 900; color: var(--green); letter-spacing: -0.02em; }
.hero-card--sync .metric-lbl { font-size: 0.8rem; color: var(--muted); }

.hero-card--badge {
  top: 2%;
  right: -2%;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-card--badge .badge-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
}
.hero-card--badge strong { display: block; color: var(--ink); font-size: 0.92rem; }
.hero-card--badge span { color: var(--muted); font-size: 0.78rem; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 1.1 / 1; max-width: 100%; }
  .hero-card--badge { right: 0; }
}

/* ============================================================
   CRM LOGOS BAND
   ============================================================ */
.crm-band {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.crm-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}
.crm-band__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.crm-band__logos {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.crm-band__logos img {
  height: 32px;
  width: auto;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.72;
  transition: all 0.25s;
}
.crm-band__logos img:hover { filter: none; opacity: 1; }

/* ============================================================
   PROBLEM CARDS
   ============================================================ */
.problem {
  background: var(--bg-soft);
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.problem-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.25s var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.problem-card__ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}
.problem-card h3 { margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.98rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 400px at 90% 10%, rgba(168,208,170,0.12), transparent 60%),
    radial-gradient(500px 400px at 10% 110%, rgba(255,31,34,0.08), transparent 60%);
  pointer-events: none;
}
.how .container { position: relative; }
.how h2 { color: #fff; }
.how p { color: rgba(255,255,255,0.78); }
.how .eyebrow { color: var(--green-soft); }
.how .eyebrow::before { background: var(--green-soft); }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step;
}
.how-step {
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  counter-increment: step;
}
.how-step::before {
  content: '0' counter(step);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--green-soft);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.how-step h3 { color: #fff; margin-bottom: 0.5rem; }
.how-step p { color: rgba(255,255,255,0.72); font-size: 0.98rem; }

@media (max-width: 800px) { .how__steps { grid-template-columns: 1fr; } }

/* ============================================================
   APP GALLERY (CRM Connectors)
   ============================================================ */
.apps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.app-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.app-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green-soft) 100%);
  transform: translateY(3px);
  transition: transform 0.3s var(--ease);
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.app-card:hover::after { transform: translateY(0); }
.app-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.app-card__tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.55rem;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 999px;
}
.app-card__tag--hot { background: var(--red-soft); color: var(--red); }
.app-card__ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--green);
}
.app-card h3 { font-size: 1.3rem; }
.app-card p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.app-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
  margin-top: auto;
}
.app-card__link:hover { gap: 0.6rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-warm);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.5rem;
  flex: 1;
  position: relative;
  padding-left: 1.1rem;
}
.testimonial-card blockquote::before {
  content: '';
  position: absolute;
  left: 0; top: 0.25rem; bottom: 0.25rem;
  width: 3px;
  background: var(--red);
  border-radius: 3px;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-pale);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-weight: 800; font-size: 0.98rem; }
.testimonial-card__role { font-size: 0.85rem; color: var(--muted); }

.testimonials__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.testimonials__logos img { height: 44px; width: auto; opacity: 0.6; filter: grayscale(1); }

@media (max-width: 800px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURE PILLARS
   ============================================================ */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.pillar {
  padding: 1.8rem;
  border-left: 3px solid var(--green-soft);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pillar h4 { margin-bottom: 0.6rem; }
.pillar p { font-size: 0.98rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    radial-gradient(600px 400px at 90% 50%, rgba(168,208,170,0.15), transparent 60%),
    linear-gradient(135deg, #0d2818 0%, #1a3a27 100%);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 720px; margin: 0 auto 1rem; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 2rem; font-size: 1.15rem; }
.cta-band__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.cta-band__micro {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 2rem;
}
.footer a { color: rgba(255,255,255,0.72); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-top: 0.8rem; max-width: 280px; }
.footer__brand img {
  height: 34px;
  filter: brightness(0) invert(1);
}
.footer h5 {
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.95rem; }
.footer__bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PRODUCT PAGE (hubexo-smart.html)
   ============================================================ */
.product-hero {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(168,208,170,0.25), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.product-hero__breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.product-hero__breadcrumb a { color: var(--muted); }
.product-hero__breadcrumb a:hover { color: var(--red); }
.product-hero__logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.product-hero__logos img { height: 40px; opacity: 0.9; }
.product-hero__lead { margin: 1rem 0 1.8rem; max-width: 520px; }
.product-hero__badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.product-hero__badge {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.product-hero__badge--green { background: var(--green-pale); color: var(--green); border-color: transparent; }

.product-hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  padding: 1rem;
  border: 1px solid var(--line);
}
.product-hero__visual img { border-radius: 12px; width: 100%; }

@media (max-width: 900px) {
  .product-hero__grid { grid-template-columns: 1fr; }
}

/* Product benefits (2 column split) */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.benefit {
  padding: 1.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
}
.benefit__ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.benefit h4 { margin-bottom: 0.4rem; }
.benefit p { font-size: 0.97rem; color: var(--muted); }

@media (max-width: 700px) { .benefits__grid { grid-template-columns: 1fr; } }

/* Pricing (product page) */
.pricing {
  background: var(--bg-soft);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all 0.25s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card--popular {
  background: linear-gradient(180deg, #0d2818 0%, #1a3a27 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.03);
}
.price-card--popular:hover { transform: scale(1.03) translateY(-4px); }
.price-card--popular h3, .price-card--popular .price-card__price { color: #fff; }
.price-card--popular .price-card__list li { color: rgba(255,255,255,0.85); }
.price-card--popular .price-card__list li::before { color: var(--green-soft); }
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
}
.price-card__tier {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
.price-card--popular .price-card__tier { color: var(--green-soft); }
.price-card h3 { font-size: 1.3rem; }
.price-card__price {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.price-card__price small { font-size: 0.95rem; font-weight: 700; color: var(--muted); }
.price-card--popular .price-card__price small { color: rgba(255,255,255,0.6); }
.price-card__sub { font-size: 0.88rem; color: var(--muted); margin-top: -0.4rem; }
.price-card--popular .price-card__sub { color: rgba(255,255,255,0.6); }
.price-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.6rem;
  flex: 1;
}
.price-card__list li {
  font-size: 0.93rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-soft);
}
.price-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.price-card .btn { width: 100%; justify-content: center; margin-top: 0.6rem; }

@media (max-width: 1000px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-4px); }
}
@media (max-width: 560px) { .pricing__grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item summary {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '-'; transform: rotate(0deg); }
.faq-item p { margin-top: 0.9rem; color: var(--muted); }

/* Form / contact */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}
.contact-form {
  background: #fff;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.98rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 1.4rem; }

.contact-info h3 { margin-bottom: 1rem; }
.contact-info ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
.contact-info li { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.98rem; }
.contact-info li .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-pale);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info strong { display: block; color: var(--ink); margin-bottom: 0.1rem; }
.contact-info span { color: var(--muted); }

@media (max-width: 800px) { .contact-split { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
