/* 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, main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  color: #E8DFCB;
  background: #161C18;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: linear-gradient(135deg, #151D17 0%, #213F2B 100%);
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
img, svg { display: inline-block; max-width: 100%; height: auto; }

/* BRAND COLORS (with neon accents) --------------------------------------- */
:root {
  --color-primary: #24553C;
  --color-secondary: #E8DFCB;
  --color-accent: #8FB537;
  --color-bg: #161C18;
  --color-footer-bg: #19281D;
  --color-dark: #121A15;
  --color-neon: #A9FF45;
  --color-error: #E94D33;
  --color-shadow: rgba(36,85,60,0.18);
}

/* FONTS ------------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}
h1 { font-size: 2.4rem; margin-bottom: 16px; line-height: 1.15; }
h2 { font-size: 1.8rem; margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: 1.35rem; margin-bottom: 10px; font-weight: 700; color: var(--color-neon); }
h4 { font-size: 1.12rem; margin-bottom: 6px; color: var(--color-accent); }
p, li, blockquote, cite { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; line-height: 1.6; color: var(--color-secondary); }
p { margin-bottom: 16px; }
blockquote {
  font-size: 1.1rem;
  padding-left: 18px;
  border-left: 3px solid var(--color-neon);
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
cite {
  font-style: normal;
  font-size: .97rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .01em;
}
strong { color: var(--color-neon); font-weight: 700; }

/* LAYOUT CONTAINERS ------------------------------------------------------ */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, section { padding: 32px 10px; margin-bottom: 40px; }
}

/* HERO SECTION ----------------------------------------------------------- */
.hero {
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(120deg, var(--color-dark) 45%, var(--color-primary) 100%);
  box-shadow: 0 4px 32px 0 var(--color-shadow);
}
.hero h1 { color: var(--color-neon); text-shadow: 0 0 12px #45FFB7, 0 4px 14px rgba(39,255,73,.08); }
.hero .subheadline, .hero p { font-size: 1.12rem; font-weight: 600; color: var(--color-secondary); margin-bottom: 28px; }

/* MAIN NAV & HEADER ------------------------------------------------------ */
header {
  background: var(--color-bg);
  border-bottom: 1px solid rgba(196,255,173,0.04);
  box-shadow: 0 2px 8px 0 rgba(20,45,40,0.08);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 64px;
  width: 100%;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 18px;
  color: var(--color-secondary);
  border-radius: 22px;
  transition: background .19s, box-shadow .19s, color .19s;
  outline: none;
  box-shadow: none;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-neon);
  background: rgba(100,255,125,0.05);
}
.main-nav a.btn-primary {
  background: var(--color-neon);
  color: #101C11;
  font-weight: 900;
  letter-spacing: .03em;
  margin-left: 16px;
  box-shadow: 0 2px 14px 0 rgba(200,255,55,0.18);
  transition: background .14s, color .16s, box-shadow .21s;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 0 16px 1px var(--color-neon);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 14px;
}


/* MOBILE MENU ------------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 13px;
  z-index: 30;
  height: 44px;
  width: 44px;
  border: none;
  background: var(--color-dark);
  color: var(--color-neon);
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(100,255,150,.13);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-neon);
  color: var(--color-primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0E2318;
  box-shadow: 0 8px 48px 0 rgba(100,255,160,.24);
  transform: translateX(-100vw);
  transition: transform .45s cubic-bezier(.9, .14, .32, .98);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 26px 18px 0;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.7rem;
  cursor: pointer;
  transition: color .18s;
  z-index: 2100;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  padding: 0 32px;
}
.mobile-nav a {
  padding: 14px 0 14px 12px;
  font-size: 1.25rem;
  color: #F7FFE0;
  width: 100%;
  border-radius: 14px;
  font-weight: 800;
  transition: background .21s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-primary);
  color: var(--color-neon);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav a { padding: 8px 10px; }
}
@media (max-width: 900px) {
  .main-nav a:not(:first-child) { font-size: .98rem; }
}
@media (max-width: 840px) {
  .main-nav a:not(.btn-primary), .main-nav img {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/* ---------------------------------------------- FLEX LAYOUTS */
.features ul, .usps-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.features ul li, .usps-section ul li {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18,32,23,0.97);
  border: 1.5px solid #233523;
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 1.06rem;
  color: var(--color-secondary);
  box-shadow: 0 1px 7px 0 rgba(36,85,60,0.11);
  margin-bottom: 20px;
  position: relative;
}
.features ul li img, .usps-section ul li img {
  height: 32px; width: 32px; margin-right: 4px;
}

.service-cards,
.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards > div,
.services-list ul > li {
  flex: 1 1 220px;
  min-width: 220px;
  background: #172618;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 20px 18px;
  color: #F6FFE6;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(166,255,79,0.07);
  border: 1px solid #27582B;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .16s, border-color .16s;
}
.service-cards > div:hover,
.services-list ul > li:hover {
  box-shadow: 0 6px 32px 0 rgba(169,255,69,.13);
  border-color: var(--color-neon);
}
@media (max-width: 800px) {
  .service-cards,
  .services-list ul {
    flex-direction: column;
    gap: 16px;
  }
  .service-cards > div, .services-list ul > li {
    min-width: 0;
    width: 100%;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #172816;
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(36,85,60,0.10);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #234935;
  transition: box-shadow .21s, border-color .21s;
}
.card:hover {
  box-shadow: 0 5px 28px 0 rgba(165,255,71,0.15);
  border-color: var(--color-neon);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .contact-info ul li {
    padding-bottom: 8px;
    font-size: 1rem;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #174021;
  border-radius: 13px;
  box-shadow: 0 4px 32px 0 rgba(36,85,60,0.10);
  margin-bottom: 20px;
  padding: 20px 30px;
  border-left: 6px solid var(--color-neon);
  font-size: 1.07rem;
  position: relative;
  transition: box-shadow .16s, border-color .16s;
}
.testimonial-card blockquote {
  color: #213C29;
  border-left: none;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 7px;
  text-shadow: 0 1px 0 #f8ffe0;
}
.testimonial-card cite {
  color: var(--color-primary);
  font-size: 0.96rem;
  font-weight: 700;
  margin-left: 12px;
}
.testimonial-card:hover {
  border-left: 6px solid #007e42;
  box-shadow: 0 2px 32px 0 rgba(50,155,89,.11);
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 14px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.99rem;
  }
  .testimonial-card blockquote { font-size: 1rem; }
}

/* CTA, CONTACT, HIGHLIGHT & BRANDING ------------------------------------- */
.contact-info ul,
.contact-details ul,
.highlights-section ul,
.faq-section ul,
.personalization-options ul,
.about-section ul,
.team-section ul,
.legal ul {
  margin: 14px 0 14px 0;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: var(--color-secondary);
}
.call-to-action, .contact-short, .contact-open, .thank-you {
  background: #132319;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(138,255,80,.10);
  margin: 36px 0 0 0;
  padding: 32px 18px;
  text-align: center;
}
@media (max-width: 660px) {
  .call-to-action, .contact-short, .contact-open, .thank-you {
    padding: 20px 4px;
    border-radius: 14px;
  }
}
.brand-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: var(--color-secondary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.brand-footer img {
  height: 34px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: .98rem;
  padding: 5px 8px;
  border-radius: 11px;
  transition: background .17s, color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-neon);
  background: rgba(110,255,130,0.07);
}
footer {
  background: var(--color-footer-bg);
  padding: 36px 0 12px 0;
  margin-top: 0;
  text-align: left;
  border-top: 1.5px solid #18321D;
}

/* BUTTONS --------------------------------------------------------------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px 12px 28px;
  min-width: 145px;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 26px;
  background: var(--color-neon);
  color: #101C11;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 28px 0 rgba(170,255,89,0.15);
  margin-top: 16px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .17s;
  outline: none;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 8px 32px 0 var(--color-neon);
}
.btn-secondary {
  background: transparent;
  color: var(--color-neon);
  font-weight: 900;
  border: 1.8px solid var(--color-neon);
  margin-top: 16px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-neon);
  color: #101C11;
  box-shadow: 0 8px 32px 0 var(--color-neon);
}

/* FORM-LIKE INPUTS ------------------------------------------------------- */
input, select, textarea {
  background: #181F18;
  color: var(--color-secondary);
  border: 1.3px solid var(--color-primary);
  border-radius: 7px;
  padding: 12px 15px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  outline: none;
  margin-bottom: 20px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-neon);
  box-shadow: 0 0 0 2px var(--color-neon);
}

/* LEGAL & MODAL SECTIONS ------------------------------------------------- */
.legal {
  background: #182318;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(41,85,41,.08);
  margin-bottom: 44px;
  padding: 32px 18px;
}
@media (max-width: 600px) {
  .legal { padding: 20px 4px; }
}

/* COOKIE CONSENT BANNER -------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120%);
  width: calc(100vw - 34px);
  max-width: 470px;
  background: #181F18;
  color: var(--color-neon);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 30px 0 rgba(150,255,130,0.14);
  border: 1.5px solid var(--color-accent);
  box-sizing: border-box;
  padding: 22px 18px 16px 20px;
  z-index: 40000;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: transform .55s cubic-bezier(.7,.32,.46,.97), opacity .33s;
}
.cookie-consent-banner.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent-banner .cookie-btn {
  min-width: 120px;
  margin-right: 8px;
  margin-top: 12px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 6px;
}
.cookie-btn {
  background: var(--color-neon);
  color: #161C18;
  font-weight: 800;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 8px 19px;
  font-size: 1rem;
  letter-spacing: .01em;
  margin-right: 10px;
  box-shadow: 0 2px 12px 0 rgba(170,255,70,0.13);
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 0 20px 1px var(--color-neon);
}
.cookie-btn.secondary {
  background: none;
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
  font-weight: 800;
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: var(--color-neon);
  color: #212c18;
}

/* Cookie Modal ----------------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(10,16,12,0.5);
  z-index: 41000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #19261B;
  border-radius: 16px;
  box-shadow: 0 12px 46px 0 rgba(180,255,120,0.18);
  padding: 32px 17px 20px 22px;
  min-width: 300px;
  max-width: 95vw;
  border: 1.7px solid var(--color-neon);
  color: var(--color-secondary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookieModalIn .7s cubic-bezier(.98,.07,.48,1.04);
}
@keyframes cookieModalIn {
  from { transform: scale(.89) translateY(80px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-neon);
  font-size: 1.17rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-accent);
}
.cookie-toggle {
  appearance: none;
  display: inline-block;
  min-width: 36px;
  height: 21px;
  border-radius: 12px;
  background: #102313;
  border: 1.5px solid var(--color-accent);
  position: relative;
  outline: none;
  margin-right: 2px;
  margin-left: 10px;
  vertical-align: middle;
  transition: background .16s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-neon);
  border-color: var(--color-neon);
}
.cookie-toggle:before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2.5px;
  box-shadow: 0 2px 7px 0 rgba(88,255,115,.19);
  transition: left .19s cubic-bezier(.8,.1,.2,.9);
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
  margin-right: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 19px;
  background: none;
  color: var(--color-neon);
  font-size: 1.9rem;
  border: none;
  cursor: pointer;
  outline: none;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus { color: #fff; }

@media (max-width: 600px) {
  .cookie-consent-banner, .cookie-modal { padding: 12px 6px 8px 10px; border-radius: 11px 11px 0 0; }
  .cookie-modal { min-width:240px; padding: 16px 6px 8px 11px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS --------------------------------------- */
.card, .service-cards > div, .testimonial-card, .features ul li, .btn-primary, .btn-secondary, .footer-nav a, .main-nav a {
  transition: box-shadow .17s, border-color .16s, background .15s, color .14s, transform .14s;
}
.card:hover, .service-cards > div:hover, .testimonial-card:hover, .features ul li:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 8px 36px 0 rgba(170,255,89,.15);
  border-color: var(--color-neon);
}
.btn-primary:active, .btn-secondary:active { transform: scale(.96); }
.footer-nav a:active, .main-nav a:active { transform: scale(0.98); }

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.26rem; }
  .service-cards > div, .features ul li, .testimonial-card { font-size: .99rem; }
}

/* SECTIONS WITH IMAGES/TEXT ---------------------------------------------- */
.personalization-steps ol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 10px 0;
  align-items: flex-start;
}
.personalization-steps ol li {
  flex: 1 1 180px;
  background: #1b291a;
  border-radius: 13px;
  padding: 20px 14px;
  color: var(--color-secondary);
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 1.04rem;
  box-shadow: 0 1.5px 8px 0 rgba(36,85,60,0.12);
  margin-bottom: 20px;
}
.personalization-steps ol li img {
  height: 30px; width: 30px; margin-right: 6px;
}
@media (max-width: 700px) {
  .personalization-steps ol { flex-direction: column; gap: 10px; }
  .personalization-steps ol li { min-width: 0; }
}

/* FEATURED ITEMS LAYOUT -------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 13px;
  padding: 18px 14px;
  background: #1b2b18;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(36,85,60,0.09);
}

/* TYPOGRAPHY SPACING & SCALE --------------------------------------------- */
.section h2, section h2, .content-wrapper > h2 { margin-bottom: 18px; line-height: 1.23; }
.section ul, .section ol, .content-wrapper ul, .content-wrapper ol { margin-bottom: 16px; }
.section li, .content-wrapper li { margin-bottom: 8px; }
.section p, .content-wrapper p { margin-bottom: 14px; }

/* Z-INDEX FOR NAV/BANNER ------------------------------------------------- */
header { z-index: 20; position: relative; }
footer { z-index: 8; position: relative; }

/* GENERAL MEDIA QUERIES FOR GAPS/PADDINGS ------------------------------- */
@media (max-width: 500px) {
  .container { padding: 0 5px; }
}

/* MISCELLANEOUS/UTILITY -------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #213618;
}
::-webkit-scrollbar-thumb {
  background: #2E753A;
  border-radius: 7px;
}
::-webkit-input-placeholder { color: #A4D39C; }
::-moz-placeholder { color: #A4D39C; }
:-ms-input-placeholder { color: #A4D39C; }
::placeholder { color: #A4D39C; }

/* Dark mode support (with fallback) -------------------------------------- */
@media (prefers-color-scheme: dark) {
  body { background: linear-gradient(120deg, #0e1d14 10%, #182E1D 100%); }
}

/* END OF STYLE.CSS ------------------------------------------------------ */
