/* ============================================
   PRAGLIO LLC — Corporate Website
   White + Indigo + Modern Sans-Serif
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --indigo-50:  #EEF2FF;
  --indigo-100: #E0E7FF;
  --indigo-200: #C7D2FE;
  --indigo-300: #A5B4FC;
  --indigo-400: #818CF8;
  --indigo-500: #6366F1;
  --indigo-600: #4F46E5;
  --indigo-700: #4338CA;
  --indigo-800: #3730A3;
  --indigo-900: #312E81;
  --indigo-950: #1E1B4B;

  --cyan-400: #22D3EE;
  --cyan-500: #06B6D4;

  --white:    #FFFFFF;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1140px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s var(--ease); }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-600);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--indigo-500);
}

.gradient-text {
  background: linear-gradient(135deg, var(--indigo-600), var(--cyan-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--indigo-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--indigo-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--indigo-700);
  border: 1.5px solid var(--indigo-200);
}
.btn-outline:hover {
  background: var(--indigo-50);
  border-color: var(--indigo-400);
}
.btn-white {
  background: var(--white);
  color: var(--indigo-700);
}
.btn-white:hover {
  background: var(--indigo-50);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gray-900);
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 800;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--gray-500);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--indigo-500);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gray-900); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { margin-left: 8px; padding: 9px 20px; font-size: 0.82rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-decoration {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-decoration-2 {
  position: absolute;
  bottom: -30%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-content h1 {
  margin-bottom: 1.25rem;
}
.hero-content .hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-card-stack {
  position: relative;
  height: 420px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease);
}
.hero-card-1 {
  top: 0; left: 10%;
  width: 300px;
  z-index: 3;
}
.hero-card-2 {
  top: 60px; right: 0;
  width: 260px;
  z-index: 2;
  background: var(--indigo-600);
  border-color: var(--indigo-600);
  color: var(--white);
}
.hero-card-3 {
  bottom: 0; left: 5%;
  width: 280px;
  z-index: 1;
}
.hc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.hc-icon-indigo { background: var(--indigo-50); color: var(--indigo-600); }
.hc-icon-white { background: rgba(255,255,255,0.15); }
.hc-icon-cyan { background: rgba(6,182,212,0.1); color: var(--cyan-500); }
.hero-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.hero-card-2 h4 { color: var(--white); }
.hero-card p { font-size: 0.82rem; color: var(--gray-500); margin: 0; line-height: 1.5; }
.hero-card-2 p { color: rgba(255,255,255,0.7); }

/* Tags */
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--indigo-50);
  color: var(--indigo-700);
}
.tag-white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--indigo-950), var(--indigo-800));
  padding: calc(var(--header-h) + 56px) 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--indigo-300); }
.page-hero .eyebrow::before { background: var(--indigo-400); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; font-size: 1.02rem; }

.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem; font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--indigo-300); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-gray { background: var(--gray-50); }
.section-indigo-light { background: var(--indigo-50); }
.section-dark {
  background: linear-gradient(135deg, var(--indigo-950), var(--indigo-900));
  color: var(--white);
}
.section-header { max-width: 560px; margin-bottom: 52px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--gray-500); font-size: 1rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.section-dark .section-header h2 { color: var(--white); }

/* ============================================
   SERVICES / AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--indigo-500), var(--cyan-500));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.area-card:hover {
  border-color: var(--indigo-200);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.07);
  transform: translateY(-3px);
}
.area-card:hover::before { opacity: 1; }
.area-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--indigo-400);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.area-icon {
  width: 48px; height: 48px;
  background: var(--indigo-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s var(--ease);
}
.area-card:hover .area-icon {
  background: var(--indigo-600);
}
.area-icon svg { width: 22px; height: 22px; color: var(--indigo-600); transition: color 0.3s; }
.area-card:hover .area-icon svg { color: var(--white); }
.area-card h3 { margin-bottom: 10px; }
.area-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* Service detail on services page */
.service-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.sb-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--indigo-100);
  line-height: 1;
}
.service-block h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-block p { color: var(--gray-600); }

/* ============================================
   PROJECT SPOTLIGHT
   ============================================ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.spotlight-visual {
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-800));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.spotlight-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.spotlight-visual h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.spotlight-visual .spot-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: var(--indigo-200);
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.spotlight-visual p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}
.spotlight-features {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.spot-feat {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: rgba(255,255,255,0.8);
}

.spotlight-text .eyebrow { margin-bottom: 1rem; }
.spotlight-text h2 { margin-bottom: 1rem; }
.spotlight-text p { color: var(--gray-600); }
.spotlight-text .btn { margin-top: 1rem; }

/* ============================================
   ABOUT - VALUES
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.value-card:hover {
  border-color: var(--indigo-200);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.06);
}
.vc-icon {
  width: 52px; height: 52px;
  background: var(--indigo-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.vc-icon svg { width: 24px; height: 24px; color: var(--indigo-600); }
.value-card h4 { margin-bottom: 8px; }
.value-card p { color: var(--gray-500); font-size: 0.88rem; margin: 0; }

/* About intro */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--gray-600); }
.about-principles {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.about-principles h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
.ap-row {
  display: flex; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ap-row:last-child { border-bottom: none; }
.ap-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--indigo-400);
  width: 28px; flex-shrink: 0;
}
.ap-row p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--indigo-950), var(--indigo-800));
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info-block {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-block::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(99,102,241,0.08);
  border-radius: 50%;
}
.contact-info-block h3 { margin-bottom: 1.75rem; color: var(--white); }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.ci-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 18px; height: 18px; color: var(--indigo-300); }
.ci-text span {
  display: block;
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; margin-bottom: 2px;
}
.ci-text p { margin: 0; color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.5; }
.ci-text a { color: var(--indigo-300); }
.ci-text a:hover { color: var(--indigo-200); }

.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { color: var(--gray-500); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.88rem;
  display: none;
}
.form-status.success {
  background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534;
}
.form-status.error {
  background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-950);
  color: rgba(255,255,255,0.5);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { margin-bottom: 1rem; color: var(--white); }
.footer-brand .logo-mark { background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500)); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-col ul li a:hover { color: var(--indigo-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.78rem;
}
.footer-links a { color: rgba(255,255,255,0.35); margin-left: 20px; }
.footer-links a:hover { color: var(--indigo-300); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { padding: 72px 0; }
.legal-content .container { max-width: 760px; }
.legal-content h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.08rem; margin: 1.75rem 0 0.75rem; }
.legal-content p, .legal-content li { color: var(--gray-600); font-size: 0.93rem; line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.5rem; }
.legal-content a { color: var(--indigo-600); border-bottom: 1px solid var(--indigo-200); }
.legal-content a:hover { color: var(--indigo-800); }
.legal-date {
  font-size: 0.82rem; color: var(--gray-400);
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 16px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  font-size: 0.85rem;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
}
.cookie-inner p { margin: 0; }
.cookie-inner a { color: var(--indigo-300); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns .btn { padding: 8px 16px; font-size: 0.78rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 40px; }
  .spotlight { gap: 40px; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 24px; gap: 0;
    border-top: 1px solid var(--gray-200);
  }
  .main-nav.open a {
    padding: 14px 0; font-size: 1rem;
    border-bottom: 1px solid var(--gray-100); color: var(--gray-800);
  }
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 60px; }
  .hero-visual { display: none; }
  .areas-grid, .values-grid { grid-template-columns: 1fr; }
  .about-split, .spotlight, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-links a { margin: 0 10px; }
  .section { padding: 64px 0; }
  .service-block { grid-template-columns: 1fr; gap: 8px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
}
