/* ================================
   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;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #f6f6f6;
  color: #324637;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *:before, *:after { box-sizing: inherit; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #174b7e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #36a87e;
  text-decoration: underline;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
}
address {
  font-style: normal;
  color: #385738;
  margin-bottom: 12px;
}

/* ================================
   COLORS & TYPOGRAPHY (Nature Organic)
   ================================ */
:root {
  --primary: #174b7e; /* deep blue (brand) */
  --primary-dark: #113863;
  --secondary: #36a87e; /* soft green (brand) */
  --secondary-dark: #286954;
  --accent: #f6f6f6;   /* very light background (brand) */
  --background: #F9F8F1; /* warm off-white paper */
  --surface: #fffef9;   /* used for cards */
  --brown: #bda77a;    /* organic earth brown */
  --beige: #e8e3d9;    /* soft sand/beige */
  --leaf: #bdd8a2;     /* light leaf green */
  --text-main: #324637; /* organic dark green for text */
  --text-light: #fff;
  --shadow: 0 2px 10px 0 rgba(80,100,50,0.08);
  --radius: 20px;      /* card & section radius */
  --shadow-strong: 0 6px 36px rgba(80,100,70,0.07);
}
body {
  background: var(--background);
  color: var(--text-main);
  font-family: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #183724;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.13;
}
h1 { font-size: 2.5rem; margin-bottom: 32px; }
h2 { font-size: 1.8rem; margin-bottom: 26px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; margin-bottom: 22px;}
  h2 { font-size: 1.4rem; }
}

p, ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
}
.text-section p {
  font-size: 1.05rem;
}
.privacy-notice {
  background: var(--leaf);
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  padding: 12px 20px;
  font-size: 0.98rem;
  margin-top: 14px;
  box-shadow: var(--shadow);
}

/* ================================
   GENERIC LAYOUTS & CONTAINERS
   ================================ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px) scale(1.012);
}
.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;
  background: var(--beige);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  min-width: 200px;
  color: #294523;
  transition: box-shadow 0.17s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(50,70,30,0.16);
  transform: scale(1.015);
}
.testimonial-card blockquote {
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin: 0 0 6px 0;
  color: #435a47;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #174b7e;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  background: var(--leaf);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 30px 22px;
  min-width: 220px;
  max-width: 305px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.feature img {
  width: 42px; height: 42px;
  margin-bottom: 4px;
}
.feature:hover {
  box-shadow: 0 8px 30px rgba(40,75,30,0.14);
  transform: translateY(-4px) scale(1.025);
}
.feature-item { /* In case used */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq-item {
  background: var(--beige);
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #265631;
}
.faq-item:hover {
  box-shadow: 0 6px 34px rgba(90,130,90,0.11);
}

.confirmation-message {
  background: var(--leaf);
  color: #174b7e;
  padding: 13px 20px;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 600;
}

/* ================================
   HEADER & DESKTOP NAVIGATION
   ================================ */
header {
  background: var(--surface);
  box-shadow: 0 2px 16px 0 rgba(70, 90, 44, 0.10);
  padding: 0;
  width: 100%;
  z-index: 50;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 14px;
}
header img {
  height: 54px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #265631;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.cta.primary {
  background: var(--secondary);
  color: var(--text-light);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 11px 30px;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px 0 rgba(54,168,126,0.15);
  margin-left: 14px;
  transition: background 0.18s, color 0.16s, transform 0.18s;
  cursor: pointer;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.045) translateY(-2px);
  box-shadow: 0 7px 32px rgba(44,140,86,0.15);
}

/* ================================
   MOBILE MENU
   ================================ */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  border: none;
  color: #fff;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s, box-shadow 0.1s;
  margin-left: 12px;
  z-index: 300;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(51,67,54,0.89);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.4);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--secondary);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  width: 48px; height: 48px;
  margin: 23px 24px 18px 0;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  margin-top: 20px;
  padding: 40px 28px 28px 38px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.26rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.6em 0.8em;
  border-radius: 11px;
  transition: background 0.16s, color 0.14s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }
  .cta.primary {
    padding: 10px 18px;
    font-size: 1.0rem;
  }
  header .container {
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .cta.primary {
    margin-left: 5px;
  }
  header img {
    height: 38px;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 5vw;
  }
}

/* ================================
   HERO AREA
   ================================ */
.hero {
  background: linear-gradient(104deg, var(--leaf) 55%, var(--beige) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 64px 0 64px 0;
  box-shadow: 0 10px 36px rgba(145,155,90,0.07);
  margin-bottom: 40px;
}
.hero .container {
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}
.hero h1 {
  color: #23482c;
  font-size: 2.5rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 6px rgba(70,120,70,.08);
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 22px;
  color: #34643e;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 0 36px 0;
    border-radius: 0 0 14px 14px;
    margin-bottom: 18px;
  }
  .hero .container {
    min-height: unset;
  }
  .hero .content-wrapper {
    max-width: unset;
  }
}

/* ================================
   CTAs (used globally)
   ================================ */
.cta {
  background: var(--secondary);
  border: none;
  color: #fff;
  padding: 12px 34px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 36px;
  font-weight: 800;
  box-shadow: 0 3px 20px rgba(36,168,90,0.09);
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.15s, transform 0.18s;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 32px rgba(44,140,86,0.15);
}

/* ================================
   SPECIAL SECTIONS STYLES
   ================================ */
.values ul, .benefits ul, .info ul, .support ul {
  margin-bottom: 0;
}
.values ul li, .benefits ul li, .info ul li, .support ul li {
  padding-left: 0;
}

.confirmation {
  background: var(--leaf);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}
.trial-signup .text-section, .steps, .confirmation {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  margin-bottom: 20px;
}
.confirmation .text-section {
  background: unset;
  box-shadow: unset;
  padding: 0;
}

.announcements ul li, .club-details ul li {
  padding-left: 0;
}

/* ================================
   FOOTER STYLES
   ================================ */
footer {
  background: var(--beige);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -2px 16px rgba(70,90,44,0.10);
  margin-top: 52px;
  padding: 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding-top: 34px;
  padding-bottom: 18px;
}
.footer-logo {
  flex: 0 0 70px;
  align-self: flex-start;
}
.footer-logo img {
  width: 64px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #2c5c4d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  color: #2c3225;
  font-size: 0.98rem;
}
.footer-contact p {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 900px) {
  footer .container {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 10vw 10px 10vw;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 8px;
  }
  .footer-logo img {
    width: 48px;
  }
}

/* ================================
   RESPONSIVE FLEX DIRECTION SWITCHES
   ================================ */
@media (max-width: 1000px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 22px 8px;
    border-radius: 13px;
  }
  .card-container,.feature-grid,.content-grid,.testimonial-card {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ================================
   SPACING UTILITY CLASSES (Nature-Organic)
   ================================ */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.pt-8 { padding-top: 8px; }
.pb-8 { padding-bottom: 8px; }

/* ================================
   FORMS & INPUT (in consent/modal)
   ================================ */
input[type=checkbox], input[type=radio] {
  accent-color: var(--secondary);
  margin-right: 8px;
}
label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2c3225;
}

/* ================================
   BUTTONS (incl. Cookie/Modal)
   ================================ */
.button, button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 9px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.025em;
  margin: 0 8px 0 0;
  box-shadow: 0 2px 14px rgba(44,95,91,0.12);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.17s;
}
.button:hover, .button:focus, button:hover, button:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}
.button.secondary, button.secondary {
  background: var(--secondary);
  color: #fff;
}
.button.beige, button.beige {
  background: var(--beige);
  color: #214a38;
  border: 1.5px solid var(--secondary);
}
.button.beige:hover, button.beige:hover {
  background: var(--secondary);
  color: #fff;
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--beige);
  box-shadow: 0 -3px 18px 0 rgba(90,134,110,0.14);
  z-index: 10000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #183724;
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.4);
  border-radius: 18px 18px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 1 1 62%;
  max-width: 640px;
  margin-right: 14px;
  color: #29542c;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner .button, .cookie-banner button {
  min-width: 120px;
  padding: 9px 18px;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .cookie-banner .cookie-text { max-width: 470px; }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 18px 8vw;
  }
  .cookie-banner .cookie-buttons {
    justify-content: flex-end;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    padding: 11px 3vw;
    font-size: .97rem;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(51,67,54,0.94);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.34s;
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal .modal-content {
  background: var(--surface);
  max-width: 98vw;
  width: 390px;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(74,106,64,0.13);
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 16px;
  background: var(--beige);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 38px; height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal h2 {
  color: #204f25;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  background: var(--leaf);
  border-radius: 9px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.99rem;
  color: #29542c;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  min-width: 18px;
  min-height: 18px;
}
.cookie-category.essential {
  color: #aaa;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .button {
  min-width: 120px;
  font-size: 0.99rem;
}

@media (max-width: 500px) {
  .cookie-modal .modal-content {
    padding: 18px 7vw 16px 7vw;
    width: 97vw;
  }
}

/* ================================
   ANIMATION KEYFRAMES
   ================================ */
@keyframes slideInRight {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}
@keyframes slideOutRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes modalOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.92); }
}

.mobile-menu.open { animation: slideInRight 0.35s cubic-bezier(.68,-0.55,.27,1.4); }
.mobile-menu:not(.open) { animation: slideOutRight 0.32s cubic-bezier(.55,.18,.62,1.32); }
.cookie-modal:not(.hide) { animation: modalIn 0.32s cubic-bezier(.68,-0.55,.27,1.4); }
.cookie-modal.hide { animation: modalOut 0.28s cubic-bezier(.46,.03,.52,.96); }

/* ================================
   MICRO-INTERACTIONS
   ================================ */
.button, button, .cta, .card, .feature, .feature img, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.18s, background 0.16s, color 0.13s;
}

/* ================================
   PRINT STYLE (optional)
   ================================ */
@media print {
  header,.mobile-menu,footer,.cookie-banner,.cookie-modal { display: none !important; }
  body { background: #fff !important; }
  section, .section, .card { box-shadow: none !important; }
}
