/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== VARIABLES ========== */
:root {
  --green: #4db848;
  --green-dark: #3a9436;
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --text-light: #777;
  --bg-light: #f4f4f4;
  --bg-footer: #454545;
  --border: #e0e0e0;
  --white: #fff;
  --container: 1200px;
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  margin-right: 40px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Nav container */
.header-nav-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Top nav row */
.nav-top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--border);
}

.nav-top a {
  font-size: 13px;
  color: var(--text-gray);
  transition: color 0.2s;
}

.nav-top a:hover {
  color: var(--green);
}

.nav-top .search-icon {
  margin-left: auto;
  color: var(--text-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-top .search-icon svg {
  width: 18px;
  height: 18px;
}

/* Bottom nav row */
.nav-bottom {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 0 0;
}

.nav-bottom a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-bottom a:hover {
  color: var(--green);
}

.nav-bottom a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* LKU button */
.btn-lku {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 2px solid var(--green);
  border-radius: 4px;
  color: var(--green) !important;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  align-self: center;
  transition: background 0.2s, color 0.2s;
}

.btn-lku:hover {
  background: var(--green);
  color: #fff !important;
}

.btn-lku svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ========== HERO ========== */
.hero {
  background: #efefef;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 30px;
  max-width: 500px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb span {
  color: var(--text-light);
}

.hero-image {
  position: absolute;
  right: -20px;
  top: -10px;
  bottom: -10px;
  width: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image img {
  height: 120%;
  width: auto;
  max-width: none;
  object-fit: cover;
}

/* ========== SLIDER SECTION ========== */
.slider-section {
  padding: 40px 0;
  background: #fff;
}

.slider-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.slider-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.slider-content {
  max-width: 55%;
}

.slider-content h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.slider-content p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.slider-image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-image img {
  max-height: 220px;
  width: auto;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
  transition: background 0.2s;
}

.app-badge:hover {
  background: #333;
}

.app-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.app-badge-text small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
}

.app-badge-text strong {
  font-size: 14px;
  font-weight: 700;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}

.slider-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-arrow:hover {
  border-color: var(--green);
  color: var(--green);
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
}

/* ========== CALCULATOR ========== */
.calculator-section {
  padding: 50px 0;
  background: #fff;
}

.calc-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.calc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.calc-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.calc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.calc-tab svg {
  width: 18px;
  height: 18px;
}

.calc-tab.active {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

.calc-tab:hover:not(.active) {
  color: var(--text-dark);
}

.calc-body {
  padding: 32px;
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
}

.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.calc-field label {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.calc-field select,
.calc-field input[type="number"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
}

.input-with-unit {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-unit input {
  padding-right: 40px;
}

.input-unit {
  position: absolute;
  right: 12px;
  color: var(--text-gray);
  font-size: 14px;
  pointer-events: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-gray);
  pointer-events: none;
}

.select-wrapper select {
  padding-right: 36px;
  cursor: pointer;
}

.calc-slider-row {
  margin-bottom: 28px;
}

.calc-range {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--green) 0%, var(--green) 40%, #ddd 40%, #ddd 100%);
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.calc-results {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.calc-result-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}

.calc-result-item {
  font-size: 13px;
  color: var(--text-gray);
}

.calc-result-item span {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 2px;
}

.calc-cta {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  text-align: center;
}

.calc-cta:hover {
  background: var(--green-dark);
}

.calc-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== BENEFITS ========== */
.benefits-section {
  padding: 60px 0;
  background: #fff;
}

.benefits-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 60px;
  height: 60px;
}

.benefit-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ========== NEWS ========== */
.news-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.news-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.news-header .section-title {
  margin-bottom: 0;
}

.news-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}

.news-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.news-tab.active {
  color: var(--text-dark);
  border-bottom-color: var(--green);
}

.news-tab:hover:not(.active) {
  color: var(--text-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.news-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.news-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.news-card-image {
  height: 160px;
  background: #e0e0e0;
  overflow: hidden;
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image.placeholder-green {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-image.placeholder-green svg {
  width: 64px;
  height: 64px;
  fill: rgba(255,255,255,0.7);
}

.news-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: #fff;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
}

.news-card-body {
  padding: 16px;
}

.news-date {
  display: flex;
  gap: 4px;
  align-items: baseline;
  margin-bottom: 8px;
}

.news-date-day {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.news-date-rest {
  font-size: 12px;
  color: var(--text-light);
  text-transform: lowercase;
  line-height: 1.2;
}

.news-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.news-more {
  text-align: center;
}

.news-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

.news-more a:hover {
  color: var(--green);
}

/* ========== SERVICES ========== */
.services-section {
  padding: 60px 0;
  background: #fff;
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.service-item {
  text-align: center;
  padding: 16px 8px;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 56px;
  height: 56px;
}

.service-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-item p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 8px;
}

/* ========== ABOUT / TEXT CONTENT ========== */
.about-section {
  padding: 60px 0;
  background: #fff;
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.about-inner h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  margin-top: 36px;
}

.about-inner h2:first-child {
  margin-top: 0;
}

.about-inner p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-inner ul {
  margin-left: 20px;
  margin-bottom: 14px;
}

.about-inner ul li {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  position: relative;
  padding-left: 12px;
}

.about-inner ul li::before {
  content: '•';
  position: absolute;
  left: -8px;
  color: var(--green);
  font-size: 16px;
}

.about-inner strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ========== PARTNERS ========== */
.partners-section {
  padding: 50px 0;
  background: #f9f9f9;
}

.partners-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.partners-inner .section-title {
  margin-bottom: 36px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-height: 48px;
  width: auto;
}

.partner-placeholder {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  border: 2px solid var(--border);
  padding: 8px 20px;
  border-radius: 4px;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 60px 0;
  background: #fff;
}

.faq-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.faq-inner .section-title {
  margin-bottom: 40px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.faq-question:hover .faq-icon {
  border-color: var(--green);
  color: var(--green);
}

.faq-answer {
  display: none;
  padding: 0 0 20px 40px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  border-color: var(--green);
  color: var(--green);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-footer);
  color: #fff;
  padding: 50px 0 30px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 180px 140px 140px 200px 200px 220px;
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.lku-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.lku-logo svg {
  width: 40px;
  height: 40px;
}

.lku-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: border-color 0.2s, color 0.2s;
}

.social-icon:hover {
  border-color: #fff;
  color: #fff;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.regulator-logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.regulator-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.regulator-item svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.regulator-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.footer-bottom {
  max-width: var(--container);
  margin: 30px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ========== FLOATING BUTTONS ========== */
.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.float-btn-apply {
  background: var(--green);
  color: #fff;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border-radius: 6px 0 0 0;
  transition: background 0.2s;
  line-height: 1.3;
}

.float-btn-apply:hover {
  background: var(--green-dark);
}

.float-btn-contact {
  background: #fff;
  color: var(--text-dark);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--border);
  border-right: none;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border-radius: 0 0 0 6px;
  transition: background 0.2s;
}

.float-btn-contact:hover {
  background: #f5f5f5;
}

.float-btn-contact svg {
  width: 16px;
  height: 16px;
}

/* ========== MODAL / FORM ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  width: 90%;
  max-width: 520px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-gray);
  background: none;
  border: none;
  line-height: 1;
}

.modal h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-field {
  margin-bottom: 16px;
}

.form-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-dark);
}

.form-field input:focus {
  outline: none;
  border-color: var(--green);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.form-check input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--green);
}

.btn-submit {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--green-dark);
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  z-index: 150;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-col {
  flex: 1;
}

.cookie-col h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-col h5 .check-green {
  color: var(--green);
  font-size: 14px;
}

.cookie-col h5 .check-box {
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 2px;
  display: inline-block;
}

.cookie-col p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-col p a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-cookie-partial {
  background: #e0e0e0;
  color: var(--text-dark);
}

.btn-cookie-partial:hover {
  background: #ccc;
}

.btn-cookie-all {
  background: var(--green);
  color: #fff;
}

.btn-cookie-all:hover {
  background: var(--green-dark);
}

/* ========== SECTION SEPARATORS ========== */
.section-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
