/* CSS RESET & BASE STYLES (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,
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.6;
  background-color: #f7faf8;
  color: #23311c;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background-image: url('../assets/textures/soft-organic-bg.svg'), linear-gradient(135deg, #f9f8f4 0%, #ecf7f1 100%);
  background-repeat: repeat, no-repeat;
  background-size: 460px, cover;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #457755;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #237a5c;
}
img {
  max-width: 100%;
  display: block;
}

:root {
  --color-earth: #6f8760;
  --color-forest: #38523d;
  --color-leaf: #59a568;
  --color-accent: #b98d5b;
  --color-background: #f7faf8;
  --color-white: #fff;
  --color-bark: #433920;
  --color-dark: #23311c;
  --color-shadow: rgba(90,110,80,0.11);
  --font-display: 'Orbitron', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* ========== TYPOGRAPHY ========= */
h1, .hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-forest);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-earth);
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.19;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-bark);
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.12rem;
  color: var(--color-earth);
  margin-bottom: 28px;
  margin-top: -10px;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 18px;
  color: var(--color-dark);
  font-size: 1rem;
}
address,
ul,
ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-dark);
}
ul, ol {
  padding-left: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: bold;
  color: var(--color-forest);
}

/* ========== GLOBAL SPACING ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.quickstart-cta, .cta-section, .thank-you-section {
  margin-bottom: 0;
  padding: 48px 20px;
  background: var(--color-leaf);
  border-radius: 32px 32px 0 0/56px 56px 0 0;
  box-shadow: 0 2px 20px 3px var(--color-shadow);
  color: var(--color-background);
}
.quickstart-cta h2, .cta-section h2, .thank-you-section h1 {
  color: #fff;
}

/* ========== FLEXBOX LAYOUTS ========== */
.features-grid, .team-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card-container, .content-grid {
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 1px 12px 0 var(--color-shadow);
  padding: 32px 22px;
  min-width: 256px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover, .feature:hover, .team-member:hover {
  box-shadow: 0 4px 28px 5px rgba(90,110,80,0.16);
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TEAM GRID */
.team-grid {
  width: 100%;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 22px;
  padding: 28px 16px;
  box-shadow: 0 3px 22px 0 var(--color-shadow);
  width: 220px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  text-align: center;
  gap: 8px;
}
.team-member img.avatar {
  border-radius: 50%;
  width: 62px;
  height: 62px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  margin-bottom: 10px;
}

/* FEATURE GRID */
.feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 12px 0 var(--color-shadow);
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 265px;
  min-width: 185px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 330px;
  background: linear-gradient(125deg, #e5f6e7 0%, #f7faf8 44%, #ffffff 100%);
  border-radius: 0 0 44px 44px/0 0 96px 96px;
  box-shadow: 0 2px 20px 3px var(--color-shadow);
  margin-bottom: 50px;
  padding: 60px 0 42px 0;
  display: flex;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  margin-top: 18px;
  gap: 4px;
}

/* ========== BUTTONS & CTA ========== */
.cta-btn, .pricing-table a, .feature-list a, .button, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  font-family: var(--font-display);
  font-size: 1.13rem;
  background: linear-gradient(110deg, #6f8760 50%, #97b875 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 15px 34px;
  margin: 18px 0 0 0;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(38,64,24,0.11);
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: background 0.18s, transform 0.16s, box-shadow 0.2s;
  text-align: center;
  outline: none;
  text-decoration: none;
  gap: 7px;
}
.cta-btn:hover, .cta-btn:focus, .button:hover, .cookie-btn:hover {
  background: linear-gradient(110deg, #59a568 60%, #b98d5b 100%);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 5px 18px 3px rgba(38,64,24,0.18);
  color: #fff;
}
.cta-btn:active, .button:active {
  transform: scale(0.98);
}

/* FOOTER & ADDRESS */
footer {
  padding: 36px 0 20px 0;
  background: linear-gradient(95deg, #e5f6e7 0%, #f7faf8 60%, #ffffff 100%);
  border-radius: 36px 36px 0 0/46px 46px 0 0;
  margin-top: 56px;
  color: var(--color-dark);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 0;
}
.footer-nav a {
  font-size: 1.02rem;
  color: var(--color-earth);
  padding: 2px 9px;
  border-radius: 18px;
  transition: color 0.19s, background 0.19s;
}
.footer-nav a:hover {
  background: #e6f2e6;
  color: var(--color-leaf);
}
address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-style: normal;
}
address div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: var(--color-earth);
}
address img {
  width: 19px;
  height: 19px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  overflow: hidden;
}
thead tr {
  background: #f1eee6;
}
th, td {
  text-align: left;
  padding: 14px 12px;
  font-size: 1rem;
}
th {
  color: var(--color-forest);
  font-family: var(--font-display);
  font-weight: 600;
  background: #f2f8f2;
  border-bottom: 1px solid #e4efea;
}
td {
  color: var(--color-dark);
  border-bottom: 1px solid #f1f5f1;
}
tbody tr:last-child td {
  border-bottom: none;
}
/* Pricing table highlights */
.pricing-highlights ul {
  list-style-type: disc;
  color: var(--color-earth);
  margin-left: 16px;
}
.pricing-highlights {
  margin-top: 18px;
}

/* MARKET PAGE TABLES */
.market-table {
  background: #ffffffee;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  margin-bottom: 24px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.market-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.market-filter label {
  font-weight: 500;
  color: var(--color-forest);
}
.market-filter select {
  font-size: 1rem;
  padding: 7px 18px 7px 7px;
  border-radius: 12px;
  border: 1px solid #aac5a9;
  background: #f7faf8;
  color: #38523d;
  appearance: none;
  outline: none;
  transition: border 0.14s;
}
.market-filter select:focus {
  border: 1.5px solid #59a568;
}
.market-highlights ul {
  margin-bottom: 0;
  margin-left: 18px;
}

/* LIVE TICKER (MARKETS PAGE) */
.live-ticker {
  padding: 9px 17px;
  background: #dbedda;
  border-radius: 18px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--color-forest);
  font-weight: 500;
  box-shadow: 0 1px 4px 0 rgba(125,153,110,0.05);
}
.live-ticker img {
  width: 20px;
  margin-right: 6px;
}
.graph-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}
.graph-preview img {
  width: 88px;
  height: 44px;
}

/* ========== TEXT SECTIONS ========== */
.text-section {
  margin-bottom: 34px;
}
.well {
  padding: 17px 20px;
  background: #f8fdf6;
  border-radius: 19px;
  border-left: 4px solid var(--color-leaf);
  font-size: 1rem;
  color: #38523d;
  margin-top: 14px;
  margin-bottom: 20px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #f2f7ed;
  border-radius: 34px;
  padding: 48px 20px 36px 20px;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  font-style: italic;
  color: #23311c;
  flex-wrap: wrap;
  flex-direction: row;
}
.testimonial-meta {
  font-size: 1rem;
  color: #38523d;
  font-style: normal;
  font-weight: 600;
  margin-left: auto;
  letter-spacing: 0.01em;
}
.testimonials-rating {
  font-size: 1.10rem;
  color: #59a568;
  font-weight: bold;
  margin: 12px 0 0 0;
  text-align: right;
}

/* FAQ CARDS */
.faq-card {
  background: #f8fdf6;
  border: 1.4px solid #e3ecd7;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 22px 18px;
  box-shadow: 0 1px 7px 0 var(--color-shadow);
  color: #375c2f;
}
.faq-card h3 {
  margin-top: 0;
  color: #38523d;
  font-size: 1.05rem;
}

/* ========== OFFERS, HIGHLIGHTS, BADGE ========== */
.pricing-highlights li, .market-highlights li {
  font-weight: 500;
  color: var(--color-forest);
  font-size: 1.02rem;
}
.terms-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6fbf6;
  padding: 10px 17px;
  border-radius: 12px;
  font-size: .97rem;
  margin: 13px 0 17px 0;
  color: #375c2f;
}
.terms-info img {
  width: 17px;
}

/* ========== NAVIGATION & HEADER ========== */
header {
  background: linear-gradient(82deg, #e5f6e7 0%, #f7faf8 47%, #fff 100%);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 16px 0 8px 0;
  flex-wrap: wrap;
}
.main-nav > a {
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: var(--color-forest);
  padding: 4px 11px;
  border-radius: 16px;
  transition: background 0.16s, color 0.16s;
}
.main-nav > a.cta-btn {
  font-family: var(--font-display);
  margin-left: 18px;
}
.main-nav > a:not(.cta-btn):hover, .main-nav > a:not(.cta-btn):focus {
  background: var(--color-leaf);
  color: #fff;
}
.main-nav img {
  height: 38px;
  margin-right: 10px;
}

/* ========== MOBILE MENU/HAMBURGER NAV ========== */
.mobile-menu-toggle {
  display: inline-flex;
  position: absolute;
  right: 22px;
  top: 24px;
  background: var(--color-leaf);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 9px 13px;
  z-index: 1100;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  transition: background 0.15s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-earth);
  box-shadow: 0 5px 18px 3px rgba(38,64,24,0.18);
}
.mobile-menu {
  position: fixed;
  z-index: 1400;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #2a3d26e6;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.68,.01,.22,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 24px 10px 0;
  background: var(--color-leaf);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1500;
  box-shadow: 0 2px 14px 1px rgba(72,92,45,0.14);
  transition: background 0.16s;
}
.mobile-menu-close:hover {
  background: var(--color-earth);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding: 24px 36px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.28rem;
  padding: 10px 4px;
  border-radius: 11px;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-leaf);
  color: #fff;
}

@media (max-width: 950px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .feature, .team-member {
    min-width: 170px;
    width: 46vw;
    max-width: 300px;
  }
}
@media (max-width: 760px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .features-grid, .team-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .team-member {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .section, .quickstart-cta, .cta-section, .thank-you-section,.testimonials {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-section {
    border-radius: 0 0 24px 24px/0 0 32px 32px;
    padding-top: 32px;
    padding-bottom: 28px;
    margin-bottom: 24px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 11px;
    align-items: center;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}
@media (min-width: 761px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  z-index: 2010;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #ededebf2;
  border-top: 3px solid #e5eccc;
  box-shadow: 0 -3px 24px 0 rgba(72,92,45,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 14px 16px 14px;
  gap: 18px;
  font-size: 1.06rem;
  color: #2e4430;
  animation: slideInCookieBanner 0.65s cubic-bezier(.68,.01,.22,1);
}
@keyframes slideInCookieBanner {from{transform: translateY(100%);}to{transform: translateY(0);}}

.cookie-banner strong {
  color: #38523d;
}
.cookie-banner .cookie-btn {
  min-width: 115px;
  font-size: 1rem;
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 10px 18px;
  background: linear-gradient(110deg, #6f8760 30%, #59a568 100%);
  margin-right: 10px;
}
.cookie-banner .cookie-btn.reject {
  background: #cb7e56;
  color: #f7faf8;
}
.cookie-banner .cookie-btn.settings {
  background: linear-gradient(110deg,#b98d5b 30%, #59a568 100%);
  color: #fff;
}
.cookie-banner .cookie-btn:hover {
  filter: brightness(1.09);
  transform: scale(1.035);
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2030;
  background: rgba(55, 82, 61, 0.17);
  animation: fadeIn 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeIn {from{opacity:0}to{opacity:1}}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 44px 0 rgba(72,92,45,.18);
  padding: 28px 22px 22px 22px;
  max-width: 95vw;
  width: 405px;
  color: #38523d;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  animation: slideInCookieModal 0.23s cubic-bezier(.68,.01,.22,1);
}
@keyframes slideInCookieModal {from{transform: translateY(80px) scale(.94);}to{transform: translateY(0) scale(1);}}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.29rem;
  color: var(--color-forest);
  margin: 0 0 14px 0;
}
.cookie-category {
  margin-bottom: 14px;
  padding: 7px 7px 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: #38523d;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #59a568;
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 7px;
}
.cookie-category.essential {
  opacity: 0.75;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 7px;
}
.cookie-modal .cookie-btn {
  padding: 9px 21px;
  font-size: 1.05rem;
}
.cookie-modal .cookie-btn.reject {
  background: #cb7e56;
}

/* ========== MISC & UI ========== */
.iso-signal {
  font-size: 1rem;
  color: #38523d;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
}
.iso-signal img {
  width: 26px;
  height: 26px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
  color: #38523d;
}
.location-map, .graph-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.location-map img {
  width: 74px;
  height: 74px;
}

/**** Utility Classes ****/
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-18 { margin-bottom: 18px !important; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 7px;
  background-color: #f4f5f0;
  border-radius: 18px;
}
::-webkit-scrollbar-thumb {
  background: #d1e0d9;
  border-radius: 18px;
}

/* ========== TRANSITIONS & EFFECTS ========== */
*, *:before, *:after {
  transition-property: background-color, color, box-shadow, border-color, transform;
  transition-duration: 0.17s;
}

/**** PRINT & SELECTABLE ****/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container, body { background: #fff; color: #000; }
}

/**** SMOOTH SLIDE/FADE TOGGLE CLASSES (for js) ****/
.slide-in {
  animation: slideIn 0.35s cubic-bezier(.68,.01,.22,1);
}
@keyframes slideIn {from{transform:translateX(-100%);}to{transform:translateX(0);}}
.slide-out {
  animation: slideOut 0.33s cubic-bezier(.68,.01,.22,1);
}
@keyframes slideOut {from{transform:translateX(0);}to{transform:translateX(-100%);}}
.fade-in {
  animation: fadeIn 0.16s;
}
.fade-out {
  animation: fadeOut .19s;
}
@keyframes fadeOut {from{opacity:1}to{opacity:0}}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
  outline: 2px solid #59a568;
  outline-offset: 3px;
}

/* ==== END OF NATURE ORGANIC INSPIRED FLEXBOX CSS ==== */
