:root {
  --bg: #0b0d12;
  --panel: #121621;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #22c55e;
  --accent-2: #16a34a;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(34,197,94,0.06) 0%, rgba(34,197,94,0) 50%),
    radial-gradient(1000px circle at 90% 30%, rgba(56,189,248,0.05) 0%, rgba(56,189,248,0) 55%),
    linear-gradient(180deg, #0b0d12 0%, #0a0f1c 100%);
  background-attachment: fixed, fixed, fixed;
  background-size: cover;
}
body {
  margin: 0;
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(34,197,94,0.06) 0%, rgba(34,197,94,0) 50%),
    radial-gradient(1000px circle at 90% 30%, rgba(56,189,248,0.05) 0%, rgba(56,189,248,0) 55%),
    linear-gradient(180deg, #0b0d12 0%, #0a0f1c 100%);
  background-attachment: fixed, fixed, fixed;
  background-size: cover;
}

/* Global scrollbar: thin and green */
html { scrollbar-width: thin; scrollbar-color: var(--accent) #000000; }
/* Chromium/WebKit */
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: #000000; }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }

.bg-dark-boost { background: rgba(18,22,33,.8) !important; backdrop-filter: saturate(140%) blur(8px); border-radius: 12px; margin-top: 14px; }
.container.navbar { padding-left: 16px; padding-right: 16px; }
.brand-logo { height: 28px; margin-right: 8px; vertical-align: middle; }

.site-main { padding-top: 90px; }
.site-footer { background: #0e1220; border-top: 1px solid #1f2937; color: var(--muted); }

a { color: var(--text); }
a:hover { color: var(--accent); text-decoration: none; }

.navbar .nav-link { color: var(--text) !important; opacity: .9; }
.navbar .nav-link:hover { color: var(--accent) !important; opacity: 1; }
.dropdown-menu { background: var(--panel); border: 1px solid #263142; }
.dropdown-item { color: var(--text); }
.dropdown-item:hover { background: #192133; color: var(--accent); }

.hero{background: linear-gradient(180deg, rgba(34,197,94,.08), rgba(34,197,94,0) 40%), url('/img/team2.png') center/cover no-repeat;}
.text-muted-2 { color: var(--muted) !important; }

.btn-accent { background: var(--accent); color: #041006; border: none; }
.btn-accent:hover { background: var(--accent-2); color: #041006; }

.card.feature { background: var(--panel); border: 1px solid #243245; color: var(--text); }
.card.feature .card-body {
  margin: 0;
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(34,197,94,0.06) 0%, rgba(34,197,94,0) 50%),
    radial-gradient(1000px circle at 90% 30%, rgba(56,189,248,0.05) 0%, rgba(56,189,248,0) 55%),
    linear-gradient(180deg, #0b0d12 0%, #0a0f1c 100%);
  background-attachment: fixed, fixed, fixed;
  background-size: cover;
}

/* Form controls: black background, no borders, green focus */
input, textarea, select, .form-control {
  background: #000000 !important;
  border: none !important;
  color: var(--text) !important;
  box-shadow: none;
}
input:focus, textarea:focus, select:focus, .form-control:focus {
  background: #000000 !important;
  color: var(--text) !important;
  border: none !important;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(34,197,94,.35) !important; /* green halo */
}
/* Placeholder legibility on black */
.form-control::placeholder, input::placeholder, textarea::placeholder { color: #7f8a9a; opacity: 1; }
label { color: var(--muted); }
/* Bootstrap custom controls (checkbox/radio) focus + checked */
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(34,197,94,.35) !important;
  border-color: var(--accent) !important;
}
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}
/* Buttons focus halo to green */
.btn:focus, .btn:active:focus {
  box-shadow: 0 0 0 .2rem rgba(34,197,94,.35) !important;
  outline: 0;
}
.form-control::placeholder { color: #6b7280; }
.alert { border-radius: 10px; }

/* Hero carousel and effects */
.hero-carousel { position: relative; }
.hero-carousel .carousel-item { height: 45vh; min-height: 300px; background: #0c1220 center/cover no-repeat; }
.hero-carousel .carousel-item .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,13,18,.4), rgba(11,13,18,.6)); }
.hero-carousel .carousel-caption { bottom: 18%; z-index: 2; text-shadow: 0 1px 0 rgba(0,0,0,.2); }
.hero-carousel h1 { font-weight: 800; letter-spacing: .5px; }
.hero-carousel p.lead { color: var(--muted); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Guarantees grid */
.guarantees { background: var(--panel); border: 1px solid #243245; border-radius: 14px; padding: 24px; }
.guarantees .item { display: flex; align-items: flex-start; margin-bottom: 12px; }
.guarantees .check { color: var(--accent); margin-right: 12px; font-size: 1.25rem; line-height: 1; }
/* Navbar effects */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.35); background: rgba(10,12,18,.85); }
.navbar { transition: padding .2s ease; }
.site-header.scrolled .navbar { padding-top: .25rem; padding-bottom: .25rem; }
/* Full-width layout */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid { max-width: 100% !important; }
.site-header .navbar { width: 100%; }
.site-header #mainNav { width: 100%; }
/* Top-level nav: uppercase + spacing */
.site-header #mainNav > .navbar-nav > .nav-item { margin: 0 .5rem; }
.site-header #mainNav > .navbar-nav > .nav-item > .nav-link { text-transform: uppercase; letter-spacing: .02em; }

/* Nav link underline animation */
.navbar .nav-link { position: relative; transition: color .2s ease, opacity .2s ease; }
/* Green chevron (transparent background) shown on hover/active */
.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: .2rem;
  width: 0; height: 0;
  transform: translateX(-50%) translateY(2px);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-item.active > .nav-link::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown animation */
@media (min-width: 992px){
  .navbar .dropdown-menu { display: block; visibility: hidden; opacity: 0; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
  .navbar .dropdown.show > .dropdown-menu, .navbar .dropdown:hover > .dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
}
/* Parallax section */
.parallax { position: relative; min-height: 420px; background-attachment: fixed; background-size: cover; background-position: center; }
.parallax .overlay { position: absolute; inset: 0; background: rgba(10,12,18,.45); }
.parallax .inner { position: relative; }
@media (max-width: 991.98px){ .parallax { background-attachment: scroll; } }

.word-green{color: var(--accent) !important;}
.parallax.parallax-fixed { background-attachment: fixed; background-size: cover; background-position: center; min-height: 420px; }
.parallax.parallax-fixed .overlay { position: absolute; inset: 0; background: rgba(10,12,18,.45); }
.parallax.parallax-fixed .inner { position: relative; }
@media (max-width: 991.98px){ .parallax.parallax-fixed { background-attachment: scroll; } }
/* FAQ styles */
.faq .btn-link { color: var(--accent) !important; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; }
.faq .btn-link:hover { color: var(--accent-2) !important; text-decoration: none; }
.faq .btn-link .chev { width: 1em; height: 1em; margin-right: .5rem; transition: transform .2s ease; fill: currentColor; }
.faq .btn-link[aria-expanded="true"] .chev { transform: rotate(90deg); }
.faq .card-header { background: transparent; border: none; padding: .75rem 1rem; }
/* Global fixed gradient */
html, body { height: 100%; min-height: 100%; }
body {
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(34,197,94,0.06) 0%, rgba(34,197,94,0) 50%),
    radial-gradient(1000px circle at 90% 30%, rgba(56,189,248,0.05) 0%, rgba(56,189,248,0) 55%),
    linear-gradient(180deg, #0b0d12 0%, #0a0f1c 100%) !important;
  background-attachment: fixed, fixed, fixed !important;
  background-size: cover !important;
}
/* Small accent icon badge */
.icon-badge { display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:50%; background: var(--accent); color:#041006; font-weight:700; flex: 0 0 32px; }
.icon-badge.warn { background:#f59e0b; color:#0b0d12; }
.list-check { list-style:none; padding-left:0; }
.list-check li { position:relative; padding-left:1.4rem; margin-bottom:.35rem; }
.list-check li::before { content:'✓'; position:absolute; left:0; top:0; color: var(--accent); font-weight:700; }
/* Sticky glass header overrides */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; background: transparent; }
.site-main { padding-top: 96px; }
/* Glassy navbar */
.bg-dark-boost {
  background: rgba(16,22,28,0.40) !important;
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}
.site-header .bg-dark-boost { border-radius: 0 !important; }
.site-header.scrolled .bg-dark-boost {
  background: rgba(16,22,28,0.60) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
#cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000; background: rgba(16,22,28,0.90); color: var(--text); border-top: 1px solid #263142; backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); }
#cookie-banner .cookie-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
#cookie-banner .cookie-text { font-size: .95rem; color: var(--muted); padding-right: 12px; }
#cookie-banner .cookie-actions { flex: 0 0 auto; }
@media (max-width: 767.98px){ #cookie-banner .cookie-inner { flex-direction: column; align-items: flex-start; } #cookie-banner .cookie-actions { margin-top: 8px; } }
