/* ============================================================
   Green Repack LLC — Modern Design System (Landing Page)
   Typography: Manrope & DM Mono
   Palette: Lush Forest, Deep Night, Emerald Glow & Warm Cream
   ============================================================ */

:root {
  --ink: #102808;
  --ink-soft: #2b4122;
  --forest: #063014;
  --forest-mid: #0a3d1b;
  --forest-light: #124d24;
  --deep: #071b0b;
  --deep-alt: #041207;
  --leaf: #78b030;
  --leaf-light: #a5cf49;
  --leaf-soft: #e8f5d8;
  --emerald: #3ecf8e;
  --emerald-glow: rgba(62, 207, 142, 0.35);
  --emerald-deep: #24b47e;
  --cream: #f8faf4;
  --cream-alt: #f1f4ec;
  --sand: #e6ede0;
  --red: #e02020;
  --orange: #f4860a;
  --muted: #5d6d58;
  --muted-light: #8fa08a;
  --line: rgba(16, 40, 8, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-glow: rgba(62, 207, 142, 0.3);
  --white: #ffffff;
  --display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'DM Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(7, 27, 11, 0.05);
  --shadow-md: 0 8px 24px rgba(7, 27, 11, 0.08);
  --shadow-lg: 0 16px 40px rgba(7, 27, 11, 0.12);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(62, 207, 142, 0.25);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.25s var(--ease-spring);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 16px/1.65 var(--display);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Accessibility skip link */
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--emerald);
  color: var(--deep);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* Layout container */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
}

/* Typography Helpers */
h1, h2, h3, h4, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 {
  font-size: clamp(34px, 5.5vw, 62px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 12px/1 var(--mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: var(--emerald);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--emerald);
  color: var(--deep);
  border: 1px solid var(--emerald);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font: 800 13px/1 var(--display);
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(62, 207, 142, 0.25);
  transition: var(--transition);
  white-space: nowrap;
}

.button:hover {
  background: var(--emerald-deep);
  border-color: var(--emerald-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 207, 142, 0.35);
  color: var(--white);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  padding: 10px 18px;
  font-size: 12px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--forest);
  border-bottom: 2px solid var(--emerald);
  padding-bottom: 2px;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--emerald-deep);
  border-color: var(--forest);
  gap: 12px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  color: var(--white);
  background: rgba(7, 27, 11, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 27, 11, 0.92);
  border-bottom-color: rgba(62, 207, 142, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.4px;
  line-height: 1;
}

.brand-logo {
  width: 52px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-title > span {
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.brand-title > span > span {
  color: var(--emerald);
}

.brand-title small {
  font: 500 9px var(--mono);
  letter-spacing: 2px;
  color: var(--leaf-light);
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 6px 0;
}

nav > a:not(.button)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width 0.2s ease;
}

nav > a:not(.button):hover {
  color: var(--white);
}

nav > a:not(.button):hover::after {
  width: 100%;
}

.portal-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald) !important;
  background: rgba(62, 207, 142, 0.12);
  border: 1px solid rgba(62, 207, 142, 0.3);
  padding: 6px 14px !important;
  border-radius: var(--radius-full);
}

.portal-nav-link::after {
  display: none !important;
}

.portal-nav-link:hover {
  background: rgba(62, 207, 142, 0.22);
  border-color: var(--emerald);
}

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 95;
}

.menu-button:focus-visible {
  outline: 2px solid var(--emerald);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 85;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 150px 0 60px;
  min-height: 820px;
  color: var(--white);
  position: relative;
  background:
    radial-gradient(circle at 85% 25%, rgba(62, 207, 142, 0.18), transparent 30%),
    radial-gradient(circle at 15% 75%, rgba(244, 134, 10, 0.12), transparent 28%),
    linear-gradient(135deg, var(--deep) 0%, var(--forest) 55%, #0d3814 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  min-height: 520px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  font: 500 12px var(--mono);
  color: var(--leaf-light);
  letter-spacing: 0.5px;
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.25); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--emerald) 0%, #a5cf49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: #d1dfcb;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Hero Interactive Art Card */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.hero-art-facility-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark), 0 0 40px rgba(62, 207, 142, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-facility-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.hero-art-facility-card:hover .hero-facility-img {
  transform: scale(1.04);
}

.hero-facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 11, 0.15) 0%, rgba(7, 27, 11, 0.85) 100%);
  pointer-events: none;
}

.hero-facility-badge {
  position: relative;
  z-index: 2;
  margin: 18px;
  background: rgba(7, 27, 11, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(62, 207, 142, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-facility-badge .badge-mini-logo {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-facility-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.hero-facility-badge small {
  display: block;
  font: 500 11px var(--mono);
  color: var(--leaf-light);
  letter-spacing: 0.5px;
}

.hero-art-glass-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  box-shadow: var(--shadow-dark), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(62, 207, 142, 0.25);
  pointer-events: none;
}

.orbit-one {
  width: 320px;
  height: 320px;
  animation: rotateClockwise 30s linear infinite;
}

.orbit-two {
  width: 420px;
  height: 420px;
  border-style: dotted;
  border-color: rgba(255, 255, 255, 0.15);
  animation: rotateCounterClockwise 45s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.hero-logo {
  width: 150px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s var(--ease-spring);
}

.hero-art-glass-card:hover .hero-logo {
  transform: scale(1.08);
}

.hero-art-caption {
  margin-top: 24px;
  position: relative;
  z-index: 2;
  font: 800 15px/1.2 var(--display);
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.hero-art-caption span {
  color: var(--emerald);
}

.hero-floating-badge {
  position: absolute;
  background: rgba(7, 27, 11, 0.85);
  border: 1px solid rgba(62, 207, 142, 0.4);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font: 600 12px var(--display);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-badge.badge-top {
  top: 20px;
  left: -20px;
}

.hero-floating-badge.badge-bottom {
  bottom: 25px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-floating-badge svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
}

/* Hero Feature Strip */
.hero-strip {
  margin-top: 60px;
  padding: 22px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  font: 600 13px var(--mono);
  letter-spacing: 0.5px;
  color: #cfdeca;
  position: relative;
  z-index: 2;
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-strip span::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 800;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-tint {
  background: var(--sand);
}

.section-dark {
  background: var(--deep);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 50px;
}

.section-heading > div {
  max-width: 600px;
}

.section-heading > p {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.section-dark .section-heading > p {
  color: #b7c7b1;
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.intro-points-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-stat {
  border-left: 3px solid var(--emerald);
  padding-left: 18px;
}

.intro-stat-val {
  font: 800 32px/1 var(--display);
  color: var(--forest);
  margin-bottom: 4px;
}

.intro-stat-desc {
  font: 500 13px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}

.intro-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

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

.service-card-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: var(--cream-alt);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-media .card-number {
  position: absolute;
  top: 14px;
  left: 14px;
  margin-bottom: 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.service-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-number {
  font: 700 13px var(--mono);
  color: var(--leaf);
  background: var(--cream-alt);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--forest);
}

.service-card a:hover {
  color: var(--emerald-deep);
  gap: 12px;
}

.service-card.featured {
  background: var(--white);
  border-color: var(--line);
}

/* ============================================================
   CAPABILITIES SECTION
   ============================================================ */
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.capability-image-wrap {
  position: relative;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.capability-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.capability-image-wrap:hover .capability-img {
  transform: scale(1.04);
}

.capability-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 11, 0.05) 0%, rgba(7, 27, 11, 0.82) 100%);
  pointer-events: none;
}

.capability-glass-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(7, 27, 11, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(62, 207, 142, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.capability-glass-badge .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
  flex-shrink: 0;
}

.capability-glass-badge strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
}

.capability-glass-badge small {
  display: block;
  font: 500 11px var(--mono);
  color: var(--leaf-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.capability-art {
  height: 420px;
  background: linear-gradient(135deg, var(--forest), var(--deep));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(62, 207, 142, 0.2), transparent 70%);
}

.capability-art span {
  font: 800 clamp(28px, 4vw, 42px)/1.1 var(--display);
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 2;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071b0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.disclaimer {
  font: 12px var(--mono);
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-list li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
}

.process-list li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--emerald);
  transform: translateY(-4px);
}

.process-list li span {
  font: 800 18px var(--mono);
  color: var(--emerald);
  display: block;
  margin-bottom: 18px;
}

.process-list h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-list p {
  color: #b0c4a9;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.industry-tags span {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font: 600 14px var(--display);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.industry-tags span:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--deep);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-card-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font: 600 13px var(--mono);
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  width: 100%;
  line-height: 1.2;
}

label small {
  text-transform: none;
  color: var(--muted);
  font-size: 11px;
}

input, select, textarea {
  width: 100%;
  font: 400 15px var(--display);
  color: var(--ink);
  background: #fff;
  border: 1px solid #d2ded0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow);
}

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

.contact-note {
  font: 13px var(--mono);
  color: var(--muted);
  margin-top: 20px;
}

/* Toast alert notification */
.toast-msg {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  background: var(--deep);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--emerald);
  box-shadow: var(--shadow-dark);
  font-size: 14px;
  max-width: 420px;
  animation: slideUp 0.3s var(--ease-spring);
}

.toast-msg.show {
  display: flex;
  align-items: center;
  gap: 14px;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-alt);
  color: #a8b99f;
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  align-items: start;
}

.brand-light {
  color: var(--white);
}

.footer-top p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-group h4 {
  font: 600 12px var(--mono);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--emerald);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 12px var(--mono);
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* Tablet & Smaller Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .hero-art-glass-card {
    max-width: 360px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile & Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .nav-wrap {
    height: 70px;
  }

  .menu-button {
    display: block;
  }

  nav#site-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--deep);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-dark);
    padding: 30px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    z-index: 90;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-spring);
  }

  nav#site-menu.open {
    display: flex;
    transform: translateX(0);
  }

  nav#site-menu a:not(.button) {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    padding-top: 120px;
    min-height: 0;
  }

  .hero-art {
    min-height: 320px;
  }

  .hero-floating-badge {
    display: none;
  }

  .hero-strip {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 16px 20px;
    gap: 16px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .intro-grid,
  .capability-grid,
  .industries-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

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

  .contact-card-wrap {
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .intro-points-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */
.legal-page {
  padding: 130px 0 90px;
  background: var(--cream);
  min-height: 80vh;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-back-nav {
  margin-bottom: 28px;
}

.legal-header {
  margin-bottom: 32px;
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 44px);
  color: var(--forest);
  margin: 8px 0 10px;
  line-height: 1.15;
}

.legal-date {
  font: 500 13px var(--mono);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 16px;
}

.legal-card section {
  margin-bottom: 36px;
}

.legal-card section:last-child {
  margin-bottom: 0;
}

.legal-card h2 {
  font-size: 22px;
  color: var(--forest);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.legal-card h3 {
  font-size: 17px;
  color: var(--forest-mid);
  margin: 18px 0 8px;
}

.legal-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.legal-card ul {
  margin: 12px 0 20px;
  padding-left: 24px;
}

.legal-card li {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.legal-card strong {
  color: var(--forest);
}

.legal-highlight-box {
  background: var(--cream-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--emerald);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 16px;
}

.legal-highlight-box p {
  margin: 0 0 6px;
}

.legal-highlight-box p:last-child {
  margin-bottom: 0;
}

.legal-highlight-box strong {
  color: var(--forest);
}

@media (max-width: 640px) {
  .legal-card {
    padding: 28px 20px;
  }
}
