/* --- CSS 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #F8F3E6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F3E6;
  color: #1A2233;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
a {
  color: #1A2233;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.65,0.05,0.36,1);
  outline: none;
}
a:focus, a:hover {
  color: #B8965A;
  text-decoration: underline wavy #B8965A;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.15s, color 0.20s, box-shadow 0.18s;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1A2233;
}
h1 {font-size: 2.5rem; margin-bottom: 16px;}
h2 {font-size: 2rem; margin-bottom: 14px;}
h3 {font-size: 1.25rem; margin-bottom: 10px;}
h4 {font-size: 1.1rem;}
.subheadline {
  font-size: 1.2rem;
  font-weight: 500;
  color: #B8965A;
  margin-bottom: 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.feature-grid,
.editing-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature {
  flex: 1 1 220px;
  background: #fffbed;
  border-radius: 20px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 18px 0 rgba(186,150,90,0.09);
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 20px;
  position: relative;
}
.feature:hover, .editing-tip:hover {
  box-shadow: 0 7px 26px 0 rgba(31,39,52,0.17);
  transform: translateY(-5px) scale(1.025) rotate(-1deg);
  z-index: 2;
}
.feature img {
  margin-bottom: 12px;
  width: 50px;
  height: 50px;
}
.editing-tip {
  flex: 1 1 260px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #F8F3E6;
  color: #1A2233;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 11px rgba(186,150,90,0.08);
}

.metrics {
  background: #fffbed;
  color: #B8965A;
  padding: 16px;
  border-radius: 14px;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px rgba(186,150,90,0.06);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbed;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 16px 0 rgba(186,150,90,0.09);
  transition: box-shadow 0.21s, transform 0.20s;
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(31,39,52,0.13);
  transform: scale(1.027) rotate(-2deg);
}
.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: 18px;
  box-shadow: 0 6px 26px 0 rgba(27,29,53,0.08);
  color: #161C2E;
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  position: relative;
  transition: box-shadow 0.20s, transform 0.19s;
}
.testimonial-card strong { color: #B8965A; font-weight: 700; }
.testimonial-card:hover {
  box-shadow: 0 12px 34px 0 rgba(186,150,90,0.15);
  transform: scale(1.024) rotate(1deg);
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 10px 0;
}
.faq-item {
  background: #fffbed;
  border-radius: 13px;
  padding: 18px 18px 10px 18px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px rgba(186,150,90,0.06);
  transition: box-shadow 0.17s;
}
.faq-item h3 { font-size: 1.15rem; margin-bottom: 7px; color: #B8965A; }
.feature-item { 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  gap: 15px; 
}

/* ---- HEADER & NAV ---- */
header {
  background: #fffbed;
  padding: 10px 0 10px 0;
  box-shadow: 0 4px 18px 0 rgba(186,150,90,0.07);
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 15px;
  border-radius: 13px;
  transition: background 0.16s, color 0.17s, transform 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #B8965A;
  color: #fffbed;
  transform: scale(1.07) rotate(-3deg);
}
.main-nav .cta-primary {
  background: #B8965A;
  color: #fffbed;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(186,150,90,0.09);
  transition: background 0.20s, color 0.19s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #1A2233;
  color: #fffbed;
}
.mobile-menu-toggle {
  display: none;
  background: #B8965A;
  color: #fffbed;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(186,150,90,0.18);
}
.mobile-menu-toggle:focus { outline: 2px dashed #B8965A; }

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1400;
  background: #F8F3E6;
  box-shadow: 0 7px 24px rgba(26,34,51,0.13);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0.07,0.22,1);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 25px;
  background: #1A2233;
  color: #fffbed;
  border-radius: 50%;
  width: 39px; height: 39px;
  font-size: 1.6rem;
  z-index: 1410;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 85px 0 0 28px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2233;
  padding: 14px 0;
  border-bottom: 2px dotted #B8965A;
  width: 100%;
  font-weight: 600;
}
.mobile-nav a:last-child {
  color: #fffbed;
  background: #B8965A;
  border-radius: 14px;
  padding: 10px 22px;
  margin-top: 15px;
  border-bottom: none;
  align-self: flex-start;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fffbed;
  background: #B8965A;
  border-radius: 12px;
  text-decoration: none;
}

/* --- CTA BUTTONS --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 16px;
  padding: 13px 31px;
  font-size: 1.14rem;
  font-weight: 700;
  background: #B8965A;
  color: #fffbed;
  letter-spacing: 0.02em;
  margin: 8px 0 10px 0;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(186,150,90,0.12);
  transition: background 0.16s, color 0.17s, box-shadow 0.18s, transform 0.17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1A2233;
  color: #fffbed;
  box-shadow: 0 8px 22px 0 rgba(26,34,51,0.12);
  transform: scale(1.05) rotate(-2deg);
}
.cta-secondary {
  background: #fffbed;
  color: #B8965A;
  border: 2px solid #B8965A;
  padding: 12px 28px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #B8965A;
  color: #fffbed;
  transform: scale(1.04) rotate(2deg);
}

/* --- FORM ELEMENTS --- */
input[type=email], input[type=text], textarea {
  border: 2px solid #B8965A;
  border-radius: 10px;
  padding: 10px 14px;
  width: 100%;
  background: #FFF;
  color: #1A2233;
  margin-bottom: 18px;
  font-size: 1rem;
  transition: border-color 0.17s, box-shadow 0.16s;
}
input:focus, textarea:focus {
  border-color: #1A2233;
  box-shadow: 0 2px 7px rgba(26,34,51,0.13);
}

/* ---- FOOTER ---- */
footer {
  background: #1A2233;
  color: #fffbed;
  padding: 38px 0 24px 0;
  font-size: 1rem;
  margin-top: 70px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
  font-size: 1rem;
  justify-content: flex-start;
}
.footer-menu a {
  color: #B8965A;
  font-weight: 500;
  padding: 7px 14px;
  transition: background 0.14s, color 0.15s;
  border-radius: 8px;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #fffbed;
  color: #1A2233;
}
.brand-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}
.brand-social-links span {
  color: #B8965A;
  font-weight: 600;
  font-size: 1.02rem;
}
.brand-social-links img {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fffbed;
  padding: 3px;
  transition: background 0.16s, box-shadow 0.16s;
}
.brand-social-links a:hover img {
  background: #B8965A;
  box-shadow: 0 2px 10px rgba(186,150,90,0.1);
}
.mini-address-block {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  margin-bottom: 14px;
  flex-wrap: wrap;
  color: #fffbed;
}
.mini-address-block img {
  width: 23px; height: 23px;
  vertical-align: middle;
}

/* --- SECTIONS, SPACING & HIERARCHY --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: 0 3px 23px 0 rgba(186,150,90,0.06);
  background: #fffbed;
  transition: box-shadow 0.17s;
}
section:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
  color: #1A2233;
  background: #fffbed;
  border-radius: 9px;
  padding: 8px 16px;
  margin-bottom: 18px;
}
.contact-info ul, .trust-signals ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info li,
.trust-signals li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.09rem;
  color: #1A2233;
}
.contact-info img {
  width: 26px; height: 26px;
}
.trust-signals img {
  width: 24px; height: 24px;
}

.cta-area {
  margin: 18px 0;
}

/* --- PLAYFUL ANIMATIONS --- */
.cta-primary, .cta-secondary, .main-nav a, .feature, .editing-tip, .card, .testimonial-card {
  transition: box-shadow 0.20s, transform 0.18s, color 0.15s, background 0.15s;
}

@keyframes bounceIn {
  0%   { transform: scale(0.9) translateY(6px); opacity: 0.5; }
  65%  { transform: scale(1.06) translateY(-9px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.feature, .editing-tip {
  animation: bounceIn 0.7s cubic-bezier(0.61,1.23,0.47,1) 1;
  animation-delay: 0.07s;
}

.cta-primary {
  animation: bounceIn 0.8s cubic-bezier(0.61,1.23,0.47,1) 1;
}
.testimonial-card {
  animation: bounceIn 0.8s cubic-bezier(0.61,1.23,0.47,1) 1;
  animation-delay: 0.13s;
}

/* Decorative confetti effect (for playful style) */
@keyframes confetti {
  0% { transform: translateY(-30px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(90px) rotate(77deg); opacity: 0; }
}
.confetti {
  position: absolute;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: #B8965A;
  border-radius: 50%;
  z-index: 50;
  opacity: 0.8;
  animation: confetti 1.9s cubic-bezier(.43,1.36,.49,1) infinite;
  pointer-events: none;
}
.confetti:nth-child(2) {
  left: 50px; background: #F23064; animation-delay: 0.46s;}
.confetti:nth-child(3) {
  left: 100px; background: #4DC1FF; animation-delay: 1.1s;}
.confetti:nth-child(4) {
  left: 156px; background: #F6C400; animation-delay: 0.8s;}
.confetti:nth-child(5) {
  left: 210px; background: #64FFDA; animation-delay: 1.33s;}

/* --- RESPONSIVE DESIGN / FLEX ONLY --- */
@media (max-width: 1030px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .editing-tips-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-menu { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .feature-grid, .editing-tips-grid, .faq-list {
    flex-direction: column;
    gap: 15px;
  }
  .faq-list, .contact-info ul, .trust-signals ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  header .container {
    flex-direction: row;
    gap: 7px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .content-wrapper {gap: 13px;}
  .content-grid, .feature-grid, .editing-tips-grid, .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  section {
    padding: 30px 8px;
    border-radius: 14px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}
@media (max-width: 550px) {
  html { font-size: 90%; }
  .logo img {
    height: 36px;
  }
  .footer-menu { gap: 10px; }
  .brand-social-links img {
    width: 20px; height: 20px;
  }
  .mini-address-block {
    font-size: 0.89rem;
  }
  .mobile-menu {
    font-size: 1rem;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.28rem; }
  .cta-primary, .cta-secondary { padding: 9px 15px; font-size: 1rem; }
}
.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: center;
    gap: 14px;
  }
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right:0;
  background: #fffbed;
  box-shadow: 0 0 13px rgba(26,34,51,0.12);
  padding: 24px 20px 20px 20px;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 12000;
  font-size: 1rem;
  justify-content: space-between;
  animation: bounceIn 0.6s;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  padding: 9px 22px;
  margin-left: 2px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 9px rgba(186,150,90,0.07);
}
.cookie-banner .accept {
  background: #B8965A;
  color: #fffbed;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1A2233;
}
.cookie-banner .reject {
  background: #fffbed;
  color: #B8965A;
  border: 2px solid #B8965A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #B8965A;
  color: #fffbed;
}
.cookie-banner .settings {
  background: #fffbed;
  color: #1A2233;
  border: 2px dashed #B8965A;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #B8965A;
  color: #fffbed;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  background: rgba(26,34,51,0.45);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.31s;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fffbed;
  border-radius: 18px;
  padding: 35px 26px 24px 26px;
  max-width: 400px;
  width: 98vw;
  box-shadow: 0 10px 40px rgba(26,34,51,0.19);
  color: #1A2233;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: bounceIn 0.4s;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: #1A2233;
  color: #fffbed;
  border-radius: 50%;
  width: 35px; height: 35px;
  font-size: 1.3rem;
  z-index: 2;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  padding: 10px 0;
}
.cookie-category label {
  font-weight: 600;
  color: #1A2233;
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: #B8965A;
  opacity: 0.6;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B8965A;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal .accept {
  background: #B8965A;
  color: #fffbed;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #1A2233;
}
.cookie-modal .reject {
  background: #fffbed;
  color: #B8965A;
  border: 2px solid #B8965A;
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus {
  background: #B8965A;
  color: #fffbed;
}
.cookie-modal .save {
  background: #fffbed;
  color: #1A2233;
  border: 2px dashed #B8965A;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #B8965A;
  color: #fffbed;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.98rem;
    padding: 16px 9px 13px 9px;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 10px 17px 10px;
  }
  .cookie-modal-overlay { padding: 7px; }
}

/* --- FINER PLAYFUL TYPOGRAPHY --- */
blockquote, .testimonial-card {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
  font-size: 1.10rem;
  color: #1A2233;
}

/* --- MISC BRAND COLORS FOR ACCESSIBILITY - FUN ELEMENTS --- */
::-moz-selection { background: #FFDBAD; color: #1A2233; }
::selection { background: #FFDBAD; color: #1A2233; }

@media (hover: hover) and (pointer: fine) {
  .feature:hover:before {
    content: '⭐';
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 1.6rem;
    animation: bounceIn 0.43s;
    opacity: .6;
  }
}

/* END CSS */
