/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  line-height: 1.55;
  font-size: 16px;
  background: #FFF6F1;
  color: #25262B;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1B263B;
  line-height: 1.17;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 8px; }

p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #25262B;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
}
.subheadline { color: #3D5A80; font-size: 1.25rem; margin-bottom: 18px; }
strong { color: #F4793B; font-weight: 700; }

/* COLORS & BRAND PALETTE (with warm/friendly extensions) */
:root {
  --color-primary: #1B263B;
  --color-secondary: #3D5A80;
  --color-accent: #E0FBFC;
  --color-bg: #FFF6F1;
  --color-cream: #FDF0DF;
  --color-warm-orange: #F4793B;
  --color-soft-peach: #FFE3D0;
  --color-card-bg: #FFF9F7;
  --color-card-border: #FFEDD8;
  --color-input-bg: #FFF9F6;
  --color-shadow: 0 4px 16px rgba(244,121,59,0.07), 0 1.5px 4.5px rgba(61,90,128,0.05);
  --color-shadow-intense: 0 6px 32px rgba(244,121,59,0.18);
  --color-neutral: #E7E3DE;
}

/* SPACINGS & CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 24px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Mandatory Section Spacing/Pattern */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: 24px;
  box-shadow: var(--color-shadow);
}

/* CARD AND FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-card-border);
  border-radius: 20px;
  box-shadow: var(--color-shadow);
  margin-bottom: 20px;
  padding: 28px 20px 22px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .14s, box-shadow .21s;
}
.card:hover {
  box-shadow: var(--color-shadow-intense);
  transform: translateY(-4px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.text-section {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.testimonial-card {
  background: var(--color-cream);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  border: 1.5px solid var(--color-soft-peach);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 480px;
  min-width: 180px;
  color: #1B263B;
  font-size: 1.05rem;
}
.testimonial-card p {
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  width: 100%;
}
.feature-grid > div {
  background: var(--color-soft-peach);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  padding: 36px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow .18s, transform .15s;
}
.feature-grid > div:hover {
  box-shadow: var(--color-shadow-intense);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  margin-bottom: 12px;
  height: 40px;
  width: 40px;
}
.feature-grid h3 {
  color: var(--color-warm-orange);
}

.cta-banner {
  background: var(--color-warm-orange);
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  padding: 24px 18px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

/* CTA BUTTONS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 10px 32px;
  background: var(--color-warm-orange);
  color: #fff;
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(244,121,59,0.16);
  border: none;
  transition: background .16s, box-shadow .18s, transform .15s;
  outline: none;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  gap: 8px;
  letter-spacing: .01em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fa6828;
  box-shadow: 0 6px 16px rgba(244,121,59,0.22);
  transform: translateY(-2px) scale(1.03);
}

/* TABLES - COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--color-shadow);
  margin-bottom: 28px;
  background: var(--color-input-bg);
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1.5px solid var(--color-neutral);
}
.comparison-table th {
  background: var(--color-warm-orange);
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.085rem;
  letter-spacing: .02em;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody tr:nth-child(odd) td {
  background: #ffefe3;
}
.comparison-table tbody tr:hover td {
  background: #ffe2c8;
  transition: background .18s;
}

/* HEADER / NAV */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #ffe2c8;
  box-shadow: 0 2px 10px rgba(244,121,59,0.05);
  position: sticky;
  top: 0;
  z-index: 30;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
}
header nav > a img {
  height: 44px;
  width: auto;
  margin-right: 12px;
}
header nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin: 0 10px;
}
header nav ul li a {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  color: #1B263B;
  font-size: 1.025rem;
  padding: 7px 15px;
  border-radius: 8px;
  transition: background .13s, color .14s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  background: var(--color-soft-peach);
  color: var(--color-warm-orange);
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: var(--color-warm-orange);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  position: relative;
  font-size: 1.85rem;
  z-index: 101;
  box-shadow: 0 3px 12px rgba(244,121,59,0.23);
  border: none;
  transition: background .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fa6828;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,246,241,0.98);
  box-shadow: 0 4px 24px rgba(27,38,59,0.17);
  z-index: 150;
  transform: translateX(-100%);
  transition: transform .37s cubic-bezier(.23,1.1,.32,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-warm-orange);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  margin-left: auto;
  margin-right: 16px;
  margin-bottom: 12px;
  border: none;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(244,121,59,0.23);
  transition: background .17s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: #fa6828;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 94%;
  margin: 16px auto 0 auto;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  color: #1B263B;
  font-size: 1.15rem;
  background: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  width: 100%;
  transition: background .12s, color .13s;
  margin-bottom: 2px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-soft-peach);
  color: var(--color-warm-orange);
}

/* MAIN CTA BUTTON in header */
nav > .cta-primary {
  margin-left: 20px;
  min-width: 120px;
}

/* HERO SECTION & SECTIONS */
main > section:first-child {
  background: linear-gradient(135deg, #fff9f7 80%, #fff1e2 100%);
  box-shadow: 0 5px 36px rgba(244,121,59,0.09);
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  padding: 48px 0 42px 0;
  position: relative;
}
main > section:first-child .content-wrapper {
  align-items: flex-start;
  justify-content: center;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1.5px solid #ffe2c8;
  box-shadow: 0 -1px 8px rgba(244,121,59,0.04);
  padding: 34px 0 24px 0;
  margin-top: 50px;
  color: #1B263B;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav ul {
  display: flex;
  gap: 22px;
}
footer nav ul li a {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  color: #3D5A80;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background .13s, color .14s;
}
footer nav ul li a:hover,footer nav ul li a:focus {
  background: var(--color-soft-peach);
  color: var(--color-warm-orange);
}
footer p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: #62677c;
  margin-top: 13px;
}

/* LISTS, UL, & OL */
ul, ol {
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 36px;
  position: relative;
  font-size: 1.04rem;
  color: #25262B;
}
ul li::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--color-warm-orange);
  border-radius: 50%;
  position: absolute;
  left: 16px; top: 9px;
}
/* Remove dot for special icon-lists */
ul li img {
  position: absolute;
  left: 13px; top: 6px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff1e2;
  box-shadow: 0 1px 2px rgba(244,121,59,0.08);
}
ul li img + * {
  margin-left: 26px;
}

/* ---- TESTIMONIALS & OPINIE ---- */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #7C4200;
  font-size: .98rem;
  font-weight: 500;
  margin-left: 2px;
}
.testimonial-card div {
  color: #f4793b;
  font-size: 1.17rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
}
/* ---- END TESTIMONIALS ---- */

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--color-soft-peach);
  border-top: 2px solid var(--color-warm-orange);
  box-shadow: 0 -3px 18px rgba(61,90,128,.09);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 26px;
  z-index: 210;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: banner-fade-up .4s .01s both;
  flex-wrap: wrap;
}
@keyframes banner-fade-up {
  from { opacity: 0; transform: translateY(65px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cta {
  border: none; outline: none;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Poppins', Arial, sans-serif;
  padding: 9px 22px;
  font-size: 1.02rem;
  background: var(--color-warm-orange);
  color: #fff;
  cursor: pointer;
  transition: background .16s, box-shadow .13s;
  margin-bottom: 2px;
}
.cookie-banner .cookie-reject {
  background: #e9a376;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #e0fbfc;
  color: #1B263B;
  border: 1.5px solid var(--color-warm-orange);
}
.cookie-banner button:hover,.cookie-banner button:focus {
  background: #fa6828;
}
.cookie-banner .cookie-settings:hover,.cookie-banner .cookie-settings:focus {
  background: #ffe5c8;
  color: #F4793B;
}

/* COOKIE POPUP MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(.99);
  z-index: 220;
  background: #fff9f7;
  border-radius: 18px;
  box-shadow: 0 6px 48px rgba(27,38,59,.22);
  padding: 38px 26px 28px 26px;
  min-width: 320px; max-width: 95vw;
  animation: modal-fade-in .31s .01s both;
  font-family: 'Roboto', Arial, sans-serif;
}
@keyframes modal-fade-in {
  from { opacity: 0; transform: translate(-50%,-30%) scale(.97); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: var(--color-warm-orange);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal .category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .toggle {
  width: 38px; height: 22px;
  background: #ffe3d0;
  border-radius: 12px;
  position: relative;
  margin-left: 10px;
}
.cookie-modal .toggle input { display: none; }
.cookie-modal .toggle span {
  display: block;
  width: 18px; height: 18px;
  background: var(--color-warm-orange);
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: left .18s;
}
.cookie-modal .toggle input:checked + span {
  left: 17px;
  background: #1B263B;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 18px;
  color: var(--color-warm-orange);
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-actions {
  display: flex; gap: 18px; margin-top: 18px;
}
.cookie-modal button {
  border-radius: 8px;
  padding: 8px 22px;
  background: var(--color-warm-orange);
  color: #fff;
  border: none;
  font-weight: 600;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #fa6828;
}

/* ------ RESPONSIVENESS (MOBILE-FIRST) ------ */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section { padding: 34px 10px; }
}
@media (max-width: 900px) {
  header nav ul { gap: 12px; }
  header nav { padding: 0 8px; }
  .container { padding: 0 8px; }
}
@media (max-width: 768px) {
  /* MOBILE NAV */
  header nav ul, nav > .cta-primary { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  header nav { height: 62px; }
  .section { padding: 26px 3vw; }
  .content-grid,
  .feature-grid,
  .card-container,
  .testimonial-carousel {
    flex-direction: column !important;
    gap: 18px;
  }
  .feature-grid > div,
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .cta-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px;
  }
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
  .cta-primary { font-size: 1rem; padding: 8.5px 20px; }
  .comparison-table th, .comparison-table td { font-size: .99rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 2vw; }
  section { padding: 22px 0; margin-bottom: 38px; }
  .cookie-modal { padding: 18px 7.5vw 17px 7.5vw; min-width: unset; }
  .cta-primary { width: 100%; min-width: unset; }
}

/* MICRO-INTERACTIONS & SMOOTH TRANSITIONS */
.card, .feature-grid > div, .testimonial-card, .cta-primary, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .cookie-modal button {
  transition: background .16s, box-shadow .16s, color .14s, transform .14s;
}

/* ------ UTILITY CLASSES ------ */
.d-none { display: none !important; }
.hidden { visibility: hidden !important; }
.text-center { text-align: center !important; }
.mb-0 { margin-bottom: 0 !important; }

/* FINAL: Prevent overlap, spacing */
.card, .testimonial-card, .feature-grid > div { margin-bottom: 20px; }
section, .section, .card-container, .content-grid, .testimonial-carousel { gap: 20px; }

/* END CSS */
