@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --slate: #1B2A41;
  --slate-light: #2A3D5C;
  --navy: #0F1825;
  --ice: #E8F1F5;
  --ice-dark: #D4E4EC;
  --amber: #E09F3E;
  --amber-light: #F0B86A;
  --white: #FFFFFF;
  --text: #1B2A41;
  --text-muted: #5A6B7D;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(27, 42, 65, 0.08);
  --shadow: 0 24px 64px rgba(15, 24, 37, 0.12);
  --shadow-sm: 0 8px 24px rgba(15, 24, 37, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Sora', system-ui, sans-serif;
  --header-h: 76px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ice);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* Blueprint grid background */
.blueprint-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(27, 42, 65, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 42, 65, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.blueprint-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(224, 159, 62, 0.06), transparent 60%);
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.float-shape-1 { width: 320px; height: 320px; background: rgba(224, 159, 62, 0.15); top: 10%; right: 5%; animation-delay: 0s; }
.float-shape-2 { width: 240px; height: 240px; background: rgba(27, 42, 65, 0.08); bottom: 20%; left: 8%; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-24px) translateX(12px); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(232, 241, 245, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--glass-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}
.logo-img { width: 40px; height: 40px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; gap: 28px; }
.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-list a:hover, .nav-list a.active { color: var(--slate); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}
.lang-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active { background: var(--slate); color: var(--ice); }
.header-cta {
  padding: 10px 20px;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224, 159, 62, 0.35); }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-btn svg { width: 20px; height: 20px; color: var(--slate); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 0 80px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--slate);
  margin-bottom: 8px;
}
.hero-brand {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-light) 60%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary { background: var(--slate); color: var(--ice); }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid rgba(27, 42, 65, 0.2);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: var(--amber-light); transform: translateY(-2px); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 42, 65, 0.1);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--slate);
  margin-bottom: 4px;
}
.hero-stat span { font-size: 0.8125rem; color: var(--text-muted); }

/* Isometric visual */
.hero-visual { position: relative; }
.isometric-wrap {
  position: relative;
  padding: 24px;
}
.isometric-svg { width: 100%; height: auto; }
.progress-line {
  stroke: var(--amber);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 3s ease forwards infinite;
}
.progress-line-2 { animation-delay: 1s; }
.progress-line-3 { animation-delay: 2s; }
@keyframes drawLine {
  0% { stroke-dashoffset: 200; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -200; opacity: 0.3; }
}
.glass-panel {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  animation: float 6s ease-in-out infinite;
}
.glass-panel-1 { top: 8%; right: -4%; animation-delay: -1s; }
.glass-panel-2 { bottom: 12%; left: -6%; animation-delay: -4s; }
.glass-panel-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.glass-panel-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--slate); }
.glass-panel-change { font-size: 0.75rem; color: var(--amber); font-weight: 600; margin-top: 4px; }

/* Sections */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-navy { background: var(--navy); color: var(--ice); }
.section-navy .section-desc, .section-navy .section-label { color: rgba(232, 241, 245, 0.7); }
.section-navy .section-title { color: var(--ice); }
.section-slate { background: var(--slate); color: var(--ice); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--slate); margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--text-muted); }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.glass-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.glass-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.glass-card:hover::before { opacity: 1; }
.card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ice);
  border-radius: 12px;
  margin-bottom: 20px;
}
.card-icon-wrap svg { width: 24px; height: 24px; color: var(--amber); }
.glass-card h3 { font-size: 1.125rem; margin-bottom: 12px; color: var(--slate); }
.glass-card p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 16px; }
.card-link { font-size: 0.875rem; font-weight: 600; color: var(--amber); }
.card-link:hover { color: var(--slate); }

/* Marquee */
.marquee-section {
  background: var(--slate);
  color: var(--ice);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-track span { color: rgba(232, 241, 245, 0.85); }
.marquee-track span:nth-child(odd)::after { content: ' ◆ '; color: var(--amber); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Tabs */
.tabs-section { background: var(--white); }
.tabs-nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 24px;
  border: 1px solid var(--glass-border);
  background: var(--ice);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--slate); color: var(--ice); border-color: var(--slate); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tab-content-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.tab-features { margin-top: 24px; }
.tab-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.tab-features svg { flex-shrink: 0; color: var(--amber); margin-top: 2px; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 241, 245, 0.1);
  border-radius: var(--radius-lg);
}
.process-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; opacity: 0.75; }

/* Testimonials */
.testimonial-slider { overflow: hidden; border-radius: var(--radius-lg); }
.testimonial-track { display: flex; transition: transform 0.6s ease; }
.testimonial-slide {
  min-width: 100%;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.6;
}
.testimonial-author { font-weight: 600; color: var(--slate); }
.testimonial-role { font-size: 0.875rem; color: var(--text-muted); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--ice-dark);
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--amber); width: 28px; border-radius: 5px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
  color: var(--ice);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 159, 62, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 159, 62, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 16px; }
.cta-band p { opacity: 0.85; max-width: 560px; margin: 0 auto 32px; }

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
  position: relative;
  z-index: 1;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--slate); }
.page-hero p { color: var(--text-muted); margin-top: 12px; max-width: 600px; font-size: 1.0625rem; }

/* Split layout */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-content h2 { font-size: 2rem; margin-bottom: 20px; color: var(--slate); }
.split-content p { color: var(--text-muted); margin-bottom: 16px; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stat-box {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 8px;
}
.stat-box span { font-size: 0.875rem; color: var(--text-muted); }

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.product-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.product-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.product-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9375rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--slate);
  color: var(--ice);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { margin-bottom: 28px; font-size: 1.5rem; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; margin-bottom: 4px; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 { margin-bottom: 28px; font-size: 1.5rem; color: var(--slate); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ice-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--ice);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-check input { margin-top: 4px; accent-color: var(--amber); }
.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-top: 16px;
}
.form-msg.show { display: block; }
.form-msg.success { background: rgba(224, 159, 62, 0.15); color: var(--slate); border: 1px solid var(--amber); }
.form-msg.error { background: rgba(220, 53, 69, 0.1); color: #842029; border: 1px solid #f5c2c7; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.team-card span { font-size: 0.8125rem; color: var(--amber); font-weight: 500; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.value-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9375rem; color: var(--text-muted); }

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(232, 241, 245, 0.85);
  padding: 64px 0 24px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer .logo { color: var(--ice); margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; opacity: 0.75; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; opacity: 0.75; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--ice); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 241, 245, 0.1);
  font-size: 0.8125rem;
  opacity: 0.65;
}
.footer-legal a { opacity: 0.85; }
.footer-legal a:hover { color: var(--amber); }

/* Policy pages */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content.visible #policyContent { opacity: 1; }
#policyContent {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  line-height: 1.75;
  opacity: 1;
}
#policyContent h2, #policyContent h3, #policyContent h4 { margin: 28px 0 12px; color: var(--slate); }
#policyContent p { margin-bottom: 16px; color: var(--text-muted); }
#policyContent ul { list-style: disc; margin: 12px 0 16px 24px; color: var(--text-muted); }
#policyContent li { margin-bottom: 8px; }
#policyContent a { color: var(--amber); text-decoration: underline; }
#policyContent a:hover { color: var(--slate); }
.policy-table-wrap { overflow-x: auto; margin: 16px 0; }
.policy-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.policy-table th, .policy-table td { padding: 10px 12px; border: 1px solid var(--ice-dark); text-align: left; }
.policy-table th { background: var(--ice); font-weight: 600; color: var(--slate); }

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--slate);
  color: var(--ice);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.5s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-bar p { font-size: 0.875rem; flex: 1; min-width: 240px; line-height: 1.5; }
.cookie-bar a { color: var(--amber); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-accept { background: var(--amber); color: var(--navy); }
.cookie-accept:hover { background: var(--amber-light); }
.cookie-reject { background: transparent; color: var(--ice); border: 1px solid rgba(232, 241, 245, 0.3); }
.cookie-reject:hover { border-color: var(--ice); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Feature list */
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.feature-list svg { flex-shrink: 0; color: var(--amber); margin-top: 3px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .split-grid, .tab-content-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--ice);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow);
  }
  .nav-list.open { transform: translateY(0); opacity: 1; }
  .menu-btn { display: flex; }
  .header-cta { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .process-grid, .products-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #policyContent { padding: 28px 20px; }
  .glass-panel { display: none; }
}
