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

:root {
  --ink: #1f2d3d;
  --muted: #5c6674;
  --green: #39a935;
  --green-dark: #147c21;
  --navy: #2e3b4f;
  --rose: #b82b53;
  --line: #e5e7eb;
  --bg: #f4f6f8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

body.index-page {
  -webkit-user-select: none;
  user-select: none;
}

body.policy-page {
  -webkit-user-select: text;
  user-select: text;
  background:
    radial-gradient(circle at top left, rgba(57,169,53,.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%);
}

/* Hero screenshot stage */
.hero-stage {
  position: relative;
  width: 100%;
  height: calc(100vw * 1079 / 1900);
  min-height: 560px;
  max-height: 1080px;
  background-image: url("images/desktop.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 3;
  border-radius: 16px;
  text-indent: -9999px;
  overflow: hidden;
  background: rgba(255,255,255,0);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hotspot:focus-visible {
  outline: 3px solid rgba(57,169,53,.85);
  outline-offset: 4px;
}

.desktop-top-cta {
  left: 64.2%;
  top: 6.2%;
  width: 24.4%;
  height: 6.6%;
}

.desktop-main-cta {
  left: 11.4%;
  top: 49.0%;
  width: 20.6%;
  height: 7.2%;
}

.hotspot-mobile {
  display: none;
}

/* Offer Banner */
#offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 10001;
  padding: 0;
  pointer-events: none;
}

#offer-banner.visible {
  pointer-events: auto;
}

.offer-container {
  background: #fff;
  border-radius: 0 0 22px 22px;
  padding: 14px 40px;
  max-width: 100%;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: slideDown .5s cubic-bezier(.16,1,.3,1) both;
  pointer-events: auto;
}

.offer-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 22px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 10px 12px 0 0;
  border-radius: 0 22px 0 0;
  line-height: 1;
  text-decoration: none;
}

.offer-close:hover {
  color: #111;
}

.offer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding-right: 32px;
}

.offer-text {
  flex: 1;
  text-align: left;
}

.offer-badge {
  display: inline-block;
  background: #eaf8e6;
  color: #176c21;
  border: 1px solid #b8e6b4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
}

.offer-title {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 2px;
}

.offer-sub {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.4;
}

.offer-btn,
.btn-inline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 4px 16px rgba(20,124,33,.24);
}

.offer-btn:hover,
.btn-inline:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(20,124,33,.32);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 10000;
  padding: 0 20px 32px;
  animation: fadeInBackdrop .4s ease both;
}

.cookie-banner-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.cookie-banner-container {
  background: #f5f7f5;
  border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  animation: slideUp .55s cubic-bezier(.16,1,.3,1) both;
  max-width: 620px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cookie-banner-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 30px;
  color: #1f2937;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  line-height: 1;
  text-decoration: none;
}

.cookie-banner-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 44px 16px 0;
  color: #111827;
}

.cookie-banner-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-banner-image {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.cookie-policy-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 9px;
  margin-top: 14px;
  color: #6b7280;
  font-size: 11px;
  line-height: 1.4;
}

.cookie-policy-links a {
  color: #526171;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-policy-links a:hover,
.cookie-policy-links a:focus-visible {
  color: var(--green-dark);
}

.cookie-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(20,124,33,.26);
}

.cookie-btn-preferences {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d1d5db;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* FAQ */
.seo-faq {
  width: min(920px, calc(100% - 32px));
  margin: 40px auto 48px;
  background: rgba(255,255,255,.97);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 36px rgba(0,0,0,.16);
  color: #111827;
  -webkit-user-select: text;
  user-select: text;
}

.seo-faq-title {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  font-weight: 800;
  color: #111827;
  text-align: center;
}

.showFaqsContainer {
  appearance: none;
  border: 0;
  background: transparent;
  color: #176c21;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-helper {
  text-align: center;
  color: #64748b;
  font-size: 13px;
  margin-bottom: 14px;
}

.panel-group[hidden] {
  display: none !important;
}

.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  margin: 10px 0;
}

.seo-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  color: #111827;
  list-style-position: inside;
  touch-action: manipulation;
}

.seo-faq summary::-webkit-details-marker {
  color: #176c21;
}

.seo-faq-answer {
  border-top: 1px solid var(--line);
  padding: 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #1f2937;
  white-space: pre-line;
}

.seo-faq-answer .btn-inline {
  margin-top: 8px;
  white-space: normal;
}

/* Footer */
.site-footer {
  background: #202b3d;
  color: #e5e7eb;
  padding: 34px 18px;
  -webkit-user-select: text;
  user-select: text;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.footer-copy {
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Policy pages */
.policy-header {
  background: #202b3d;
  color: #fff;
  padding: 18px;
}

.policy-header-inner,
.policy-main,
.policy-footer-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.policy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.policy-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
}

.policy-logo img {
  width: 30px;
  height: 30px;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.policy-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.policy-main {
  background: #fff;
  margin-top: 34px;
  margin-bottom: 34px;
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .1);
}

.policy-main h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 10px;
  color: #111827;
}

.policy-updated {
  color: #64748b;
  margin-bottom: 28px;
}

.policy-main h2 {
  font-size: 22px;
  margin: 28px 0 10px;
  color: #142033;
}

.policy-main p,
.policy-main li {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

.policy-main ul {
  padding-left: 22px;
  margin: 10px 0;
}

.policy-note {
  background: #eef9ed;
  border: 1px solid #c7ebc4;
  color: #195d21;
  border-radius: 16px;
  padding: 16px;
  margin: 18px 0;
  font-weight: 700;
}

.policy-footer {
  background: #202b3d;
  color: #e5e7eb;
  padding: 24px 18px;
}

.policy-footer-inner {
  text-align: center;
}

.policy-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.policy-footer a:hover {
  text-decoration: underline;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero-stage {
    min-height: 0;
    max-height: none;
    height: calc(100vw * 2048 / 772);
    background-image: url("images/mobile.jpg");
    background-size: 100% auto;
    background-position: center top;
  }

  .hotspot-desktop {
    display: none;
  }

  .hotspot-mobile {
    display: block;
  }

  .mobile-main-cta {
    left: 3%;
    top: 23.9%;
    width: 94%;
    height: 5.4%;
    border-radius: 999px;
  }

  .mobile-bottom-cta {
    left: 3%;
    top: 91.5%;
    width: 94%;
    height: 5.2%;
    border-radius: 12px;
  }

  .offer-container {
    border-radius: 0 0 16px 16px;
    padding: 16px 16px 14px;
  }

  .offer-inner {
    gap: 12px;
    align-items: flex-start;
    padding-right: 22px;
  }

  .offer-title {
    font-size: 13px;
  }

  .offer-sub {
    font-size: 11px;
  }

  .offer-btn {
    font-size: 12px;
    padding: 10px 14px;
  }

  #cookie-banner {
    padding: 0 12px 18px;
  }

  .cookie-banner-container {
    border-radius: 20px;
    padding: 24px 18px 18px;
  }

  .cookie-banner-title {
    font-size: 21px;
  }

  .cookie-banner-body {
    gap: 14px;
  }

  .cookie-banner-image {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .cookie-banner-text p {
    font-size: 14px;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .seo-faq {
    margin: 28px auto 36px;
    padding: 16px;
    border-radius: 16px;
  }

  .seo-faq-title {
    font-size: 19px;
  }

  .seo-faq summary {
    font-size: 16px;
    padding: 16px;
  }

  .seo-faq-answer {
    font-size: 14px;
    padding: 16px;
  }

  .policy-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-main {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .offer-inner {
    flex-direction: column;
  }

  .offer-btn {
    align-self: flex-start;
  }

  .footer-links {
    flex-direction: column;
  }
}


/* Integrated FAQ inside cookie banner */
.cookie-banner-container {
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cookie-integrated-faq {
  margin-top: 18px;
  border: 1px solid #d8e2d5;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  color: #1f2d3d;
}

.cookie-integrated-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  color: #176c21;
  list-style-position: inside;
  touch-action: manipulation;
}

.cookie-integrated-faq summary::-webkit-details-marker {
  color: #176c21;
}

.cookie-integrated-faq-content {
  border-top: 1px solid #d8e2d5;
  padding: 4px 18px 18px;
  max-height: min(52vh, 520px);
  overflow-y: auto;
  -webkit-user-select: text;
  user-select: text;
}

.cookie-faq-entry {
  padding: 16px 0;
  border-bottom: 1px solid #edf2ee;
}

.cookie-faq-entry:last-child {
  border-bottom: 0;
}

.cookie-faq-entry h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.cookie-faq-copy {
  color: #374151;
  font-size: 14px;
  line-height: 1.72;
  white-space: pre-line;
}

.cookie-faq-copy .btn-inline {
  margin-top: 10px;
  white-space: normal;
}
