/* --- CSS RESET & BASE --- */
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,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,main,section,article,aside,footer,header,nav,figure,figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; height: 100%; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
article,aside,details,figcaption,figure,footer,header,main,nav,section { display: block; }
body { line-height: 1.5; min-height: 100vh; background: #F3F6F9; color: #2A2E37; font-family: 'Open Sans', Arial, Helvetica, sans-serif; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; cursor: pointer; font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2A2E37;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
p, li { font-family: 'Open Sans', Arial, Helvetica, sans-serif; font-size: 1rem; color: #393f4a; }
strong, b { font-weight: 700; }

/* --- CONTAINER & WRAPPER --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(42,46,55,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  position: relative;
}
.logo-link img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  padding: 8px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #2A2E37;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.cta-button):after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #D4AF37 80%, #7AC7C0 100%);
  border-radius: 3px;
  transition: width 0.2s;
  margin-top: 2px;
}
.nav-links a:not(.cta-button):hover:after {
  width: 100%;
}
.nav-links .cta-button {
  margin-left: 20px;
}

/* --- CTA BUTTON --- */
.cta-button, .footer-nav a.cta-button {
  background: #2A2E37;
  color: #F3F6F9;
  border: none;
  padding: 12px 36px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 16px 0 rgba(42,46,55,0.11);
  transition: background 0.25s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #D4AF37;
  color: #2A2E37;
  box-shadow: 0 6px 24px 0 rgba(212,175,55,0.12);
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #2A2E37;
  padding: 8px 16px;
  border-radius: 6px;
  margin-left: 12px;
  z-index: 150;
  border: 2px solid #F3F6F9;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e7e2cc;
  color: #D4AF37;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(42,46,55, 0.98);
  color: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.74,0.06,0.4,1);
  display: flex;
  flex-direction: column;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #D4AF37;
  font-size: 2.5rem;
  padding: 15px 26px 0 0;
  border: none;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #F3F6F9;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,175,55,0.11);
  width: 100%;
  max-width: 300px;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #D4AF37;
}

/* --- SECTION LAYOUT PATTERNS --- */
.section, .hero, .about, .testimonial, .features, .cta, .services, .review-summary, .contact-info, .rodo, .cookies-policy, .privacy-policy, .terms, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(42,46,55,0.08);
}
.card-container, .feature-grid, .faq-accordion, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .faq-item {
  margin-bottom: 20px;
  position: relative;
  background: #F3F6F9;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(42,46,55,0.12);
  padding: 28px 24px;
  transition: box-shadow 0.22s, border-color 0.2s;
}
.card:hover, .feature-item:hover, .faq-item:hover {
  box-shadow: 0 6px 18px 0 rgba(212,175,55,0.11);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(42,46,55,0.11);
  margin-bottom: 20px;
}
.testimonial-text p {
  font-size: 1.08rem;
  color: #23242a;
  line-height: 1.65;
}
.testimonial-author {
  color: #7AC7C0;
  display: block;
  margin-top: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border: 1px solid #e7e2cc;
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 6px;
}

.faq-accordion {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid #D4AF37;
  box-shadow: 0 2px 14px 0 rgba(42,46,55,0.08);
  margin-bottom: 0;
}
.faq-item h3 {
  font-size: 1.09rem;
  color: #2A2E37;
  margin-bottom: 6px;
}
.faq-item p {
  color: #393f4a;
  font-size: 1rem;
}

/* --- REVIEW SUMMARY --- */
.review-summary {
  margin-top: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2A2E37;
  font-size: 1.12rem;
  background: #F3F6F9;
  border-left: 5px solid #D4AF37;
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 0;
}
.review-summary strong {
  color: #D4AF37;
}
.review-summary a { color: #7AC7C0; }
.review-summary a:hover { color: #2A2E37; text-decoration: underline; }

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup {
  margin-top: 24px;
  background: #f8fafb;
  border-left: 4px solid #D4AF37;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1rem;
}

/* --- HIGHLIGHTED BLOG POST --- */
.highlighted-post {
  margin-top: 32px;
  background: #fffde7;
  border-left: 5px solid #D4AF37;
  border-radius: 16px;
  padding: 22px 30px;
  box-shadow: 0 2px 14px 0 rgba(212,175,55,0.06);
}
.highlighted-post h3 {
  color: #D4AF37;
}
.highlighted-post a {
  color: #2A2E37;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.2s;
}
.highlighted-post a:hover {
  color: #7AC7C0;
}

/* --- ABOUT, TERMS, RODO, POLICY SECTIONS --- */
.text-section {
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  padding-left: 23px;
  margin-bottom: 12px;
  color: #393f4a;
}
.text-section ul li, .text-section ol li {
  list-style: disc inside;
  margin-bottom: 8px;
  font-size: 1rem;
}
.text-section h3 {
  margin-top: 18px;
  font-size: 1.05rem;
}

/* --- FOOTER --- */
footer {
  background: #2A2E37;
  color: #F3F6F9;
  padding: 0 0 30px 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 0 20px 0;
  gap: 28px;
  border-bottom: 1px solid #393f4a;
  flex-wrap: wrap;
}
.footer-top img {
  height: 38px;
  filter: brightness(1.12);
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fffbe9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: .88;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover {
  color: #D4AF37;
  opacity: 1;
}
.footer-bottom {
  padding-top: 14px;
  font-size: 0.95rem;
  color: #9ba2ae;
}

/* --- CONTACT INFO SECTION --- */
.contact-info .text-section p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.contact-info img {
  width: 22px; height: 22px; margin-right: 3px;
}
.contact-info a {
  color: #7AC7C0;
  transition: color 0.18s;
}
.contact-info a:hover {
  color: #D4AF37;
}

/* --- COOKIES/CATEGORIES --- */
.cookies-policy ul li, .privacy-policy ul li, .rodo ul li, .terms ul li {
  margin-bottom: 8px;
}
.cookies-policy a, .privacy-policy a, .rodo a, .terms a {
  color: #7AC7C0;
  text-decoration: underline;
}
.cookies-policy a:hover, .privacy-policy a:hover, .rodo a:hover, .terms a:hover {
  color: #D4AF37;
}

/* --- THANK YOU PAGE --- */
.thank-you .text-section {
  margin-top: 16px;
}

/* --- SPACING & ALIGNMENT (FORCED) --- */
.section, .hero, .about, .testimonial, .features, .cta, .services,
.review-summary, .contact-info, .rodo, .cookies-policy, .privacy-policy, .terms, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .faq-accordion, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .faq-item {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- LUXURY GOLD ACCENTS --- */
.feature-item h3, .faq-item h3, .highlighted-post h3, .footer-nav a:hover, .review-summary strong {
  color: #D4AF37;
}
.cta-button, .footer-nav .cta-button { background: #2A2E37; color: #F3F6F9; }
.cta-button:hover, .cta-button:focus { background: #D4AF37; color: #2A2E37; }

/* --- MICRO-INTERACTIONS, HOVERS, TRANSITIONS --- */
.card, .feature-item, .faq-item, .testimonial-card, .highlighted-post, .newsletter-signup {
  transition: box-shadow 0.21s, border-color 0.2s, background 0.16s;
}
.card:hover, .feature-item:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(212,175,55,0.13);
  border-color: #D4AF37;
  background: #fffdf7;
}
nav a, .footer-nav a, .card a, .highlighted-post a, .feature-item a {
  transition: color 0.20s;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .main-nav { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 992px) {
  .feature-grid, .card-container, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-nav { gap: 13px; }
}
@media (max-width: 768px) {
  .main-nav { flex-direction: row; }
  .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .feature-grid, .card-container, .faq-accordion, .content-grid { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { flex-direction: column; gap: 10px; }
  section, .section, .hero, .about, .testimonial, .features, .cta, .services, .review-summary, .contact-info, .rodo, .cookies-policy, .privacy-policy, .terms, .thank-you {
    padding: 28px 6px;
    margin-bottom: 34px;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
}
@media (max-width: 420px) {
  .footer-bottom { font-size: 0.89rem; }
  .footer-nav { gap: 6px; flex-direction: column; }
  .newsletter-signup, .highlighted-post { padding: 10px 12px; font-size: 0.95rem; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffde7;
  color: #23242a;
  box-shadow: 0 -2px 18px 0 rgba(42,46,55,0.12);
  padding: 22px 18px 22px 24px;
  z-index: 2800;
  display: flex;
  align-items: center;
  gap: 26px;
  border-top: 2px solid #D4AF37;
  animation: cookieBannerSlideIn 0.9s cubic-bezier(0.65,0,0.35,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  background: #2A2E37;
  color: #fffbe9;
  border-radius: 26px;
  padding: 9px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #D4AF37;
  color: #2A2E37;
}
.cookie-btn.settings {
  background: #fff;
  color: #2A2E37;
  border: 1.5px solid #D4AF37;
}
.cookie-btn.settings:hover {
  background: #D4AF37;
  color: #2A2E37;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 15px 6px 15px 10px; gap: 10px; }
  .cookie-banner-buttons { gap: 7px; flex-wrap: wrap; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,46,55,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 390px;
  width: 92vw;
  padding: 32px 22px 22px 22px;
  box-shadow: 0 6px 28px 0 rgba(42,46,55,0.16);
  position: relative;
  animation: cookieModalPopIn 0.5s cubic-bezier(0.57,0,0.45,1);
}
@keyframes cookieModalPopIn {
  0%   { transform: scale(0.8) translateY(40px); opacity: 0; }
  100% { transform: scale(1)   translateY(0);    opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 2rem;
  color: #2A2E37;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-content h3 {
  color: #D4AF37;
  font-size: 1.09rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid #f8e7ad;
}
.cookie-category:last-child { border: none; }
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #D4AF37;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 110px;
}

/* --- LUXURY & REFINED SURFACES --- */
.section, .hero, .about, .testimonial, .features, .cta, .services, .review-summary, .contact-info, .rodo, .cookies-policy, .privacy-policy, .terms, .thank-you, .faq-item, .feature-item, .testimonial-card, .card, .highlighted-post, .newsletter-signup, .cookie-modal-content {
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(42,46,55,0.07);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; background: #F3F6F9; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 8px; }

/* --- SELECTION GOLD --- */
::selection { background: #D4AF37; color: #2A2E37; }

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