/* RESET & NORMALIZATION */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #23272f;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #1952a6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #e39800;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TYPOGRAPHY */
h1, .hero h1, .section h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1952a6;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #23272f;
  margin-bottom: 10px;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1952a6;
}
p, li, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #23272f;
  font-weight: 400;
}
.subheadline {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #34395a;
  font-weight: 500;
}
strong {
  font-weight: 700;
}

/* PRIMARY BUTTON STYLES */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 800;
  background: #e39800;
  color: #fff;
  border-radius: 40px;
  border: none;
  outline: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px -8px rgba(25,82,166,0.12), 0 1.5px 4px rgba(25,82,166,0.08);
  transition: background 0.2s, box-shadow 0.22s, transform 0.13s;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
  margin: 12px 0;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffbb00;
  color: #23272f;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px -8px rgba(25,82,166,0.17),0 2px 8px rgba(25,82,166,0.11);
}

/* HEADER & NAV */
header {
  background: #fff;
  box-shadow: 0 2px 12px -8px rgba(25,82,166,0.09);
  z-index: 97;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  position: relative;
}
.main-nav > a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 6px;
  border-radius: 6px;
  color: #1952a6;
  transition: background 0.14s, color 0.14s;
  background: none;
}
.main-nav > a.cta-btn {
  margin-left: auto;
  margin-right: 0;
}
.main-nav > a:not(.cta-btn):hover, .main-nav > a:not(.cta-btn):focus {
  background: #e8eaf0;
  color: #e39800;
}
.main-nav img {
  height: 38px;
  margin-right: 10px;
}

@media (max-width: 1020px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .main-nav > a {
    font-size: 0.98rem;
    padding: 8px 3px;
  }
}

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu-toggle {
  display: none;
  background: #e39800;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 102;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffbb00;
  color: #23272f;
  outline: none;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 110;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.44,.09,.58,1);
  box-shadow: 16px 0 32px -12px rgba(25,82,166,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1952a6;
  font-size: 2.5rem;
  font-weight: 700;
  position: absolute;
  right: 32px;
  top: 28px;
  z-index: 120;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #e39800;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 90px 40px 20px 32px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1952a6;
  padding: 8px 0px;
  border-bottom: 1px solid #e8eaf0;
  width: 100%;
  display: block;
  transition: color 0.16s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #e39800;
  background: #e8eaf0;
}

@media (max-width: 800px) {
  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 600px) {
  .mobile-menu-toggle {
    right: 12px;
    top: 10px;
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }
  .mobile-nav {
    padding: 68px 20px 0 14px;
  }
}

/* HERO SECTION */
.hero {
  background: #1952a6;
  color: #fff;
  padding: 70px 0 46px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  text-shadow: 0 2px 18px rgba(0,34,122,0.17);
}
.hero .subheadline {
  color: #e8eaf0;
  font-weight: 600;
  font-size: 1.18rem;
}
.hero .cta-btn {
  background: #ffbb00;
  color: #1952a6;
  margin-left: 0;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #e39800;
  color: #fff;
}

@media (max-width: 600px) {
  .hero {
    padding: 38px 0 26px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* UNIVERSAL SECTION SPACING */
.section,
.features, .steps, .testimonials, .cta-final,
.categories-overview, .popular-categories,
.rankings-overview, .benefits, .search-section,
.compare-results, .about-section, .values-section,
.numbers-section, .guides-overview, .contact-section,
.faq-section, .privacy-policy-section, .rodo-section, .cookies-policy-section, .terms-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 600px) {
  .section,
  .features, .steps, .testimonials, .cta-final,
  .categories-overview, .popular-categories,
  .rankings-overview, .benefits, .search-section,
  .compare-results, .about-section, .values-section,
  .numbers-section, .guides-overview, .contact-section,
  .faq-section, .privacy-policy-section, .rodo-section, .cookies-policy-section, .terms-section, .thank-you-section {
    margin-bottom: 38px;
    padding: 22px 8px;
  }
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 4px 24px -8px rgba(25,82,166,0.09);
  background: #fff;
  position: relative;
  padding: 24px 20px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px -8px rgba(25,82,166,0.13);
  transform: translateY(-4px) scale(1.018);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: center;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #e8eaf0;
  border-radius: 22px;
  box-shadow: 0 3px 24px -8px rgba(25,82,166,0.12);
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 0;
  max-width: 540px;
  transition: box-shadow 0.17s, transform 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px -8px rgba(25,82,166,0.18);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #23272f;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #1952a6;
  font-weight: 700;
  margin-left: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CUSTOM COMPONENTS */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: space-between;
}
.features .feature-grid li {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px -8px rgba(25,82,166,0.09);
  padding: 26px 20px;
  min-width: 240px;
  max-width: 310px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.18s;
}
.features .feature-grid li:hover, .features .feature-grid li:focus-within {
  box-shadow: 0 8px 32px -8px rgba(25,82,166,0.16);
  transform: translateY(-2px) scale(1.01);
}
.features .feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  background: #1952a6;
  border-radius: 50%;
  padding: 6px;
}
.features .feature-grid h3 {
  margin-bottom: 6px;
  color: #1952a6;
  font-size: 1.13rem;
}
.features .feature-grid p {
  color: #34395a;
  font-size: 0.99rem;
}

.steps .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
  justify-content: space-between;
}
.steps .step-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px -8px rgba(25,82,166,0.09);
  padding: 22px 16px;
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.18s;
}
.steps .step-list li:hover, .steps .step-list li:focus-within {
  box-shadow: 0 8px 28px -8px rgba(25,82,166,0.13);
}
.steps .step-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.steps .step-list h3 {
  font-size: 1.03rem;
}
.steps .step-list p {
  color: #34395a;
  font-size: 0.97rem;
}

.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.cta-final {
  background: #1952a6;
  border-radius: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.cta-final .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-final h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.cta-final p {
  color: #e8eaf0;
  font-size: 1.18rem;
  margin-bottom: 14px;
}
.cta-final .cta-btn {
  margin-top: 0;
  background: #ffbb00;
  color: #1952a6;
}
.cta-final .cta-btn:hover, .cta-final .cta-btn:focus {
  background: #e39800;
  color: #fff;
}

/* PRODUCT COMPARISON AND SEARCH */
.search-section .search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #e8eaf0;
  border-radius: 18px;
  padding: 22px 14px;
  box-shadow: 0 2px 12px -8px rgba(25,82,166,0.07);
  margin-bottom: 22px;
}
.search-section input[type="text"],
.search-section select {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid #1952a6;
  border-radius: 9px;
  margin-right: 4px;
  outline: none;
  background: #fff;
  color: #23272f;
  min-width: 200px;
  flex: 1 1 170px;
  transition: border 0.16s;
}
.search-section input[type="text"]:focus, .search-section select:focus {
  border-color: #e39800;
}
.search-section .cta-btn {
  min-width: 120px;
  padding: 12px 26px;
  font-size: 1.02rem;
}

.compare-results .filter-sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
  align-items: center;
}
.compare-results .filter-sort-options div {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 7px 16px;
  box-shadow: 0 2px 8px -6px rgba(25,82,166,0.06);
  font-size: 1rem;
  color: #1952a6;
  font-weight: 600;
  gap: 10px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 26px 0 14px 0;
}
.product-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 11px -7px rgba(25,82,166,0.09);
  padding: 22px 18px;
  justify-content: flex-start;
}
.product-list .product-name {
  flex: 0 0 180px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1952a6;
  margin-right: 18px;
}
.product-list .product-price {
  font-family: 'Roboto', sans-serif;
  font-size: 1.10rem;
  font-weight: 700;
  color: #e39800;
  margin-right: 18px;
}
.product-list .cta-btn {
  min-width: 120px;
  padding: 11px 18px;
  font-size: 1rem;
}

/* CATEGORIES */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.category-list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px -8px rgba(25,82,166,0.09);
  padding: 20px 18px;
  min-width: 175px;
  max-width: 260px;
  flex: 1 1 170px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.category-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.category-list span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  color: #1952a6;
  font-weight: 700;
  margin-bottom: 4px;
}
.category-list p {
  color: #34395a;
  font-size: 0.97rem;
}

.popular-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}
.popular-categories-grid div {
  background: #e8eaf0;
  border-radius: 18px;
  padding: 16px 24px;
  color: #1952a6;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  box-shadow: 0 1.5px 5px -4px rgba(25,82,166,0.07);
}

/* RANKINGS / BENEFITS */
.ranking-list, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 18px 0;
}
.ranking-list > div, .benefit-list > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px -8px rgba(25,82,166,0.08);
  padding: 18px 16px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ranking-list span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  color: #1952a6;
  font-weight: 700;
  margin-bottom: 6px;
}
.ranking-list p {
  color: #34395a;
  font-size: .98rem;
}
.benefit-list img {
  width: 32px;
  margin-bottom: 6px;
}
.benefit-list h3 {
  color: #1952a6;
}
.benefit-list p {
  color: #23272f;
  font-size: .98rem;
}
.ranking-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.ranking-filters button {
  padding: 8px 24px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  background: #1952a6;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  margin: 0 4px 0 0;
  transition: background .17s,color .14s,transform .16s;
}
.ranking-filters button:hover, .ranking-filters button:focus {
  background: #e39800;
  color: #23272f;
  transform: scale(1.034);
}
.ranking-descriptions {
  margin-top: 12px;
  padding-left: 18px;
}
.ranking-descriptions li {
  font-size: .98rem;
  padding-bottom: 7px;
}

/* GUIDES (PORADNIKI) */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 14px 0 18px 0;
}
.guides-list li span {
  font-family: 'Montserrat', sans-serif;
  color: #1952a6;
  font-weight: 700;
  font-size: 1.07rem;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.tags-cloud span {
  background: #e8eaf0;
  border-radius: 15px;
  padding: 7px 14px;
  color: #1952a6;
  font-weight: 600;
  font-size: 0.97rem;
  font-family: 'Montserrat',sans-serif;
}
.featured-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.featured-guides div {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 11px -7px rgba(25,82,166,0.08);
  padding: 18px 23px;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  color: #e39800;
  font-size: 1.14rem;
  min-width: 180px;
}

/* ABOUT / STATISTICS */
.values-section .value-list, .numbers-section .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.values-section .value-list li {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 9px -7px rgba(25,82,166,0.08);
  padding: 18px 14px;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.values-section .value-list img {
  width: 28px;
  margin-bottom: 4px;
}
.values-section .value-list h3 {
  color: #1952a6;
  font-size: 1.08rem;
}
.values-section .value-list p {
  color: #34395a;
  font-size: .95rem;
}
.numbers-section .stats-grid div {
  background: #e8eaf0;
  border-radius: 17px;
  padding: 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.numbers-section .stats-grid span {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.23rem;
  font-weight: 800;
  color: #1952a6;
  margin-bottom: 5px;
}
.numbers-section .stats-grid p {
  font-size: 1.01rem;
}
.milestones ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 11px;
}
.milestones li {
  background: #ffbb00;
  color: #1952a6;
  border-radius: 16px;
  padding: 8px 15px;
  font-size: .95rem;
  font-weight: 600;
}

/* CONTACT */
.company-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.company-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  color: #1952a6;
  font-weight: 700;
}
.company-info img {
  width: 24px;
}
.map img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  margin-top: 6px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
}
.faq-list > div {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 10px -7px rgba(25,82,166,0.08);
  padding: 14px 17px;
  min-width: 170px;
  flex: 1 1 120px;
}
.faq-list strong {
  font-family: 'Montserrat',sans-serif;
}
.faq-list p {
  font-size: .96rem;
}

/* POLICY, RODO, TERMS */
.privacy-policy-section .text-section, .rodo-section .text-section, .cookies-policy-section .text-section, .terms-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #e8eaf0;
  border-radius: 16px;
  padding: 22px 18px;
  font-size: 1rem;
  color: #23272f;
  margin-top: 22px;
  box-shadow: 0 2px 9px -8px rgba(25,82,166,0.05);
}
.privacy-policy-section ul, .rodo-section ul, .cookies-policy-section ul, .terms-section ol {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-left: 19px;
  font-size: .97rem;
  color: #23272f;
}
.privacy-policy-section li, .rodo-section li, .cookies-policy-section li, .terms-section li {
  list-style: disc inside;
  font-size: .99rem;
  margin-bottom: 8px;
}
.terms-section ol {
  list-style: decimal inside;
}
.terms-section strong {
  font-family: 'Montserrat',sans-serif;
  color: #1952a6;
}

/* THANK YOU */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.thank-you-section h1 {
  color: #1952a6;
}

/* FOOTER */
footer {
  margin-top: 60px;
  background: #fff;
  border-top: 2.5px solid #e8eaf0;
  padding-top: 32px;
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1952a6;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #e39800;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.98rem;
  color: #34395a;
  margin-top: 4px;
  font-family: 'Roboto',sans-serif;
  text-align: center;
}
.footer-contact img {
  height: 32px;
  margin-bottom: 7px;
}

@media (max-width:900px) {
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width:700px){
  footer {
    padding-top: 20px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 7px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #1952a6;
  box-shadow: 0 -4px 28px -12px rgba(25,82,166,0.18);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 32px;
  transition: transform 0.32s cubic-bezier(.44,.09,.58,1);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-info {
  flex: 1 1 250px;
  color: #23272f;
  font-family: 'Roboto',sans-serif;
  font-size: 0.98rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  padding: 10px 24px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 2px;
  outline: none;
  transition: background 0.13s, color 0.12s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: #1952a6;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #e39800;
  color: #23272f;
}
.cookie-banner .reject {
  background: #e8eaf0;
  color: #1952a6;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffbb00;
  color: #23272f;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #1952a6;
  border: 2px solid #1952a6;
  box-shadow: none;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #e8eaf0;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 8px;
    font-size: .97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2000;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,82,166, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-box {
  background: #fff;
  border-radius: 28px;
  padding: 36px 36px 28px 36px;
  box-shadow: 0 4px 40px -10px rgba(25,82,166,0.23);
  max-width: 440px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #1952a6;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #1952a6;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-switch {
  width: 48px;
  height: 24px;
  border-radius: 18px;
  background: #e8eaf0; 
  position: relative;
  margin-left: auto;
  cursor: pointer;
  border: none;
  transition: background 0.17s;
}
.cookie-modal .cookie-switch.enabled {
  background: #e39800;
}
.cookie-modal .cookie-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-modal .cookie-switch.enabled .slider{
  left: 26px;
}
.cookie-modal .cookie-category label {
  color: #23272f;
  font-size: 1.05rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}
.cookie-modal .cookie-category .disabled {
  color: #aaa;
}
.cookie-modal .essential-desc {
  color: #aaa;
  font-size: .93rem;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 13px;
}
.cookie-modal .save-cookies {
  background: #1952a6;
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal .save-cookies:hover, .cookie-modal .save-cookies:focus {
  background: #e39800;
  color: #23272f;
}

@media (max-width:500px) {
  .cookie-modal .cookie-modal-box {
    padding: 16px 8px 16px 12px;
  }
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .step-list, .category-list, .popular-categories-grid,
  .ranking-list, .benefit-list, .values-section .value-list, .numbers-section .stats-grid,
  .product-list, .testimonials .testimonial-slider {
    flex-wrap: wrap;
    gap: 14px;
  }
  .features .feature-grid li, .steps .step-list li, .category-list li, .ranking-list > div, .benefit-list > li,
  .values-section .value-list li, .numbers-section .stats-grid div, .faq-list > div {
    min-width: 140px;
    max-width: 95vw;
  }
}
@media (max-width: 700px) {
  .features .feature-grid,
  .steps .step-list,
  .category-list,
  .popular-categories-grid,
  .ranking-list,
  .benefit-list,
  .values-section .value-list,
  .numbers-section .stats-grid,
  .product-list,
  .testimonial-slider,
  .faq-list {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
}

/* UTILITIES */
[hidden] { display: none !important; }

::selection {
  background: #e39800;
  color: #fff;
}

/* MICRO ANIMATIONS */
.cta-btn, .cookie-banner button, .ranking-filters button, .footer-nav a, .main-nav > a, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner .cookie-settings-btn {
  transition: background .14s, color .15s, box-shadow .14s, transform .13s;
}

/* REMOVE GRID & COLUMN COMPATIBILITY */
/* 
NO display: grid, grid-*, columns, column-gap, column-count, break-inside, etc. WERE USED.
*/
