/* ============================================================
   GreenDrive — styles.css
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&f[]=general-sans@600,400&display=swap');

/* ---------- VARIABLES ---------- */
:root {
  --lime:        #7FE050;
  --lime-dark:   #5fba34;
  --forest:      #0A1F0F;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --font-head:   'Satoshi', sans-serif;
  --font-body:   'General Sans', sans-serif;
  --transition:  0.28s ease;
}

[data-theme="light"] {
  --bg:          #f4faf0;
  --bg-card:     #ffffff;
  --bg-section:  #eaf5e4;
  --text-primary:#0A1F0F;
  --text-muted:  #3a5c3f;
  --border:      #c6e0bb;
  --shadow:      0 4px 24px rgba(10,31,15,0.10);
  --hdr-bg:      rgba(244,250,240,0.92);
  --footer-bg:   #0A1F0F;
  --footer-text: #d4edcb;
}

[data-theme="dark"] {
  --bg:          #0A1F0F;
  --bg-card:     #122a16;
  --bg-section:  #0f2714;
  --text-primary:#e8f5e2;
  --text-muted:  #9ecf88;
  --border:      #2a4d2f;
  --shadow:      0 4px 24px rgba(0,0,0,0.40);
  --hdr-bg:      rgba(10,31,15,0.95);
  --footer-bg:   #060f08;
  --footer-text: #9ecf88;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-primary); line-height: 1.6; transition: background var(--transition), color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 48px); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(0.65rem, 1vw + 0.4rem, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: clamp(8px, 1.5vw, 14px);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw + 1rem, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: clamp(12px, 2vw, 20px);
}

.section-sub {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  overflow-wrap: break-word;
}

section { padding-block: clamp(56px, 8vw, 100px); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  white-space: nowrap;
  padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 32px);
  text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--lime); color: var(--forest); border-color: var(--lime); }
.btn-primary:hover { background: var(--lime-dark); border-color: var(--lime-dark); }
.btn-outline { background: transparent; color: var(--lime); border-color: var(--lime); }
.btn-outline:hover { background: var(--lime); color: var(--forest); }
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: clamp(56px, 5vw + 44px, 72px);
  background: var(--hdr-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.hdr-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: clamp(12px, 2vw, 24px); }

.hdr-logo {
  display: flex; align-items: center; gap: clamp(6px, 1vw, 10px);
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  color: var(--text-primary); flex-shrink: 0;
}
.hdr-logo svg { width: clamp(28px, 3vw + 16px, 38px); height: clamp(28px, 3vw + 16px, 38px); flex-shrink: 0; }
.hdr-logo span { color: var(--lime); }

.hdr-nav { display: none; }
.hdr-nav ul { display: flex; gap: clamp(16px, 2vw, 32px); }
.hdr-nav a {
  font-family: var(--font-head); font-size: clamp(0.85rem, 1vw + 0.3rem, 0.95rem);
  font-weight: 500; color: var(--text-muted);
  padding: clamp(4px, 0.5vw, 6px) 0;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}
.hdr-nav a:hover, .hdr-nav a.active { color: var(--lime); border-color: var(--lime); }

.hdr-actions { display: flex; align-items: center; gap: clamp(8px, 1.2vw, 16px); }

.theme-toggle {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: none; border: 1.5px solid var(--border); border-radius: 50%;
  cursor: pointer; color: var(--text-muted); flex-shrink: 0;
  transition: border-color var(--transition), color var(--transition);
}
.theme-toggle:hover { border-color: var(--lime); color: var(--lime); }
.theme-toggle svg { width: 18px; height: 18px; pointer-events: none; }

.site-header .hdr-cta { display: none; }

.hdr-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; padding: 8px; border-radius: var(--radius-sm); flex-shrink: 0;
}
.hdr-burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hdr-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hdr-drawer {
  display: none; position: fixed;
  top: clamp(56px, 5vw + 44px, 72px); left: 0; right: 0;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: clamp(16px, 3vw, 28px) clamp(16px, 4vw, 48px);
  z-index: 999; flex-direction: column; gap: clamp(6px, 1.5vw, 12px);
}
.hdr-drawer.is-open { display: flex; }
.hdr-drawer a {
  font-family: var(--font-head); font-size: clamp(1rem, 2vw + 0.5rem, 1.15rem);
  font-weight: 500; color: var(--text-muted);
  padding: clamp(10px, 1.5vw, 14px) 0; border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.hdr-drawer a:last-of-type { border-bottom: none; }
.hdr-drawer a:hover { color: var(--lime); }
.hdr-drawer .btn { margin-top: clamp(8px, 1.5vw, 16px); width: 100%; justify-content: center; }

@media (min-width: 768px) { .site-header .hdr-cta { display: inline-flex; } }
@media (min-width: 1023px) { .hdr-nav { display: flex; } .hdr-burger { display: none; } .hdr-drawer { display: none !important; } }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: clamp(56px, 5vw + 44px, 72px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: var(--forest); opacity: 0.13; }
.hero-content { position: relative; z-index: 1; padding-block: clamp(40px, 8vw, 80px); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(127,224,80,0.15); border: 1px solid rgba(127,224,80,0.4);
  border-radius: 100px; padding: 6px 16px;
  font-size: clamp(0.72rem, 0.8vw + 0.4rem, 0.85rem); font-weight: 600;
  color: var(--lime); margin-bottom: clamp(16px, 2.5vw, 28px);
  backdrop-filter: blur(4px);
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--lime);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw + 1rem, 5rem);
  font-weight: 700; line-height: 1.08; color: #ffffff;
  margin-bottom: clamp(14px, 2vw, 24px); max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { font-style: normal; color: var(--lime); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem); color: rgba(255,255,255,0.85);
  max-width: 520px; margin-bottom: clamp(28px, 4vw, 48px); overflow-wrap: break-word;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: clamp(10px, 1.5vw, 16px); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(40px, 6vw, 72px); padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat strong { display: block; font-family: var(--font-head); font-size: clamp(1.6rem, 2.5vw + 0.8rem, 2.6rem); font-weight: 700; color: var(--lime); line-height: 1; }
.hero-stat span { font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9rem); color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---------- FLEET ---------- */
.fleet { background: var(--bg-section); }
.fleet-header { margin-bottom: clamp(32px, 5vw, 56px); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
@media (max-width: 767px) { .fleet-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1022px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-card:last-child { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
}
.fleet-card {
  background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(127,224,80,0.12); }
.fleet-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fleet-card-body { padding: clamp(16px, 2vw, 24px); }
.fleet-card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); background: rgba(127,224,80,0.12); border-radius: 4px; padding: 3px 10px; margin-bottom: 10px; }
.fleet-card-name { font-family: var(--font-head); font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.3rem); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.fleet-card-desc { font-size: clamp(0.85rem, 1vw + 0.3rem, 0.95rem); color: var(--text-muted); margin-bottom: clamp(12px, 1.5vw, 18px); overflow-wrap: break-word; }
.fleet-card-price { font-family: var(--font-head); font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.25rem); font-weight: 700; color: var(--text-primary); }
.fleet-card-price span { font-size: 0.82rem; font-weight: 400; color: var(--text-muted); }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 24px); margin-top: clamp(32px, 5vw, 56px); }
@media (max-width: 767px) { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1022px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(20px, 2.5vw, 32px); transition: border-color var(--transition), box-shadow var(--transition); }
.service-card:hover { border-color: var(--lime); box-shadow: 0 0 0 1px var(--lime), var(--shadow); }
.service-icon { width: clamp(44px, 5vw, 56px); height: clamp(44px, 5vw, 56px); border-radius: var(--radius-sm); background: rgba(127,224,80,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: clamp(14px, 1.8vw, 20px); }
.service-icon svg { width: clamp(22px, 2.5vw, 28px); height: clamp(22px, 2.5vw, 28px); color: var(--lime); }
.service-name { font-family: var(--font-head); font-size: clamp(1rem, 1.2vw + 0.4rem, 1.15rem); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.service-desc { font-size: clamp(0.85rem, 1vw + 0.3rem, 0.93rem); color: var(--text-muted); overflow-wrap: break-word; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--bg-section); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); margin-top: clamp(32px, 5vw, 56px); position: relative; }
.steps::before { content: ''; position: absolute; top: clamp(22px, 3vw, 28px); left: calc(50% / 3 + 5%); right: calc(50% / 3 + 5%); height: 2px; background: linear-gradient(90deg, var(--lime) 0%, var(--lime-dark) 100%); z-index: 0; }
@media (max-width: 1022px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }
.step { position: relative; z-index: 1; text-align: center; padding: clamp(16px, 2vw, 24px); }
.step-num { width: clamp(44px, 5vw, 56px); height: clamp(44px, 5vw, 56px); border-radius: 50%; background: var(--lime); color: var(--forest); font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.3rem); display: flex; align-items: center; justify-content: center; margin: 0 auto clamp(16px, 2vw, 24px); }
.step-title { font-family: var(--font-head); font-size: clamp(1rem, 1.3vw + 0.4rem, 1.15rem); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-desc { font-size: clamp(0.85rem, 1vw + 0.3rem, 0.93rem); color: var(--text-muted); overflow-wrap: break-word; }

/* ---------- TARIFFS ---------- */
.tariffs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 24px); margin-top: clamp(32px, 5vw, 56px); align-items: start; }
@media (max-width: 767px) { .tariffs-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1022px) {
  .tariffs-grid { grid-template-columns: repeat(2, 1fr); }
  .tariff-card:last-child { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
}
.tariff-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px); transition: transform var(--transition), box-shadow var(--transition); }
.tariff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tariff-card.featured { border-color: var(--lime); box-shadow: 0 0 0 1px var(--lime), 0 8px 32px rgba(127,224,80,0.15); position: relative; }
.tariff-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--forest); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.tariff-name { font-family: var(--font-head); font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime); margin-bottom: 8px; }
.tariff-price { font-family: var(--font-head); font-size: clamp(2rem, 3vw + 0.8rem, 2.8rem); font-weight: 700; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
.tariff-price span { font-size: clamp(0.85rem, 1vw + 0.3rem, 0.95rem); font-weight: 400; color: var(--text-muted); }
.tariff-desc { font-size: clamp(0.82rem, 0.9vw + 0.3rem, 0.9rem); color: var(--text-muted); margin-bottom: clamp(16px, 2vw, 24px); overflow-wrap: break-word; }
.tariff-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: clamp(20px, 2.5vw, 28px); }
.tariff-list li { display: flex; align-items: flex-start; gap: 10px; font-size: clamp(0.85rem, 1vw + 0.3rem, 0.93rem); color: var(--text-muted); overflow-wrap: break-word; }
.tariff-list li::before { content: ''; width: 18px; height: 18px; min-width: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%237FE050' fill-opacity='.15'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%237FE050' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain; margin-top: 2px; }
.tariff-card .btn { width: 100%; justify-content: center; }

/* ---------- CONTACT ---------- */
.contact { background: var(--bg-section); }
.contact-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(32px, 5vw, 64px); margin-top: clamp(32px, 5vw, 56px); align-items: start; }
@media (max-width: 767px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: clamp(14px, 2vw, 20px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.5vw, 16px); }
@media (max-width: 767px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.88rem); font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.4vw, 16px); font-family: var(--font-body); font-size: clamp(0.88rem, 1vw + 0.3rem, 0.95rem); color: var(--text-primary); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(127,224,80,0.15); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #e05050; }
.form-group .field-error { font-size: 0.78rem; color: #e05050; display: none; }
.form-group.has-error .field-error { display: block; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.contact-form .btn { align-self: flex-start; }
@media (max-width: 767px) { .contact-form .btn { width: 100%; justify-content: center; } }
.form-success { display: none; text-align: center; padding: clamp(24px, 4vw, 40px); background: rgba(127,224,80,0.08); border: 1px solid var(--lime); border-radius: var(--radius-md); color: var(--text-primary); }
.form-success.visible { display: block; }
.form-success strong { display: block; font-family: var(--font-head); font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.3rem); color: var(--lime); margin-bottom: 8px; }
.contact-info { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 32px); }
.contact-item { display: flex; gap: clamp(12px, 1.5vw, 16px); align-items: flex-start; }
.contact-item-icon { width: clamp(40px, 4vw, 48px); height: clamp(40px, 4vw, 48px); min-width: clamp(40px, 4vw, 48px); border-radius: var(--radius-sm); background: rgba(127,224,80,0.1); display: flex; align-items: center; justify-content: center; }
.contact-item-icon svg { width: 20px; height: 20px; color: var(--lime); }
.contact-item-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-item-val { font-size: clamp(0.9rem, 1.1vw + 0.3rem, 1rem); color: var(--text-primary); overflow-wrap: break-word; word-break: break-word; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-top: clamp(16px, 2vw, 24px); }
.map-wrap img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding-block: clamp(40px, 6vw, 72px) clamp(24px, 3vw, 36px); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); margin-bottom: clamp(32px, 5vw, 56px); }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1022px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-brand .hdr-logo { color: #ffffff; margin-bottom: clamp(10px, 1.5vw, 16px); }
.footer-desc { font-size: clamp(0.85rem, 1vw + 0.3rem, 0.93rem); opacity: 0.7; line-height: 1.6; max-width: 280px; overflow-wrap: break-word; }
.footer-col-title { font-family: var(--font-head); font-size: clamp(0.85rem, 1vw + 0.3rem, 0.93rem); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); margin-bottom: clamp(12px, 1.5vw, 18px); }
.footer-links { display: flex; flex-direction: column; gap: clamp(8px, 1vw, 12px); }
.footer-links a { font-size: clamp(0.85rem, 1vw + 0.3rem, 0.93rem); opacity: 0.75; transition: opacity var(--transition), color var(--transition); overflow-wrap: break-word; }
.footer-links a:hover { opacity: 1; color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: clamp(16px, 2vw, 24px); display: flex; flex-wrap: wrap; gap: clamp(8px, 1.5vw, 16px); justify-content: space-between; align-items: center; font-size: clamp(0.78rem, 0.9vw + 0.3rem, 0.85rem); opacity: 0.6; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner { position: fixed; bottom: clamp(12px, 2vw, 24px); left: clamp(12px, 2vw, 24px); right: clamp(12px, 2vw, 24px); max-width: 560px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(16px, 2.5vw, 24px); box-shadow: 0 8px 40px rgba(0,0,0,0.2); z-index: 2000; display: flex; flex-direction: column; gap: clamp(12px, 1.5vw, 16px); transition: opacity 0.3s, transform 0.3s; }
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.cookie-text { font-size: clamp(0.82rem, 1vw + 0.3rem, 0.9rem); color: var(--text-muted); overflow-wrap: break-word; }
.cookie-text a { color: var(--lime); text-decoration: underline; }
.cookie-btns { display: flex; flex-wrap: wrap; gap: clamp(8px, 1vw, 12px); }
.cookie-btns .btn { flex: 1 1 120px; justify-content: center; }

/* ---------- INNER PAGES ---------- */
.page-hero { background: var(--bg-section); padding-block: clamp(80px, 10vw, 120px) clamp(40px, 6vw, 72px); margin-top: clamp(56px, 5vw + 44px, 72px); }
.page-content { padding-block: clamp(40px, 6vw, 72px); max-width: 780px; margin-inline: auto; }
.page-content h2 { font-family: var(--font-head); font-size: clamp(1.2rem, 1.8vw + 0.5rem, 1.5rem); font-weight: 700; color: var(--text-primary); margin-top: clamp(24px, 3vw, 36px); margin-bottom: clamp(10px, 1.5vw, 14px); }
.page-content p { font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem); color: var(--text-muted); margin-bottom: clamp(10px, 1.5vw, 14px); overflow-wrap: break-word; }
.page-content ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: clamp(16px, 2vw, 24px); }
.page-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: clamp(0.88rem, 1vw + 0.3rem, 0.97rem); color: var(--text-muted); overflow-wrap: break-word; }
.page-content ul li::before { content: '✦'; color: var(--lime); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }

/* ---------- ANIMATIONS ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- SKIP LINK ---------- */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--lime); color: var(--forest); padding: 8px 16px; border-radius: 0 0 8px 8px; font-weight: 700; font-size: 0.9rem; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }