/* RESET & BASE - Elegant Classic */
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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F5E9;
  color: #224d34;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 16px;
  min-height: 100vh;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #377850;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #a0641c;
  text-decoration: underline;
}
ul, ol { margin-left: 1.2em; }
li { margin-bottom: 8px; }
strong, b { font-weight: bold; }
hr { border: none; border-top: 1px solid #e3e0d4; margin: 32px 0; }

/* TYPOGRAPHY */
body, p, ul, ol, li, input, textarea {
  font-family: 'Noto Serif', 'Georgia', serif;
  color: #224d34;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: #224d34;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.22; margin-bottom: 18px; }
h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
.subheadline {
  font-family: 'Noto Serif', 'Georgia', serif;
  color: #377850;
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-style: italic;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(34,77,52,0.07);
  background: #fff;
  padding: 32px 28px;
}
.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-left: 6px solid #377850;
  box-shadow: 0 2px 8px rgba(34,77,52,0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card p {
  color: #224d34;
  font-size: 1.1rem;
  font-style: italic;
  flex: 1;
}
.testimonial-card span {
  font-family: 'Noto Serif', 'Georgia', serif;
  color: #377850;
  font-size: 1rem;
  margin-left: 6px;
  min-width: 160px;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(34,77,52,0.16);
  border-color: #a0641c;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  padding: 24px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(34,77,52,0.06);
  gap: 15px;
  transition: box-shadow .2s;
  min-width: 230px;
  flex: 1 1 200px;
}
.feature-item img { width: 38px; height: 38px; }
.feature-item h3 { font-size: 1.12rem; color: #377850; font-weight: 600; }
.feature-item p { font-size: 0.97rem; color: #224d34; }
.feature-item:hover {
  box-shadow: 0 4px 22px rgba(55,120,80,.13);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}

/**** HERO SECTIONS ****/
.hero {
  background: #fff;
  padding: 60px 0 48px 0;
  border-bottom: 1px solid #e3e0d4;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 270px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}

/**** BUTTONS ****/
.button {
  display: inline-block;
  border-radius: 22px;
  background: #377850;
  color: #fff;
  font-family: 'Noto Serif', 'Georgia', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  text-align: center;
  cursor: pointer;
  border: none;
  letter-spacing: .08em;
  box-shadow: 0 3px 14px rgba(55,120,80,0.08);
  transition: background .18s, color .18s, box-shadow .2s, transform .13s;
  margin-top: 8px;
}
.button.primary { background: #377850; color: #fff; }
.button.primary:hover,
.button.primary:focus {
  background: #a0641c;
  color: #fff;
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 6px 26px rgba(160,100,28,0.15);
}
.button.secondary {
  background: #a0641c;
  color: #fff;
}
.button.secondary:hover,
.button.secondary:focus {
  background: #377850;
  color: #fff;
}
.button[disabled],
.button.disabled {
  opacity: .6;
  pointer-events: none;
}

/**** NAVIGATION & HEADER ****/
header {
  background: #fff;
  box-shadow: 0 0 10px rgba(34,77,52,0.06);
  position: sticky;
  top: 0;
  z-index: 102;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  gap: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Noto Serif', 'Georgia', serif;
  font-weight: 500;
  color: #377850;
  font-size: 1rem;
  padding: 6px 12px;
  transition: color .18s, background .18s;
  border-radius: 12px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #a0641c;
  background: #F2F5E9;
}
.nav-container img[alt="RadiantMoney Ernährung"] {
  width: 65px; height: auto;
  margin-right: 28px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  color: #377850;
  cursor: pointer;
  z-index: 1012;
  transition: color .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #a0641c;
}

/**** MOBILE MENU ****/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(242,245,233, 0.99);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.65,.02,.22,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
}
.mobile-menu[aria-expanded="true"],
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #377850;
  padding: 22px 18px 12px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .11s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #a0641c;
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 62px 38px 32px 38px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #224d34;
  font-family: 'Noto Serif', 'Georgia', serif;
  font-size: 1.18rem;
  padding: 14px 2px 10px 2px;
  border-radius: 10px;
  width: 100%;
  transition: background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e8ede1;
  color: #a0641c;
}

/**** FOOTER ****/
footer {
  background: #fff;
  box-shadow: 0 -1px 8px rgba(34,77,52,0.10);
  padding: 38px 0 32px 0;
  border-top: 1px solid #e3e0d4;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 142px;
}
.footer-menu a {
  color: #377850;
  font-family: 'Noto Serif', 'Georgia', serif;
  font-size: 1rem;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #a0641c;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #224d34;
  font-family: 'Noto Serif', 'Georgia', serif;
  font-size: .95rem;
}
.footer-contact img {
  width: 18px; height: 18px; margin-right: 8px; vertical-align: middle;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 5px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #F2F5E9;
  border-radius: 50%;
  transition: background .16s;
  border: 1.5px solid #e2e8dd;
}
.social-links a:hover,
.social-links a:focus {
  background: #a0641c2a;
}
.social-links img {
  width: 22px; height: 22px;
}

/**** TABLES ****/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0 28px 0;
  background: #fff;
  box-shadow: 0 1px 12px rgba(34,77,52,0.07);
  border-radius: 18px;
  overflow: hidden;
  font-size: 1.05rem;
}
.pricing-table th {
  background: #F2F5E9;
  color: #377850;
  font-family: 'Noto Serif', 'Georgia', serif;
  padding: 18px 16px;
  font-size: 1.08rem;
  font-weight: 600;
}
.pricing-table td {
  color: #224d34;
  padding: 16px 16px;
  border-top: 1px solid #e3e0d4;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/**** SPECIAL CONTENT SECTIONS ****/
.values-list, .service-list, .principle-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.values-list li, .service-list li, .principle-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #377850;
  font-size: 1.09rem;
  font-style: italic;
}
.values-list li:before, .service-list li:before, .principle-list li:before {
  content: '\2014';
  position: absolute;
  color: #a0641c;
  left: 0;
  top: 1px;
  font-size: 1.3em;
}
.benefit-summaries h3 { color: #a0641c; font-size: 1.13rem; margin-bottom: 6px; }
.benefit-summaries ul { margin-bottom: 0; }
.faq-list h3 { margin-top: 18px; color: #377850; font-size: 1.12rem; }
.faq-list ul { margin-top: 12px; margin-bottom: 0; }
.faq-list li { margin-bottom: 10px; }
.infographics {
  display: flex; gap: 22px; margin-bottom: 12px;
  align-items: center;
}
.infographics img { width:36px; height:36px; }

/**** UTILITY CLASSES ****/
.text-section {
  margin-bottom: 24px;
}
.section {
  background: #fff0; /* To avoid stacking backgrounds on color blocks */
}
.cta-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(55,120,80,0.04);
  margin-bottom: 44px;
  padding: 48px 20px;
  text-align: center;
}
.cta-section h2 { margin-bottom: 14px; color: #a0641c; }
.cta-section p { color: #224d34; margin-bottom: 18px; }

/**** LEGAL TEXT BLOCKS ****/
.legal-text {
  background: #F2F5E9;
  border-radius: 18px;
  padding: 50px 28px;
  margin: 68px 0;
  box-shadow: 0 1px 12px rgba(34,77,52,0.07);
}
.legal-text h1 {
  font-size:2rem;
}
.legal-text ul { list-style: disc; margin-left: 24px; }

/**** SERVICES, STEPS, ETC ****/
.services .content-wrapper,
.services .faq-list {
  gap: 18px;
}
.service-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 22px;
  padding-left: 0;
}
.service-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  color: #377850;
  font-family: 'Noto Serif', 'Georgia', serif;
}
.service-steps img {
  width: 32px;
  height: 32px;
}

/**** RESPONSIVE DESIGN ****/
@media (max-width: 1024px) {
  .container { padding: 0 12px; }
  .nav-container { gap: 8px; padding-left:0;padding-right:0; }
  .feature-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 24px; }
  .footer-container { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 820px) {
  .content-grid { flex-direction: column; gap: 20px; }
  .footer-container { gap: 18px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; }
  .section, .cta-section, .legal-text { padding: 26px 10px; }
  .hero { padding: 36px 0 22px 0; }
  .hero .container { min-height: 110px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .feature-grid { flex-direction: column; }
  .card-container { flex-direction: column; gap: 18px; }
  .footer-container { flex-direction: column; gap: 14px; align-items: flex-start; }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
  .feature-item, .testimonial-card, .card { padding: 17px 10px; }
  .cta-section { padding: 30px 5px; }
  .legal-text { padding: 24px 6px; }
  .pricing-table th, .pricing-table td { padding: 8px 6px; }
  .hero .container { padding: 0 5px; }
  .feature-grid, .card-container { gap: 10px; }
  .values-list li, .principle-list li, .service-list li { font-size: 0.99rem; }
}

/* SHOW BURGER MENU ON MOBILE */
@media (max-width: 940px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .button.primary {
    display: none;
  }
}

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

/**** COOKIE CONSENT BANNER ****/
.cookie-consent-banner {
  position: fixed;
  z-index: 1200;
  left: 0; right: 0; bottom: 0;
  background: #ffffff;
  border-top: 1.5px solid #e3e0d4;
  box-shadow: 0 -2px 24px rgba(160,100,28,0.08);
  padding: 20px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform .35s cubic-bezier(.65,.02,.22,1), opacity .21s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
.cookie-consent-banner p {
  color: #224d34;
  font-size: 1rem;
  margin-bottom: 2px;
}
.cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btns .button {
  border-radius: 14px;
  font-size: .97rem;
  padding: 8px 24px;
  margin: 0;
}
.cookie-btns .button.accept { background: #377850; color: #fff; }
.cookie-btns .button.accept:hover { background: #a0641c; color: #fff; }
.cookie-btns .button.reject { background: #fff; color: #377850; border:1.5px solid #377850; }
.cookie-btns .button.reject:hover { background: #F2F5E9; color: #a0641c; border-color:#a0641c; }
.cookie-btns .button.settings {
  background: #fff;
  border:1.5px solid #a0641c;
  color: #a0641c;
}
.cookie-btns .button.settings:hover { background: #F2F5E9; color: #377850; border-color:#377850; }

/**** COOKIE MODAL ****/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; bottom: 0; top: 0;
  z-index: 1300;
  background: rgba(34,77,52,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity .25s;
  opacity: 1;
  
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 38px rgba(34,77,52,0.13);
  max-width: 380px;
  padding: 40px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-width: 275px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: #a0641c;
  cursor: pointer;
}
.cookie-modal h2 { font-size: 1.23rem; color: #377850; margin-bottom: 6px; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}
.cookie-categories input[type="checkbox"] {
  accent-color: #377850;
  width: 17px; height: 17px;
}
.cookie-category-essential {
  color: #377850;
  font-weight: bold;
}
.cookie-save-btn {
  padding: 10px 28px;
  background: #377850;
  border-radius: 14px;
  color: #fff;
  border: none;
  font-family: 'Noto Serif', 'Georgia', serif;
  margin-top: 12px;
  font-size: 1rem;
  transition: background .16s;
}
.cookie-save-btn:hover {
  background: #a0641c;
}

/**** SCROLLBAR STYLING ****/
body::-webkit-scrollbar { width: 8px; background: #F2F5E9; }
body::-webkit-scrollbar-thumb { background: #d6e3d5; border-radius: 20px; }

/**** MICRO-INTERACTIONS ****/
.button,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-save-btn,
.footer-menu a,
.main-nav a,
.social-links a,
.cookie-btns .button {
  transition: background .16s, color .11s, box-shadow .15s, transform .12s;
}
.card,
.feature-item,
.testimonial-card,
.cta-section,
.legal-text {
  transition: box-shadow .22s, border-color .25s, transform .15s;
}
.card:hover, .card:focus {
  transform: translateY(-2px) scale(1.008);
  box-shadow: 0 8px 28px rgba(160,100,28,0.11);
}

/**** SPECIAL: DISABLE GRID, ENFORCE FLEXBOX ****/
/* These are not needed as we never use grid/columns -- rule for compliance */

/**** PRINT IMPROVEMENTS ****/
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cookie-modal, footer { display: none !important; }
  body { color: #222 !important; background: #fff !important; font-family: serif !important; }
  .container { max-width: 97vw; }
}
