/* ══════════════════════════════════════════════
   smartline web.print.seo – Gemeinsame Styles
   ══════════════════════════════════════════════ */

:root {
  --green:        #014639;
  --green-dark:   #00312a;
  --green-light:  #e8edea;
  --green-mid:    #a9b7a2;
  --text:         #1a2318;
  --text-muted:   #848f7f;
  --border:       #cbd5c6;
  --white:        #ffffff;
  --bg:           #f7faf6;
  --red-light:    #fdf0f0;
  --red:          #b83232;
  --red-border:   #f0c8c5;
}

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

/* Anker-Offset für sticky Header */
[id] { scroll-margin-top: 90px; }

/* ── LUCIDE ICONS ─────────────────────── */
.lucide {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}
.top-bar .lucide,
.site-footer .lucide,
.cta-band .lucide { color: var(--bg); }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; }

/* ── TOP BAR ───────────────────────────── */
.top-bar {
  background: var(--green-dark);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.top-bar a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .15s;
}
.top-bar a:hover { color: var(--white); }
.top-social { display: flex; gap: 14px; align-items: center; }
.top-contact { display: flex; gap: 18px; align-items: center; }
.top-contact span { color: rgba(255,255,255,.5); }

@media (max-width: 640px) {
  .top-bar { display: none; }
}

/* ── HEADER / NAVIGATION ───────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(62,124,47,.1);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo img {
  height: 42px;
  width: auto;
}
.site-logo a { display: flex; align-items: center; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { list-style: none; position: relative; }
.main-nav > li > a,
.main-nav > li > span {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.main-nav > li > a:hover,
.main-nav > li > span:hover,
.main-nav > li.active > a,
.main-nav > li.active > span {
  background: var(--green-light);
  color: var(--green);
}

/* Dropdown */
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 260px;
  box-shadow: 0 12px 36px rgba(62,124,47,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  list-style: none;
}
.main-nav li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background .12s;
}
.dropdown li a:hover {
  background: var(--green-light);
  color: var(--green);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > li > a,
  .main-nav > li > span {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: auto;
    background: var(--green-light);
  }
  .dropdown li a {
    padding: 12px 32px;
    border-bottom: 1px solid var(--border);
  }
}

/* ── FOOTER ────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.85);
  padding: 48px 20px 24px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col .footer-logo {
  width:200px;
  height: 50,4px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 8px;
  color: rgba(255,255,255,.7);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
}
.footer-social a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.footer-legal { display: flex; gap: 20px; }

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── BACK TO TOP ───────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(62,124,47,.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ── SHARED BUTTONS ────────────────────── */
.btn {
  display: inline-block;
  text-align: center;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--green);
  transition: background .18s, color .18s;
}
.btn-outline { background: transparent; color: var(--green); }
.btn-outline:hover { background: var(--green-light); }
.btn-solid { background: var(--green); color: var(--white); }
.btn-solid:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.btn-outline:hover { color: var(--green); }

/* ── SHARED SECTION TITLE ──────────────── */
.section-title { max-width: 1060px; margin: 0 auto 32px; }
.section-title.centered { text-align: center; }
.section-title h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.section-title p {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.section-gap { margin-top: 72px; }

/* ── SHARED CTA BAND ──────────────────── */
.cta-band {
  max-width: 1060px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 20px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-band p {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 0.98rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.cta-band-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.cta-band-btns a {
  display: block;
  padding: 13px 24px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background .18s;
}
.cta-band-btns .cb-solid { background: var(--white); color: var(--green-dark); border: 2px solid var(--white); }
.cta-band-btns .cb-solid:hover { background: var(--green-light); color: var(--green-dark); }
.cta-band-btns .cb-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.cta-band-btns .cb-outline:hover { border-color: var(--white); }

@media (max-width: 640px) {
  .cta-band {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
  }
  .cta-band-btns { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* ── SHARED INTRO ──────────────────────── */
.intro {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.intro-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.intro h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-muted);
}
.intro h1 span { color: var(--green); }
.intro p {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.intro-divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 28px auto 0;
}

/* ── SHARED FAQ ────────────────────────── */
.faq-list { max-width: 1060px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 20px 18px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a-inner a { color: var(--green); font-weight: 500; }

/* ── CTA INLINE FORM ───────────────────── */
.cta-inline-form {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
}
.cta-inline-form.open {
  max-height: 500px;
  opacity: 1;
}
.cta-form-inner {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cta-form-row.full { grid-template-columns: 1fr; }
.cta-form-inner input,
.cta-form-inner textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  transition: border-color .15s;
}
.cta-form-inner input::placeholder,
.cta-form-inner textarea::placeholder {
  color: rgba(255,255,255,.45);
}
.cta-form-inner input:focus,
.cta-form-inner textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.15);
}
.cta-form-inner textarea {
  height: 80px;
  resize: vertical;
}
.cta-form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cta-form-submit {
  padding: 12px 28px;
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
}
.cta-form-submit:hover { background: var(--green-light); }
.cta-form-submit:disabled { opacity: .6; cursor: not-allowed; }
.cta-form-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.cta-form-privacy a { color: rgba(255,255,255,.65); }
.cta-form-success {
  padding: 16px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  text-align: center;
  margin-top: 16px;
}
.cta-form-success p {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}
@media (max-width: 560px) {
  .cta-form-row { grid-template-columns: 1fr; }
}

/* section-cta (used in subpages) */
.section-cta .cta-form-inner {
  border-top-color: var(--border);
}
.section-cta .cta-form-inner input,
.section-cta .cta-form-inner textarea {
  border-color: var(--border);
  background: var(--bg);
  color: var(--text);
}
.section-cta .cta-form-inner input::placeholder,
.section-cta .cta-form-inner textarea::placeholder {
  color: var(--text-muted);
}
.section-cta .cta-form-inner input:focus,
.section-cta .cta-form-inner textarea:focus {
  border-color: var(--green);
  background: var(--white);
}
.section-cta .cta-form-submit {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.section-cta .cta-form-submit:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.section-cta .cta-form-privacy {
  color: var(--text-muted);
}
.section-cta .cta-form-privacy a { color: var(--green); }
.section-cta .cta-form-success {
  background: var(--green-light);
}
.section-cta .cta-form-success p {
  color: var(--green-dark);
}

/* ── CARDS GRID & CARD BASE ───────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(62,124,47,.12);
}
.card--featured {
  border-color: var(--green);
  border-width: 2px;
  padding-top: 48px;
  box-shadow: 0 8px 32px rgba(62,124,47,.14);
}
.card--featured:hover {
  box-shadow: 0 20px 56px rgba(62,124,47,.22);
}
.badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 20px;
  border-radius: 0 0 10px 10px; white-space: nowrap;
}
.card-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 6px;
}
.card-name { font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; line-height: 1.2; }
.card-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
.card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.card-price .amount { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.card-price .currency { font-size: 1.1rem; font-weight: 600; color: var(--text-muted); align-self: flex-start; margin-top: 6px; }
.card-price .suffix { font-size: 0.78rem; color: var(--text-muted); align-self: flex-end; padding-bottom: 3px; }
.card-price .old-price {
  font-size: 1.1rem; font-weight: 600; color: var(--text-muted);
  text-decoration: line-through; margin-left: 4px; align-self: center;
}
.card-tagline {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border); line-height: 1.5;
}

/* ── FEATURES LIST ────────────────────── */
.features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 11px; }
.features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; line-height: 1.45; }
.features li .icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; margin-top: 1px;
}
.features li .icon svg { width: 10px; height: 10px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── INFO / RESULT BOX ────────────────── */
.info-box {
  background: var(--green-light); border: 1px solid var(--green-mid);
  border-radius: 10px; padding: 14px 16px; margin-bottom: 20px;
  font-size: 0.83rem; line-height: 1.5; color: var(--green-dark);
}
.info-box strong {
  display: block; font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; color: var(--green);
}
.result-box {
  background: var(--green-light); border: 1px solid var(--green-mid);
  border-radius: 10px; padding: 14px 16px; margin-bottom: 20px;
  font-size: 0.83rem; line-height: 1.5; color: var(--green-dark);
}
.result-box strong {
  display: block; font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; color: var(--green);
}
.caveat { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-bottom: 24px; line-height: 1.5; }
.not-included {
  background: var(--red-light); border: 1px solid var(--red-border);
  border-radius: 10px; padding: 13px 14px; margin-bottom: 16px;
  font-size: 0.8rem; color: var(--red); line-height: 1.55;
  display: flex; gap: 9px; align-items: flex-start;
}
.not-included svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; margin-top: 1px; }

/* ── FAQ SECTION (alternate style) ────── */
.faq-section { max-width: 1060px; margin: 0 auto; }
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  text-align: left; font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-light); border: 1.5px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .25s;
}
.faq-item.open .faq-icon { background: var(--green); transform: rotate(45deg); }
.faq-icon svg { width: 10px; height: 10px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 16px 24px 20px; font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; border-top: 1px solid var(--border);
}
.faq-answer-inner a { color: var(--green); text-decoration: none; }
.faq-answer-inner a:hover { text-decoration: underline; }

/* ── SECTION CTA ──────────────────────── */
.section-cta { max-width: 640px; margin: 72px auto 0; text-align: center; }
.section-cta h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; }
.section-cta p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── SERVER TOGGLE ────────────────────── */
.server-toggle {
  max-width: 1060px;
  margin: 0 auto 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.server-toggle span {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.toggle-btn {
  padding: 7px 18px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  transition: border-color .15s, background .15s, color .15s;
}
.toggle-btn.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

/* ── SERVICE GRID ─────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(62,124,47,.12);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.service-card h3 {
  font-size: 1.05rem; font-weight: 800;
  margin-bottom: 8px; color: var(--text);
}
.service-card p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.6;
}
.service-card ul {
  list-style: none; margin-top: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.service-card ul li {
  font-size: 0.82rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.service-card ul li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 6px;
}

/* ── PROCESS STEPS ────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}
.process-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 24px 20px;
  position: relative;
}
.process-num {
  font-size: 2rem; font-weight: 800;
  color: var(--green-mid); line-height: 1;
  margin-bottom: 12px;
}

/* ── HOSTING BOX ──────────────────────── */
.hosting-box {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.hosting-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.hosting-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.hosting-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.hosting-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--text);
}
.hosting-features li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.hosting-price {
  text-align: center;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 12px;
  padding: 20px 28px;
  white-space: nowrap;
}
.hosting-price .hp-amount { font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; }
.hosting-price .hp-suffix { font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 3px; }
.hosting-price .hp-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; display: block; }

/* ── REASONS GRID ─────────────────────── */
.reasons-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.reason-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.reason-num {
  font-size: 1.4rem; font-weight: 800; color: var(--green-mid);
  line-height: 1; flex-shrink: 0; min-width: 28px;
}
.reason-content h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.reason-content p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── SHARED COMPONENT RESPONSIVE ──────── */
@media (max-width: 640px) {
  .cards { gap: 16px; }
  .card { padding: 32px 24px 28px; }
  .card--featured { padding-top: 44px; }
  .hosting-box { grid-template-columns: 1fr; }
  .hosting-features { grid-template-columns: 1fr; }
  .section-cta h2 { font-size: 1.3rem; }
  .reasons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ── SUPPORT BANNER ────────────────────── */
.support-banner {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.support-banner-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
}
.support-banner h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.support-banner p {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.support-banner-features {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.support-banner-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
}
.support-banner-features span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.support-banner .btn {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .support-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: center;
  }
  .support-banner-features { justify-content: center; }
  .support-banner .btn { width: 100%; }
}

/* ── PAGE CONTENT WRAPPER ──────────────── */
.page-content {
  padding: 60px 20px 80px;
}
