/* ================================================
   Booktech.no – Stylesheet
   ================================================ */

/* Variables */
:root {
  --primary: #1a56db;
  --primary-dark: #1e3a8a;
  --primary-light: #dbeafe;
  --accent: #059669;
  --accent-light: #d1fae5;
  --text: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #1e293b;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.section-label.green { background: var(--accent-light); color: var(--accent); }
.section-label.white { background: rgba(255,255,255,0.2); color: white; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn-white { background: white; color: var(--primary); }
.btn-white:hover {
  background: #f0f5ff;
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: white;
}

.btn-lg { padding: 0.9rem 2.25rem; font-size: 1.05rem; }

.btn-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================
   Navigation
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar-logo img { height: 34px; width: auto; }
.navbar-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.navbar-links a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.navbar-links a:hover,
.navbar-links a.active {
  background: var(--primary-light);
  color: var(--primary);
}
.navbar-links a.cta {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.25rem;
}
.navbar-links a.cta:hover { background: var(--primary-dark); }

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* =====================
   Hero – Forside
   ===================== */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 55%, #0ea5e9 100%);
  padding: 9rem 0 7rem;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 65%; height: 190%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { color: white; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: #7dd3fc;
}

.hero .lead {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
}

.hero .btn-actions { justify-content: flex-start; }

/* Hero card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 400px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card-header .hc-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.hero-card-header .hc-sub { font-size: 0.82rem; color: var(--text-light); }

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-stat {
  text-align: center;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 0.75rem 0.4rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
}

.hero-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.hero-check-item::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 18px;
  text-align: center;
}

/* =====================
   About
   ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stat-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--primary);
}

.stat-box strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.stat-box span {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
}

.visual-box {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-top: 1.25rem;
}

/* =====================
   Feature Cards
   ===================== */
.bg-light { background: var(--bg-light); }
.bg-dark-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 46px; height: 46px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-icon.green { background: var(--accent-light); }

.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* =====================
   Service Cards
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-card h3 { margin-bottom: 0.6rem; }
.service-card > p { color: var(--text-light); font-size: 0.95rem; flex: 1; }

.service-features {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.service-card .btn { align-self: flex-start; margin-top: auto; }

/* =====================
   Testimonials
   ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-quote {
  font-size: 3rem;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.testimonial-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; color: white; font-size: 0.9rem; }
.testimonial-company { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* Single testimonial (for apputvikling) */
.testimonial-single {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-large {
  font-size: 5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: -1.5rem;
  opacity: 0.8;
}

.testimonial-text-large {
  font-size: 1.35rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 2rem;
  font-weight: 400;
}

.testimonial-author-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name-large {
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

.testimonial-company-large {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .testimonial-text-large {
    font-size: 1.15rem;
  }
  .testimonial-quote-large {
    font-size: 4rem;
  }
}

/* =====================
   CTA Box
   ===================== */
.cta-wrap { background: var(--bg-light); }

.cta-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 4.5rem 2rem;
  text-align: center;
  color: white;
}

.cta-box h2 { color: white; margin-bottom: 0.75rem; }
.cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-box .btn-actions { justify-content: center; }

/* =====================
   Contact
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info p { color: var(--text-light); }

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item-icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label { font-size: 0.78rem; color: var(--text-light); }
.contact-item a, .contact-item span { font-weight: 500; color: var(--text-mid); }
.contact-item a:hover { color: var(--primary); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label { font-size: 0.88rem; font-weight: 500; color: var(--text-mid); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-privacy { font-size: 0.82rem; color: var(--text-light); }

/* =====================
   Footer
   ===================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0.9rem 0 1.5rem;
}

/* =====================
   Screenshots
   ===================== */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.screenshot-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.screenshot-card img,
.screenshot-card .screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-card p {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
  text-align: center;
}

.screenshot-img {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.screenshot-img:hover {
  transform: scale(1.02);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.95rem;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* =====================
   Customer Logos
   ===================== */
.customers-section {
  background: var(--bg-light);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.customers-header {
  text-align: center;
  margin-bottom: 2rem;
}

.customers-header h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.customers-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.customer-logo {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.customer-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.footer-logo-wrap {
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  display: block;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo-img img { height: 32px; width: auto; }

.footer-company-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.social-links { display: flex; gap: 0.6rem; }

.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: white;
}

.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.nets-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
}

.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* =====================
   Page Hero (subpages)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 100%);
  padding: 7rem 0 5.5rem;
  margin-top: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero .lead {
  color: rgba(255,255,255,0.87);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.page-hero .btn-actions { justify-content: center; }

/* =====================
   Feature List (grid check items)
   ===================== */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.check-item .ck {
  width: 20px; height: 20px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
  line-height: 20px;
  text-align: center;
}

.check-item span { font-size: 0.88rem; color: var(--text-mid); }

/* Info box */
.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 1.5rem 0;
}

/* Animate on scroll */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    width: auto;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1001;
  }

  .navbar-links.open { display: flex; }
  .navbar-links li {
    margin-bottom: 0.3rem;
  }
  .navbar-links li:last-child {
    margin-bottom: 0;
  }
  .navbar-links a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    white-space: nowrap;
  }
  .navbar-links a.cta {
    margin-top: 0.5rem;
    text-align: center;
  }
  .navbar-toggle { display: flex; }

  .hero { padding: 6.5rem 0 5rem; }
  .form-row { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 520px) {
  .hero .btn-actions { flex-direction: column; }
  .hero .btn-actions .btn { width: 100%; justify-content: center; }
  .stat-boxes { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .cta-box .btn-actions { flex-direction: column; align-items: center; }
}

/* ================================================
   Cookie Consent Banner
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.cookie-btn-accept {
  background: var(--primary);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--primary-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
  background: var(--bg-light);
  color: var(--text);
}

@media (max-width: 768px) {
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner p {
    min-width: auto;
  }
}
