/* 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: #F3F5F9;
  color: #2e2936;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}

/* VINTAGE RETRO BRAND COLORS & TYPOGRAPHY */
:root {
  --primary: #1A2947;                /* dark navy blue */
  --secondary: #30A07D;              /* teal-aqua */
  --accent: #F3F5F9;                 /* light background */
  --retro-red: #bf5050;
  --retro-gold: #ffd983;
  --retro-brown: #7e685a;
  --retro-orange: #e6b55e;
  --retro-green: #669966;
  --border: #e1d9c8;
  --shadow: rgba(30, 22, 10, 0.06);
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--accent);
  color: var(--retro-brown);
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Gill Sans', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin: 0 0 16px 0;
  text-shadow: 1px 1px 0 #fff7e3, 0 2px 4px var(--shadow);
}
h1 {
  font-size: 2.3rem;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1rem;
}

strong,
b {
  color: var(--retro-red);
  font-weight: bold;
}

p, li {
  font-size: 1rem;
  color: var(--retro-brown);
}

.text-section p {
  font-size: 1.13rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

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

.section,
.hero-section,
.cta-section, 
.trust-section,
.service-section,
.process-section,
.testimonial-section, 
.pricing-section, 
.privacy-section, 
.gdpr-section, 
.terms-section, 
.thank-you-section, 
.contact-section, 
.cookie-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff7e3;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}

@media (max-width: 540px) {
  .section,
  .hero-section,
  .cta-section, 
  .trust-section,
  .service-section,
  .process-section,
  .testimonial-section, 
  .pricing-section, 
  .privacy-section, 
  .gdpr-section, 
  .terms-section, 
  .thank-you-section, 
  .contact-section, 
  .cookie-section {
    padding: 26px 6px;
    margin-bottom: 38px;
  }
  .container { padding: 0 6px; }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--retro-gold);
  border-bottom: 3px solid var(--retro-brown);
  box-shadow: 0 4px 16px var(--shadow);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 10px 18px;
}
header img {
  height: 44px;
  margin-right: 10px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: none;
  border-radius: 14px;
  color: var(--primary);
  padding: 8px 15px;
  margin: 0 0 0 4px;
  transition: background .17s, color .16s;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: #fff;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  background: var(--retro-red);
  color: #fff7e3;
  border-radius: 22px;
  padding: 11px 26px;
  margin-left: 16px;
  font-weight: bold;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px var(--shadow);
  text-shadow: 1px 1px 2px #512F2F66;
  border: 2px solid transparent;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, border 0.18s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--primary);
  color: var(--retro-gold);
  border: 2px solid var(--retro-gold);
  box-shadow: 0 8px 18px var(--shadow);
}

.mobile-menu-toggle {
  background: var(--retro-brown);
  color: var(--retro-gold);
  font-size: 2.1rem;
  border: none;
  border-radius: 40px;
  padding: 2px 16px 0 16px;
  margin-left: 16px;
  display: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-gold);
  box-shadow: 2px 0 10px var(--shadow);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.68,-0.55,0.27,1.55);
  padding-top: 34px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--retro-red);
  color: #fff7e3;
  font-size: 2.2rem;
  border: none;
  border-radius: 40px;
  padding: 6px 24px 4px 16px;
  align-self: flex-end;
  margin: 6px 18px 0 0;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: var(--retro-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 16px 0 0 30px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  padding: 13px 0 13px 12px;
  color: var(--primary);
  border-radius: 10px;
  width: 90vw;
  margin: 0;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--retro-brown);
}

@media (max-width: 1110px) {
  nav {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline;
  }
}

@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero-section {
  background: repeating-linear-gradient(135deg, var(--retro-gold), var(--retro-gold) 48px, #fde2ab 54px, #fde2ab 108px);
  border: 4px double var(--retro-orange);
  text-align: center;
}
.hero-section h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-shadow: 2px 2px 0 #fff7e3, 0 4px 18px var(--shadow);
}
.hero-section p {
  max-width: 570px;
  margin: 0 auto 26px auto;
  color: var(--retro-brown);
  font-size: 1.18rem;
}
.hero-section .cta-btn {
  margin: auto;
  font-size: 1.15rem;
  margin-top: 8px;
}

/* FEATURE GRID LISTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 36px 0 0 0;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  border: 2.5px dashed var(--retro-brown);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 32px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 210px;
  min-height: 270px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, border-color .18s;
}
.feature-grid li img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.feature-grid li h3 {
  font-size: 1.17rem;
  margin-bottom: 8px;
  color: var(--secondary);
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  border-color: var(--retro-orange);
  box-shadow: 0 8px 28px var(--shadow);
  z-index: 1;
}

/* SERVICE LISTS & PRICING TABLE */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin: 36px 0 0 0;
}
.service-list li {
  flex: 1 1 220px;
  background: #fffaeb;
  border-radius: 16px;
  border: 2px dotted var(--retro-orange);
  box-shadow: 0 3px 18px var(--shadow);
  padding: 30px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, border-color .18s;
  min-height: 220px;
}
.service-list li h3 {
  color: var(--retro-green);
  margin-bottom: 8px;
}
.service-list li strong {
  font-size: 1.08rem;
  color: var(--retro-red);
  background: var(--retro-gold);
  padding: 5px 21px;
  border-radius: 7px;
  letter-spacing: 0.07em;
  box-shadow: 0 2px 8px var(--shadow);
  margin-top: 6px;
}
.service-list li:hover,
.service-list li:focus-within {
  border-color: var(--retro-brown);
  box-shadow: 0 9px 32px var(--shadow);
  z-index: 1;
}

.pricing-table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
  border: 2.5px solid var(--retro-red);
}
.pricing-table th {
  background: var(--retro-gold);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  text-shadow: 0.5px 0.5px 0 var(--retro-orange);
}
.pricing-table tr {
  border-bottom: 1px solid var(--border);
}
.pricing-table td {
  background: #fff7e3;
  color: var(--retro-brown);
  font-size: 1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* STEP LISTS */
.step-list,
.step-by-step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.step-list li,
.step-by-step-list li {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: #fffbe8;
  border-radius: 14px;
  margin-bottom: 6px;
  box-shadow: 0 1px 4px var(--shadow);
  font-size: 1.05rem;
  position: relative;
  border-left: 7px solid var(--retro-brown);
  transition: border-color 0.13s;
}
.step-list li span {
  background: var(--retro-orange);
  border-radius: 50%;
  color: var(--primary);
  width: 34px;
  height: 34px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  font-size: 1.13rem;
}

.step-list li:hover,
.step-by-step-list li:hover {
  border-left-color: var(--secondary);
}

.text-section {
  margin: 10px 0 24px 0;
  padding-left: 0;
}

.text-section ul,
.text-section li {
  list-style: disc outside;
  padding-left: 16px;
}

/* TESTIMONIALS & CARDS */
.testimonial-section {
  background: var(--retro-gold);
  border: 3px dashed var(--retro-brown);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px 12px 22px;
  margin: 0 0 19px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--shadow);
  border: 2px dashed var(--retro-orange);
  min-width: 210px;
  max-width: 560px;
  color: #2d250d;
  font-size: 1.08rem;
  transition: box-shadow 0.15s, border-color 0.14s;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card .stars {
  color: var(--retro-orange);
  letter-spacing: .16em;
  font-size: 1.06rem;
}
.testimonial-card:hover {
  border-color: var(--retro-red);
  box-shadow: 0 5px 22px var(--shadow);
  z-index: 1;
}
.testimonial-section h2, .testimonial-section h1 {
  color: var(--retro-brown);
}

.trust-section, .trust-section ul {
  background: #fffaeb;
  border-radius: 18px;
}
.trust-section ul {
  margin: 16px 0 12px 10px;
  font-size: 1.06rem;
  color: var(--primary);
}
.trust-section li {
  margin: 0 0 7px 0;
  padding-left: 0;
}

/* CTA SECTIONS */
.cta-section {
  background: var(--secondary);
  border-radius: 22px;
  text-align: center;
  color: #fff7e3;
  box-shadow: 0 3px 12px var(--shadow);
  border: 3px solid var(--retro-orange);
}
.cta-section h2{
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.cta-section p{
  font-size: 1.11rem;
  margin-bottom: 16px;
  color: #fff7e3;
}

/* THANK YOU SECTION */
.thank-you-section {
  text-align: center;
  background: var(--retro-green);
  color: #fffbe8;
  border: 2.5px solid var(--primary);
}
.thank-you-section h1 {
  color: #fffbe8;
}
.thank-you-section .cta-btn {
  margin: 22px auto 0 auto;
}

/* CONTACT SECTION */
.contact-section ul {
  margin: 8px 0 0 0;
}
.contact-section li {
  margin: 0 0 9px 0;
  font-size: 1.08rem;
}
.contact-section a {
  color: var(--retro-red);
  text-decoration: underline dotted;
  transition: color 0.14s;
}
.contact-section a:hover { color: var(--primary); }

/* FOOTER */
footer {
  background: var(--retro-brown);
  color: var(--retro-gold);
  width: 100%;
  font-size: 0.97rem;
  border-top: 4px double var(--retro-orange);
  padding: 22px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 7px;
}
.footer-navigation a {
  color: var(--retro-gold);
  padding: 2px 7px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-shadow: 1px 1px 0 #61300250;
  transition: background 0.16s, color 0.16s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: var(--retro-orange);
  color: var(--retro-brown);
}
.company-info {
  font-size: 0.97rem;
}
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}
.social-links img {
  width: 28px;
  height: 28px;
  filter: sepia(0.4) contrast(1.05) hue-rotate(-16deg);
  transition: filter 0.18s, transform 0.12s;
}
.social-links img:hover {
  filter: sepia(0) brightness(1.14) drop-shadow(0 1px 6px var(--retro-orange));
  transform: scale(1.07);
}

/* COOKIE BANNER & MODAL */
#cookie-banner, .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1400;
  background: var(--retro-brown);
  color: #fff7e3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 18px var(--shadow);
  padding: 20px 36px 19px 24px;
  font-size: 1.09rem;
  border-top: 4px solid var(--retro-orange);
  animation: fadein-cb 0.35s;
}
@keyframes fadein-cb { from { opacity: 0; bottom: -28px;} to { opacity: 1; bottom: 0; } }
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.025rem;
  border-radius: 19px;
  border: none;
  padding: 9px 18px;
  background: var(--retro-orange);
  color: var(--retro-brown);
  font-weight: bold;
  box-shadow: 0 1px 7px var(--shadow);
  margin: 0 3px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner button.accept {
  background: var(--secondary);
  color: #fff7e3;
}
.cookie-banner button.reject {
  background: var(--retro-red);
  color: #fff7e3;
}
.cookie-banner button.settings {
  background: var(--retro-orange);
  color: var(--retro-brown);
}
.cookie-banner button:hover, .cookie-banner button:focus, .cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--retro-brown);
  color: var(--retro-gold);
}

/* COOKIE MODAL POPUP  */
#cookie-modal, .cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1600;
  background: rgba(34,27,18,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fadein-modal 0.32s;
}
@keyframes fadein-modal { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal__content {
  background: #fff7e3;
  color: var(--primary);
  border-radius: 20px;
  max-width: 420px;
  min-width: 292px;
  box-shadow: 0 8px 32px var(--shadow);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  position: relative;
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.41rem;
  color: var(--retro-red);
  margin-bottom: 7px;
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.7rem;
  background: transparent;
  border: none;
  color: var(--retro-brown);
  cursor: pointer;
  z-index: 2;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.cookie-category label {
  font-size: 1.09rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--retro-orange);
  width: 1em;
  height: 1em;
}
.cookie-modal .cookie-required {
  color: var(--secondary);
  font-weight: bold;
}
.cookie-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Responsive: MOBILE FIRST! */
@media (max-width: 960px) {
  .feature-grid,
  .service-list {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-list {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid li, .service-list li {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .pricing-table {
    font-size: 0.92rem;
    min-width: 320px;
  }
  .step-list li, .step-by-step-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 8px;
    font-size: .96rem;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.5rem;
    text-align: left;
  }
  h2 {
    font-size: 1.23rem;
  }
  .footer-navigation {
    gap: 9px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 18px 7px;
    font-size: .98rem;
  }
  .cta-btn {
    padding: 8px 13px;
    font-size: 0.98rem;
  }
}

/* Spacing Utility (CRITICAL FLEX GAPS)  */
.section,
.hero-section,
.cta-section, 
.trust-section,
.service-section,
.process-section,
.testimonial-section, 
.pricing-section, 
.privacy-section, 
.gdpr-section, 
.terms-section, 
.thank-you-section, 
.contact-section, 
.cookie-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
button, .cta-btn, a {
  transition: background 0.17s, color 0.15s, box-shadow 0.16s, border 0.16s, transform 0.14s;
  outline: none;
}
button:focus-visible, a:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px dashed var(--retro-orange);
  outline-offset: 2px;
}

/* CUSTOM RETRO DECORATIVE EFFECTS */
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 20px;
  width: 100%;
  background: repeating-linear-gradient(135deg, #f9eac7 0 13px, transparent 16px 23px), repeating-linear-gradient(-135deg, #f9eac7 0 13px, transparent 16px 23px);
  opacity: .32;
  z-index: 1;
  border-radius: 18px 18px 0 0;
  pointer-events: none;
}
.section {
  overflow: hidden;
}

/* OVERRIDE DECOR BORDERS FOR HERO, CTA, TESTIMONIAL, THANK YOU */
.hero-section::before, .cta-section::before, .testimonial-section::before, .thank-you-section::before {
  display: none;
}

/* PRINT OPTIMIZATION (OPTIONAL) */
@media print {
  header, footer, .mobile-menu, #cookie-banner, .cookie-banner, .cookie-modal, #cookie-modal { display: none !important; }
  .container { max-width: none !important; }
}
