/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F9FB;
  color: #2A3039;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* BASE COLORS AND VARIABLES */
:root {
  --pg-blue: #22496B;
  --pg-gold: #DDC968;
  --pg-white: #FFFFFF;
  --pg-bg: #F8F9FB;
  --pg-pastel-blue: #B3D7F6;
  --pg-pastel-pink: #FCDDE2;
  --pg-pastel-yellow: #FFF8DD;
  --pg-pastel-lavender: #E8E8FF;
  --pg-pastel-green: #D5F7EF;
  --pg-text: #2A3039;
  --pg-shadow: 0 2px 12px rgba(34,73,107,0.08);
  --pg-radius: 20px;
  --pg-transition: all 0.25s cubic-bezier(.45,.05,.55,.95);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', 'Georgia', serif;
  color: var(--pg-blue);
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 14px;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
p, li, blockquote {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--pg-text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
ul, ol {
  margin-bottom: 14px;
  padding-left: 0;
  font-size: 1rem;
}
strong {
  color: var(--pg-blue);
}
blockquote {
  font-style: italic;
  font-size: 1.02rem;
  color: #4C5C73;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
}

/* CONTAINERS & LAYOUT */
.container {
  width: 94%;
  max-width: 1120px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 992px) {
  .section, section {
    padding: 32px 6vw;
  }
}
@media (max-width: 600px) {
  .section, section {
    padding: 24px 2vw;
    margin-bottom: 32px;
  }
}

/* FLEXBOX UTILITY LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--pg-white);
  box-shadow: var(--pg-shadow);
  border-radius: var(--pg-radius);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(34,73,107,0.15);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.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: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 26px 20px 26px;
  background: var(--pg-pastel-lavender);
  border-radius: var(--pg-radius);
  box-shadow: 0 2px 10px rgba(34,73,107,0.09);
  margin-bottom: 24px;
  min-width: 270px;
  max-width: 430px;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 16px 14px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE/GRID CARDS */
.feature-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div, .testimonial-slider > div {
  flex: 1 1 260px;
  max-width: 340px;
  background: var(--pg-pastel-blue);
  border-radius: var(--pg-radius);
  box-shadow: var(--pg-shadow);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, background .18s;
}
.feature-grid > div:hover {
  background: var(--pg-pastel-pink);
  box-shadow: 0 6px 24px rgba(34,73,107,0.14);
}
@media (max-width: 900px) {
  .feature-grid,
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* BUTTONS */
.btn-primary, .btn-primary:visited {
  display: inline-block;
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 600;
  padding: 13px 38px;
  background: var(--pg-blue);
  color: var(--pg-white);
  font-size: 1.08rem;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(34,73,107,0.07);
  letter-spacing: 0.009em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .22s, transform .2s, box-shadow .18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #185177;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px rgba(34,73,107,0.13);
}

/* HEADER */
header {
  background: linear-gradient(90deg, var(--pg-pastel-yellow) 0%, var(--pg-pastel-blue) 100%);
  box-shadow: 0 1px 24px rgba(34,73,107,0.08);
  padding: 0 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
}
.logo img {
  height: 48px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: auto;
  margin-left: 38px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--pg-blue);
  font-weight: 600;
  border-radius: 24px;
  padding: 8px 16px;
  transition: background var(--pg-transition), color var(--pg-transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--pg-pastel-blue);
  color: #163753;
}
.mobile-menu-toggle {
  display: none;
  background: var(--pg-white);
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--pg-blue);
  box-shadow: 0 2px 12px rgba(34,73,107,0.08);
  transition: background .18s, color .18s, box-shadow .18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--pg-pastel-blue);
  color: #163753;
  outline: none;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn-primary {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(100deg, var(--pg-pastel-blue) 0%, var(--pg-pastel-yellow) 100%);
  z-index: 2100;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 24px 24px 24px;
  box-sizing: border-box;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: var(--pg-white);
  color: var(--pg-blue);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pg-pastel-blue);
  color: #163753;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.18rem;
  padding: 13px 0;
  border-radius: 18px;
  color: var(--pg-blue);
  font-weight: 600;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover {
  background: var(--pg-pastel-blue);
  color: #163753;
}

/* HERO SECTIONS */
.hero, .hero-tech, .hero-guides, .products-hero, .contact-hero, .support-hero, .thank-you {
  background: linear-gradient(110deg, var(--pg-pastel-blue) 0%, var(--pg-pastel-pink) 100%);
  border-radius: 0 0 42px 0;
  box-shadow: 0 8px 32px rgba(34,73,107,0.08);
  margin-bottom: 64px;
  padding: 64px 0 56px 0;
}
@media (max-width: 900px) {
  .hero, .hero-tech, .hero-guides, .products-hero, .contact-hero, .support-hero, .thank-you {
    padding: 38px 0 28px 0;
    margin-bottom: 36px;
    border-radius: 0 0 26px 0;
  }
}
.hero .content-wrapper,
.hero-tech .content-wrapper,
.hero-guides .content-wrapper,
.products-hero .content-wrapper,
.contact-hero .content-wrapper,
.support-hero .content-wrapper,
.thank-you .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}

/* ABOUT SECTIONS */
.about-section, .about-intro, .usp-section, .benefits, .warranty-info, .contact-info, .products-preview, .product-categories, .featured-products, .guides-list, .faq, .support-services {
  background: var(--pg-pastel-yellow);
  border-radius: var(--pg-radius);
  box-shadow: 0 4px 22px rgba(34,73,107,0.07);
}

/* TECHNOLOGY HIGHLIGHT, CTA */
.technology-highlight, .tech-features {
  background: var(--pg-pastel-green);
  border-radius: var(--pg-radius);
  box-shadow: 0 2px 12px rgba(34,73,107,0.09);
}
.cta, .cta-section {
  background: var(--pg-pastel-pink);
  border-radius: var(--pg-radius);
  box-shadow: 0 2px 14px rgba(247, 157, 197, 0.13);
  text-align: center;
}

/* FOOTER */
footer {
  background: linear-gradient(100deg, var(--pg-pastel-blue) 0%, var(--pg-white) 80%);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -6px 20px rgba(34,73,107,0.08);
  margin-top: 52px;
  padding: 34px 0 10px 0;
  color: var(--pg-text);
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: var(--pg-blue);
  background: var(--pg-pastel-yellow);
  border-radius: 18px;
  padding: 8px 16px;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.footer-menu a:hover {
  background: var(--pg-pastel-blue);
  color: #163753;
}
.company-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 36px;
  justify-content: center;
  font-size: 1rem;
}
.company-info img {
  vertical-align: -10px;
  height: 28px;
  margin-right: 8px;
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 8px;
}
.social-links img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--pg-pastel-pink);
  padding: 6px;
  transition: background .13s;
}
.social-links img:hover {
  background: var(--pg-pastel-blue);
}
footer p {
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 700px) {
  .company-info { flex-direction: column; gap: 8px; }
}

/* TESTIMONIALS */
.testimonials {
  background: var(--pg-pastel-lavender);
  border-radius: var(--pg-radius);
  box-shadow: 0 2px 16px rgba(34,73,107,0.09);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
  justify-content: flex-start;
}
.stars {
  color: #F3BA31;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
}
.testimonial-card p strong {
  color: var(--pg-blue);
}
.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* MISC ELEMENTS & UTILITIES */
ul li:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--pg-gold);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
ul li {
  margin-bottom: 8px;
  padding-left: 0; /* No default bullet */
  font-size: 1rem;
}

ol li {
  list-style: decimal inside;
  margin-left: 12px;
  margin-bottom: 8px;
}

/* ICONS WITHIN LI */
li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
  height: 22px;
}

/* Links inside content */
.content-wrapper a:not(.btn-primary) {
  color: var(--pg-blue);
  text-decoration: underline;
  transition: color .16s;
}
.content-wrapper a:not(.btn-primary):hover {
  color: #185177;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3500;
  background: linear-gradient(90deg, var(--pg-pastel-pink) 50%, var(--pg-pastel-yellow) 100%);
  box-shadow: 0 -2px 12px rgba(34,73,107,0.14);
  border-radius: 18px 18px 0 0;
  padding: 24px 6vw 14px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookie-banner-in .6s cubic-bezier(.46,.03,.52,.96);
}
@keyframes cookie-banner-in {
  0% { opacity: 0; transform: translateY(45px); } 
  100% { opacity: 1; transform: none; }
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--pg-text);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(34,73,107,0.10);
  border: none;
  outline: none;
  transition: background .18s, color .18s, box-shadow .12s;
}
.cookie-banner .accept {
  background: var(--pg-blue);
  color: var(--pg-white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #185177;
}
.cookie-banner .reject {
  background: #FFF;
  color: #CF5D67;
  border: 1px solid #CF5D67;
}
.cookie-banner .reject:hover {
  background: #FFF4F5;
}
.cookie-banner .settings {
  background: var(--pg-pastel-blue);
  color: var(--pg-blue);
  border: 1px solid var(--pg-blue);
}
.cookie-banner .settings:hover {
  background: #DCF1FE;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 14px 8px 8px 8px;
    gap: 10px;
    font-size: 0.93rem;
  }
  .cookie-banner .cookie-actions { gap: 10px; }
  .cookie-banner button { padding: 8px 15px; font-size: 0.95rem; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,73,107,0.13);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-bg .24s;
}
@keyframes fadein-bg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: var(--pg-white);
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(54,54,110,0.19);
  padding: 34px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 320px;
  max-width: 98vw;
  animation: modal-pop .26s;
}
@keyframes modal-pop {
  from { transform: scale(0.88); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-modal .cookie-modal-content h3 {
  color: var(--pg-blue);
  margin-bottom: 10px;
  font-family: 'Roboto Slab', serif;
  font-size: 1.25rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pg-pastel-yellow);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1rem;
}
.cookie-modal .category .toggle {
  margin-left: auto;
  font-size: 1.06rem;
}
.cookie-modal .category .toggle input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--pg-blue);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1rem;
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 28px;
  cursor: pointer;
  background: var(--pg-blue);
  color: var(--pg-white);
  border: none;
  transition: background .18s;
}
.cookie-modal .cookie-modal-actions .close {
  background: var(--pg-pastel-blue);
  color: var(--pg-blue);
  border: 1px solid var(--pg-blue);
}
.cookie-modal .cookie-modal-actions .close:hover {
  background: #DCF1FE;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .container {
    width: 97%;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .company-info { flex-direction: column; gap: 8px; }
}

/* ANIMATIONS AND MICRO-INTERACTIONS */
.btn-primary,
.btn-primary:visited,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-banner button,
footer .footer-menu a {
  transition: background .16s, color .14s, box-shadow .18s, transform .20s;
}

/* ACCESSIBILITY & FOCUS STATES */
a:focus,
.btn-primary:focus, .footer-menu a:focus, .cookie-banner button:focus {
  outline: 2px solid var(--pg-gold);
  outline-offset: 2px;
}

/* MISC */
::-webkit-input-placeholder { color: #67757f; }
:-moz-placeholder { color: #67757f; }
::-moz-placeholder { color: #67757f; }
:-ms-input-placeholder { color: #67757f; }
::placeholder { color: #67757f; }

/* --------------------------------- END OF CSS ---------------------------------- */