/* ========== CSS RESET & NORMALIZE (mobile first) ========== */
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, input, textarea, button, select,
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;
}
html {
  scroll-behavior: smooth;
  background: #fafaf9;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #232325;
  background: #fff;
  line-height: 1.66;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #42444A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #42444A;
  outline-offset: 2px;
}
a:hover, a:active {
  color: #D4B982;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 6px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  color: #18181c;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

.subheadline {
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #42444a;
  margin-bottom: 24px;
  line-height: 1.4;
}
strong, b {
  font-weight: 700;
  color: #232325;
}

/* ========== LAYOUT SECTIONS ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px 0 rgba(24,24,28,0.035);
}
@media (max-width: 768px) {
  section, .section {
    padding: 26px 8px;
    margin-bottom: 34px;
    border-radius: 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fafaf9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 12px 0;
  position: relative;
  box-shadow: 0 8px 24px -16px #23232510;
  z-index: 30;
}
.logo {
  margin-left: 18px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  height: 52px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-right: auto;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #42444a;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #232325;
  color: #fff;
}
.cta-btn {
  display: inline-block;
  font-family: 'Josefin Sans', Arial, sans-serif;
  background: #18181c;
  color: #fff;
  border-radius: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 32px;
  font-size: 1.1rem;
  margin-left: 24px;
  box-shadow: 0 2px 10px 0 rgba(24,24,28,0.06);
  border: 2px solid #18181c;
  transition: background 0.22s, color 0.2s, border 0.22s, transform 0.27s cubic-bezier(.23,.65,.69,.61);
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D4B982;
  color: #18181c;
  border-color: #D4B982;
  transform: translateY(-2px) scale(1.05);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.15rem;
  color: #18181c;
  padding: 6px 16px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D4B98222;
  color: #D4B982;
}

/* ========== MOBILE NAV ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 96vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 44px 0 #23232540;
  transform: translateX(102%);
  transition: transform 0.35s cubic-bezier(.93,.42,.19,.93);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 0 22px;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #232325;
  font-size: 2rem;
  align-self: flex-end;
  padding: 4px 14px 10px 10px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D4B982;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1rem;
  margin-top: 18px;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-nav a {
  color: #18181c;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 7px 0;
  background: none;
  border-radius: 3px;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D4B98233;
  color: #D4B982;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 650px) {
  .logo {
    margin-left: 7px;
    margin-right: 12px;
    height: 42px;
  }
  .cta-btn {
    display: none;  /* hidden in header on mobile: shown in hero or cta */
  }
  header {
    padding: 12px 0 6px 0;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: #fafafa;
  box-shadow: 0 10px 41px 0 rgba(44,44,55,0.076);
  border-radius: 14px;
  text-align: left;
  margin-bottom: 60px;
  padding: 42px 0 32px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
}
.hero h1 {
  color: #18181c;
  font-size: 2.65rem;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.hero .cta-btn {
  font-size: 1.12rem;
  margin-left: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 8px;
    padding: 18px 0 16px 0;
  }
  .hero h1 { font-size: 1.68rem; }
}

/* ========== FEATURES GRID ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex-basis: 270px;
  background: #fafaf9;
  border: 1.5px solid #e7e7e7;
  border-radius: 12px;
  box-shadow: 0 1.5px 12px 0 rgba(24,24,28,0.06);
  padding: 22px 20px 20px 20px;
  transition: box-shadow 0.24s, border 0.23s, transform 0.21s;
  margin-bottom: 20px;
  min-width: 220px;
  flex-grow: 1;
}
.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.09rem;
  margin-bottom: 5px;
}
.feature-item p {
  font-size: 0.98rem;
  color: #42444A;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #D4B982;
  box-shadow: 0 3px 21px 0 #D4B9821a, 0 1.5px 16px 0 #18181c19;
  transform: translateY(-2.5px) scale(1.018);
}
@media (max-width: 1025px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 170px;
    flex-basis: 185px;
    padding: 16px 14px 15px 14px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 0;
    flex-basis: 100%;
    width: 100%;
  }
}

/* ========== ABOUT SNIPPET & SECTION CARDS ========== */
.about-snippet,
.card-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-snippet ul, .content-wrapper ul {
  margin-left: 18px;
  margin-bottom: 0;
  color: #232325;
  font-size: 0.99rem;
  padding-left: 16px;
}
.about-snippet ul li,
.content-wrapper ul li {
  margin-bottom: 6px;
}
.about-snippet a {
  color: #42444A;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.16s;
}
.about-snippet a:hover,
.about-snippet a:focus,
.content-wrapper a:hover,
.content-wrapper a:focus {
  color: #D4B982;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fafaf9;
  border: 1.5px solid #e1dfd6;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 #18181c13;
  padding: 24px 20px;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover, .card:focus-within {
  border-color: #D4B982;
  box-shadow: 0 9px 32px 0 #D4B98217;
}

/* ========== CTA SIGNUP/CTA ========== */
.cta-signup, .cta {
  background: #fafaf9;
  border: 2px solid #e5e4e1;
  border-radius: 18px;
  padding: 38px 18px;
  box-shadow: 0 5px 39px 0 #d4b9820b;
  text-align: left;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.cta-signup .content-wrapper,
.cta .content-wrapper {
  align-items: flex-start;
}
.cta-signup h2, .cta h2 {
  color: #232325;
}
@media (max-width: 650px) {
  .cta-signup, .cta { padding: 22px 7px; border-radius: 8px; }
}


/* ========== TEAM SECTION ========== */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 15px;
  margin-top: 10px;
}
.team-section > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px 0 #2323250d;
  padding: 18px 14px 10px 16px;
  min-width: 215px;
  flex: 1 1 230px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .team-section {
    flex-direction: column;
    gap: 18px;
  }
  .team-section > div {
    min-width: 0;
  }
}

/* ========== SERVICE (KURSE) GRID ========== */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 24px 0;
  justify-content: flex-start;
}
.service-item {
  background: #fafaf9;
  border: 1.5px solid #e8e4dc;
  border-radius: 12px;
  box-shadow: 0 1.5px 12px 0 rgba(24,24,28,0.06);
  padding: 24px 18px 19px 19px;
  flex: 1 1 270px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.18s, transform 0.18s;
}
.service-item h2 {
  font-size: 1.19rem;
  margin-bottom: 3px;
}
.service-item p {
  font-size: 0.99rem;
  color: #42444A;
}
.service-item .price {
  font-size: 1.08rem;
  font-family: 'Josefin Sans', Arial, sans-serif;
  color: #D4B982;
  font-weight: 700;
  align-self: flex-end;
}
.service-item:hover, .service-item:focus-within {
  border-color: #D4B982;
  box-shadow: 0 3px 21px 0 #D4B9821a, 0 2px 18px 0 #18181c15;
  transform: translateY(-2.5px) scale(1.018);
}
@media (max-width: 900px) {
  .service-grid { gap: 15px; }
}
@media (max-width: 700px) {
  .service-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========== PRICING TABLE ========== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 24px 0;
  background: #fff;
  box-shadow: 0 2.5px 18px 0 #18181c08;
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 13px 14px 13px 12px;
  border-bottom: 1px solid #efefee;
  font-size: 1rem;
  text-align: left;
}
.pricing-table th {
  background: #fafaf9;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #232325;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #f2eee3b8;
}
.pricing-table td:last-child, .pricing-table th:last-child {
  text-align: right;
}
@media (max-width: 550px) {
  .pricing-table th, .pricing-table td {
    padding: 10px 7px;
    font-size: 0.98rem;
  }
}

/* ========== TESTIMONIALS & CARDS ========== */
.testimonials {
  background: #fafaf9;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 #23232510;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1.5px 14px 0 #23232510;
  border-left: 5px solid #D4B982;
}
.testimonial-card blockquote {
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.18rem;
  color: #232325;
  font-style: italic;
  font-weight: 500;
  margin-right: 12px;
}
.testimonial-card span {
  color: #42444A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
}
@media (max-width: 790px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 17px 12px;
  }
  .testimonials { padding: 20px 6px; }
}

/* ========== FAQ SECTION ========== */
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.faq-item {
  padding: 15px 23px 15px 17px;
  background: #fafaf9;
  border-radius: 9px;
  border-left: 4px solid #D4B982;
  box-shadow: 0 0.8px 8px 0 #23232513;
  transition: border 0.16s;
}
.faq-item h2 {
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.faq-item p {
  color: #42444A;
  font-size: 0.97rem;
}
.faq-item:hover, .faq-item:focus-within {
  border-left: 4px solid #232325;
}

.contact-prompt a {
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-weight: 600;
  color: #42444A;
  text-decoration: underline;
  transition: color 0.16s;
}
.contact-prompt a:hover, .contact-prompt a:focus {
  color: #D4B982;
}

/* ========== CONFIRMATION/THANK YOU ========== */
.confirmation {
  background: #fafaf9;
  border-radius: 13px;
  box-shadow: 0 2px 24px 0 #2323250a;
  padding: 38px 18px;
  text-align: left;
  margin-bottom: 60px;
}
.confirmation .cta-btn {
  margin-top: 26px;
  margin-left: 0;
}
.contact-info {
  margin-top: 22px;
}
.contact-info p {
  font-size: 0.99rem;
  color: #42444A;
  margin-bottom: 7px;
}

/* ========== CONTACT DETAILS ========== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.contact-details h2 {
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.note {
  margin-top: 12px;
  padding: 10px 14px;
  background: #F2EEE3;
  font-size: 0.99rem;
  color: #232325;
  border-left: 4px solid #D4B982;
  border-radius: 8px;
}

/* ========== FOOTER ========== */
footer {
  background: #232325;
  color: #fff;
  padding: 30px 0 14px 0;
  margin-top: 60px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-block img {
  height: 34px;
  width: auto;
}
.brand-block span {
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-weight: 600;
  color: #F2EEE3;
  font-size: 1.12rem;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #D4B982;
  font-size: 0.99rem;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  color: #d5ceb8;
}
.contact-block a {
  color: #D4B982;
  transition: color 0.12s;
}
.contact-block a:hover, .contact-block a:focus {
  color: #fff;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* ========== MICRO-INTERACTIONS & GLOBAL ========== */
.card, .feature-item, .service-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.2s, border 0.19s, transform 0.18s;
}
*:focus-visible {
  outline: 2px dashed #d4b982;
  outline-offset: 2px;
}
.button, .cta-btn, button {
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232325;
  color: #fff;
  padding: 18px 14px 19px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  box-shadow: 0 -4px 26px 0 #18181c22;
  font-size: 1rem;
  gap: 17px;
}
.cookie-banner p {
  color: #fff;
  font-size: 0.99rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}
.cookie-btn {
  font-family: 'Josefin Sans', Arial, sans-serif;
  border-radius: 24px;
  font-size: 1.01rem;
  padding: 7px 22px;
  font-weight: 700;
  border: 2px solid #D4B982;
  background: #18181c;
  color: #D4B982;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, border 0.13s, transform 0.18s;
}
.cookie-btn.accept {
  background: #D4B982;
  color: #232325;
  border-color: #D4B982;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #D4B982;
}
.cookie-btn.reject {
  border-color: #e3dfca;
  background: #232325;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #42444A;
  color: #D4B982;
  border-color: #D4B982;
}
.cookie-btn.settings {
  background: #232325;
  color: #D4B982;
  border-color: #D4B982;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #232325;
}
@media (max-width: 500px) {
  .cookie-banner { padding: 11px 4px 13px 4px; }
  .cookie-banner .cookie-actions { gap: 6px; }
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #23232599;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #232325;
  border-radius: 16px;
  box-shadow: 0 7px 36px 0 #18181c33, 0 1.5px 12px 0 #23232510;
  padding: 30px 24px 22px 24px;
  min-width: 300px;
  max-width: 97vw;
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookiePopIn 0.35s cubic-bezier(.93,.42,.19,.93);
}
@keyframes cookiePopIn {
  from { transform: translateY(48px) scale(0.94); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.34rem;
  margin-bottom: 11px;
}
.cookie-modal ul {
  margin-left: 14px;
  font-size: 0.99rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  line-height: 1.35;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #18181c;
}
.cookie-category input[type="checkbox"] {
  accent-color: #D4B982;
  width: 17px;
  height: 17px;
}
.cookie-category input[disabled], .cookie-category label.disabled {
  opacity: 0.52;
  cursor: not-allowed;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 16px; right: 17px;
  font-size: 1.35rem;
  background: none;
  border: none;
  color: #232325;
  padding: 3px 8px;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: #D4B982;
}
@media (max-width: 540px) {
  .cookie-modal { padding: 12px 5vw; width: 94vw; min-width: unset; }
}

/* Animations for banners/modals */
.cookie-banner {
  animation: fadeInBanner 0.6s cubic-bezier(.73,.41,.21,.92);
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== UTILITY FLEX CLASSES ========== */
.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;
}

/* FLEX COLUMN ON MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid { flex-direction: column; gap: 17px; }
}

/* ========== RESPONSIVE TEXT SIZES ========== */
@media (max-width: 850px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.52rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.97rem; }
  body { font-size: 15px; }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #f2eee3;
}
::-webkit-scrollbar-thumb {
  background: #d0c6aa;
  border-radius: 7px;
}
/* Firefox */
html {
  scrollbar-color: #d0c6aa #f2eee3;
  scrollbar-width: thin;
}

/* ========== PRINT ========== */
@media print {
  header, footer, .cookie-banner, .cta, .cta-signup, .confirmation, .mobile-menu { display: none !important; }
  section, main { box-shadow: none !important; border: none !important; background: #fff !important; padding: 0; margin: 0; }
}
