/* 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: #f6f2e7;
  color: #2C3E50;
}
input, textarea, button, select {
  font: inherit;
}
ul, ol {
  list-style: none;
}
a { text-decoration: none; color: inherit; }
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
:focus {
  outline: 2px solid #E94D37;
  outline-offset: 2px;
}

/* FONT FACE FOR RETRO STYLE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

:root {
  --primary: #2C3E50;
  --secondary: #E94D37;
  --accent: #F9F6ED;
  --vintage-mustard: #FFD95A;
  --vintage-mint: #A1CFC6;
  --vintage-brown: #A46B45;
  --vintage-blue: #56727b;
  --vintage-wine: #B8405A;
  --vintage-shadow: 0 4px 24px 0 rgba(72, 60, 50, 0.07);
  --main-radius: 18px;
  --pattern-url: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="10" height="10" fill="%23f6f2e7"/><circle cx="2" cy="2" r="1" fill="%23FFD95A"/><circle cx="8" cy="8" r="1" fill="%23A1CFC6"/><circle cx="8" cy="2" r="1" fill="%23B8405A"/><circle cx="2" cy="8" r="1" fill="%23A46B45"/></svg>');
}

html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  min-height: 100vh;
  font-size: 1rem;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.text-section {
  align-items: flex-start;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Permanent Marker', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  text-shadow: 0 2px 0 var(--vintage-blue), 0 4px 0 var(--accent);
  margin-bottom: 8px;
  font-family: 'Permanent Marker', 'Montserrat', cursive, sans-serif;
  color: var(--vintage-wine);
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
h3 {
  font-size: 1.3rem;
  color: var(--vintage-brown);
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
}
strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}
blockquote {
  font-family: 'Permanent Marker', cursive, 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: var(--vintage-brown);
  background: var(--vintage-mint);
  border-left: 4px solid var(--vintage-wine);
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 12px 18px 16px 4px;
  box-shadow: 0 4px 16px 0 rgba(60, 65, 50, 0.06);
}


/* SECTION SPACING PATTERNS */
.section:not(:last-child),
main > section:not(:last-child),
.contact-short,
.thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--main-radius);
  background: rgba(255, 217, 90, 0.07);
  box-shadow: 0 3px 24px 0 rgba(85, 60, 30, 0.05);
}

.hero {
  background: var(--vintage-mint);
  background-image: var(--pattern-url);
  border-radius: 0 0 42px 42px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px 0 rgba(177, 100, 77, 0.09);
  padding: 50px 0 30px;
}
.hero .container {
  display: flex;
  justify-content: center;
}
.hero h1 {
  color: var(--secondary);
  text-shadow: 1px 5px 0 var(--vintage-mustard);
  font-size: 2.3rem;
}
.hero p {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 18px 0 26px 0;
  letter-spacing: 0.01em;
}

/* NAVIGATION */
header {
  background: var(--vintage-mustard);
  border-bottom: 4px solid var(--vintage-brown);
  box-shadow: 0 6px 18px 0 rgba(200,100,50,0.07);
  position: relative;
  z-index: 1000;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0;
}
.main-nav a {
  color: var(--primary);
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  background: none;
  transition: background .22s, color .18s, box-shadow .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 2px 15px 0 rgba(200,60,50,0.11);
}
.main-nav a.cta-primary {
  background: var(--secondary);
  color: #fff !important;
  font-weight: 900;
  text-shadow: 0 2px 0 var(--primary);
  border: 2px solid var(--vintage-wine);
  border-radius: 40px;
  padding: 10px 26px;
  margin-left: auto;
  font-size: 1.15rem;
  box-shadow: 0 3px 16px 0 rgba(240, 77, 55, .13);
  transition: background .19s, color .16s, box-shadow .17s;
}
.main-nav a.cta-primary:hover {
  background: var(--primary);
  color: var(--vintage-mustard) !important;
  border-color: var(--secondary);
}

/* Burger Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--secondary);
  cursor: pointer;
  margin-left: auto;
  padding: 8px 10px;
  z-index: 1050;
  transition: box-shadow .12s;
}
.mobile-menu-toggle:focus {
  background: var(--vintage-wine);
  color: #fff;
  box-shadow: 0 2px 12px 0 var(--vintage-wine);
  border-radius: 50%;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vintage-brown);
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 24px 24px;
  transform: translateX(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform .33s cubic-bezier(.91,.11,.62,1.09), opacity .25s;
  box-shadow: 14px 0 40px 0 rgba(164,58,77,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--vintage-mustard);
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color .14s;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: var(--vintage-mustard);
  background: none;
  font-size: 1.25rem;
  font-family: 'Permanent Marker', 'Montserrat', Arial, sans-serif;
  padding: 12px 8px;
  border-radius: 6px;
  transition: background .16s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-wine);
  color: #fff;
}

/* DESKTOP: Hide mobile elements */
@media(min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* MOBILE NAV RULES */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* MAIN: Responsive Spacing */
main {
  margin-top: 0;
}

/* CARD/FEATURE STYLING */
.feature-grid, .services-list, .ebook-list, .value-list, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.feature-grid > *,
.services-list > *,
.ebook-list > *,
.value-list > *,
.feature-list > * {
  background: var(--accent);
  border-radius: 16px 28px 13px 18px;
  box-shadow: 0 2px 18px 0 rgba(170, 100, 55, 0.07), var(--vintage-shadow);
  padding: 18px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 250px;
  border: 2px solid var(--vintage-mustard);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .17s, border-color .17s, transform .18s;
  position: relative;
}
.feature-grid > *:hover, .services-list > *:hover, .ebook-list > *:hover, .feature-list > *:hover {
  box-shadow: 0 6px 36px 0 rgba(177, 100, 77, 0.19);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.02);
}
.services-list .service-details,
.ebook-list .price {
  font-family: 'Permanent Marker', cursive, 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
}
.services-list .service-details {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
}

/* Buttons */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 34px;
  padding: 13px 32px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 10px;
  transition: background .21s, color .17s, box-shadow .13s;
  text-shadow: 0 2px 0 var(--accent);
}
.cta-primary {
  background: var(--secondary);
  color: #fff;
  border: 2.5px solid var(--vintage-wine);
  box-shadow: 0 6px 18px 0 rgba(177, 100, 77, 0.15);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--vintage-mustard);
  letter-spacing: 0.07em;
}
.cta-secondary {
  background: var(--vintage-mustard);
  color: var(--primary);
  border: 2px solid var(--vintage-wine);
  box-shadow: 0 2px 14px 0 rgba(170, 100, 55, 0.13);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--vintage-wine);
  color: #fff;
  letter-spacing: 0.07em;
}

.price {
  background: var(--vintage-wine);
  color: #fff;
  padding: 3px 14px 4px 14px;
  border-radius: 15px;
  font-size: 1rem;
  font-family: 'Permanent Marker', cursive;
  vertical-align: middle;
  margin-right: 10px;
}

/* Testimonials */
.testimonials {
  background: var(--vintage-mustard);
  background-image: var(--pattern-url);
  border-radius: 28px;
  padding: 36px 0 38px 0;
}
.testimonials h2 {
  margin-bottom: 28px;
  font-size: 2rem;
  color: var(--vintage-wine);
  text-shadow: 0 2px 0 var(--vintage-brown);
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--primary);
  border-radius: 20px 33px 12px 17px;
  box-shadow: 0 6px 28px 0 rgba(150, 90, 27, 0.08);
  gap: 20px;
  padding: 20px 30px;
  margin-bottom: 20px;
  min-width: 260px;
  border: 2px solid var(--vintage-mint);
  position: relative;
  transition: box-shadow .16s, border-color .14s, transform .16s;
}
.testimonial-card:hover {
  border-color: var(--vintage-wine);
  box-shadow: 0 16px 38px 0 rgba(184, 64, 90, 0.13);
  transform: scale(1.015) translateY(-1px);
}
.testimonial-card blockquote {
  color: var(--vintage-brown);
  background: none;
  border: none;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.05rem;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vintage-wine);
}
.testimonial-card div {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  color: var(--primary);
}

/* Thank You Section */
.thank-you-section {
  background: var(--vintage-mint);
  text-align: center;
  box-shadow: 0 6px 32px 0 rgba(71, 164, 166, 0.11);
  margin-bottom: 48px;
  padding: 45px 10px 45px 10px;
  border-radius: 35px;
}
.thank-you-section h1 {
  color: var(--secondary);
}

/* Footer */
footer {
  background: var(--vintage-brown);
  color: #fff;
  padding: 30px 0 30px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
footer img {
  height: 56px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center;
}
footer nav a {
  color: var(--vintage-mustard);
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: none;
  transition: background .11s, color .12s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--vintage-wine);
  color: #fff;
}
footer .brand-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--accent);
  text-align: center;
}

/* Cookie Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 18px 14px 18px;
  box-shadow: 0 -6px 32px 0 rgba(33, 33, 33, 0.14);
  transition: transform .34s cubic-bezier(.98,.09,.58,.91), opacity .21s;
  border-radius: 22px 22px 0 0;
  font-size: 1.05rem;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-consent-banner button,
.cookie-consent-banner .cookie-settings-btn {
  border: none;
  border-radius: 24px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--vintage-mustard);
  color: var(--primary);
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  transition: background .16s, color .07s;
}
.cookie-consent-banner button.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-consent-banner button.accept:hover {
  background: var(--vintage-wine);
}
.cookie-consent-banner button.reject {
  background: var(--vintage-mint);
  color: var(--primary);
}
.cookie-consent-banner button.reject:hover {
  background: var(--primary);
  color: var(--vintage-mint);
}
.cookie-consent-banner .cookie-settings-btn {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--vintage-mustard);
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: var(--vintage-mustard);
  color: var(--secondary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(40,20,10,0.56);
  z-index: 1400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity .24s;
}
.cookie-modal {
  background: var(--vintage-mustard);
  color: var(--primary);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -6px 38px 0 rgba(170, 100, 55, 0.17);
  width: 100%;
  max-width: 420px;
  padding: 32px 20px 22px 20px;
  margin: 0 auto;
  position: relative;
  animation: cookie-modal-slideup .32s cubic-bezier(.99,.23,.44,1.08);
}
@keyframes cookie-modal-slideup {
  from { transform: translateY(40px); opacity: 0;} to {transform: none; opacity: 1;}
}
.cookie-modal h2 {
  color: var(--vintage-wine);
  margin-bottom: 13px;
  font-size: 1.4rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--vintage-wine);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-desc {
  font-size: 0.96rem;
  color: var(--primary);
  margin-bottom: 13px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px; top: 12px;
  background: none;
  border: none;
  color: var(--vintage-wine);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background .17s;
}
.cookie-modal .close-modal:hover {
  background: var(--vintage-wine);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .main-nav {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid, .services-list, .value-list, .ebook-list, .feature-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > *, .services-list > *, .ebook-list > *, .value-list > *, .feature-list > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section,
  .contact-short,
  .thank-you-section {
    margin-bottom: 36px;
    padding: 22px 4vw;
  }
  .hero {
    padding: 40px 0;
    border-radius: 0 0 28px 28px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonials {
    border-radius: 12px;
    padding: 18px 0;
  }
  footer img {
    height: 38px;
  }
  .thank-you-section {
    border-radius: 18px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .hero {
    padding: 24px 0 18px 0;
  }
  .main-nav {
    gap: 10px;
  }
  .card, .testimonial-card {
    padding: 14px 8px;
    min-width: 0;
    flex: 1 1 90vw;
  }
  .section, .contact-short, .thank-you-section {
    padding: 13px 2vw;
  }
  .testimonials {
    padding: 10px 0 10px 0;
  }
}

/* Flex Class Patterns */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 20px; box-shadow: 0 2px 10px 0 rgba(100,50,10,0.08); background: #fff; }
.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; }

/* Flex Direction Responsive */
@media(max-width: 768px){
  .text-image-section, .content-grid, .card-container { flex-direction: column !important; align-items: stretch; }
}

/* Accessibility - hide visually but keep for screenreaders */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Micro-interactions */
.card, .feature-grid > *, .services-list > *, .ebook-list > * {
  transition: box-shadow .17s, border-color .19s, transform .15s;
  cursor: pointer;
}
.card:active, .feature-grid > *:active, .services-list > *:active, .ebook-list > *:active {
  box-shadow: 0 1px 7px 0 rgba(150, 100, 54, 0.13);
  transform: scale(.98);
}

/* Lists */
ul, ol {
  margin-left: 1.3em; margin-bottom: 10px;
}
ul li, ol li {
  margin-bottom: 7px;
  line-height: 1.45;
  padding-left: 0.1em;
  position: relative;
}
ul li::before {
  content: '\25cf';
  color: var(--secondary);
  font-size: 0.9em;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.3em;
}
ol li::before {
  content: '';
}
ul.value-list li img, ul.feature-list li img, ul.feature-grid li img {
  margin-right: 10px;
  width: 28px; height: 28px;
  vertical-align: middle;
  display: inline-block;
}

/* Misc spacing for feature lists */
ul.value-list, ul.feature-list,
ul.feature-grid {
  gap: 20px;
}

/* Icon hover effect */
ul.value-list li img, ul.feature-list li img, ul.feature-grid li img {
  filter: drop-shadow(0 1px 2px var(--vintage-wine));
  transition: filter .15s;
}
ul.value-list li:hover img, ul.feature-list li:hover img, ul.feature-grid li:hover img {
  filter: drop-shadow(0 2px 6px var(--secondary));
}

/* Links underline on hover */
a:hover, a:focus, footer nav a:hover, .footer nav a:focus {
  text-decoration: underline;
}

/* Miscellaneous */
::-webkit-scrollbar {
  width: 10px;
  background: var(--vintage-brown);
}
::-webkit-scrollbar-thumb {
  background: var(--vintage-mustard);
  border-radius: 10px;
}

/* Decorative retro corner for sections */
.section, .testimonials, .hero, .thank-you-section {
  position: relative;
}
.section::after, .testimonials::after, .hero::after, .thank-you-section::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 54px; height: 54px;
  background: var(--vintage-wine);
  opacity: 0.10;
  z-index: 0;
  border-radius: 0 0 27px 0;
  pointer-events: none;
}

/* Hide after on mobile to save space */
@media (max-width: 500px) {
  .section::after, .testimonials::after, .hero::after, .thank-you-section::after {
    display: none;
  }
}

/* Hide cookie modal by default */
.cookie-modal-overlay { display: none; }
.cookie-modal-overlay.open { display: flex; }

/* END CSS */
