/* ============================================
   ENEROI.COM — Main Stylesheet
   Premium industrial design inspired by wercomfg.com
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg: #FAFAF8;
  --color-gold: #B8943E;
  --color-gold-light: #D4AF5A;
  --color-gold-dark: #9A7A30;
  --color-navy: #0B1D3A;
  --color-navy-mid: #142B4F;
  --color-navy-light: #1C3A6B;
  --color-white: #FFFFFF;
  --color-text: #2D2D2D;
  --color-text-light: #6B6B6B;
  --color-border: #E5E5E0;
  --color-section-alt: #F3F3EF;
  --color-success: #2E7D4F;
  --color-success-light: #E8F5EC;

  --font-heading: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --header-height: 80px;
  --max-width: 1280px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-navy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ---------- Eyebrow / Section Label (// PATTERN) ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.eyebrow::before {
  content: '// ';
}

.eyebrow--light {
  color: var(--color-gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 4px 20px -8px rgba(184, 148, 62, 0.5);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -8px rgba(184, 148, 62, 0.6);
}

.btn-ghost {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-navy-mid);
  transform: translateY(-2px);
}

.btn svg,
.btn .btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header .logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition), opacity var(--transition);
}

/* Hero state: white text */
.site-header--hero .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.site-header--hero .nav-links a:hover {
  color: var(--color-white);
}

/* Scrolled state: dark text + glass bg */
.site-header--scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header--scrolled .nav-links a {
  color: var(--color-text);
}

.site-header--scrolled .nav-links a:hover {
  color: var(--color-gold);
}

.site-header--scrolled .logo img {
  /* Keep gold logo as-is on light background */
}

/* Header CTA */
.nav-cta {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header--scrolled .nav-toggle span {
  background: var(--color-navy);
}

/* On inner pages (no hero video) default to scrolled look */
.site-header--inner {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header--inner .nav-links a {
  color: var(--color-text);
}

.site-header--inner .nav-links a:hover {
  color: var(--color-gold);
}

.site-header--inner .logo img {
  /* Keep gold logo as-is on light background */
}

.site-header--inner .nav-toggle span {
  background: var(--color-navy);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: var(--color-gold) !important;
  }

  .nav-cta {
    margin-top: 16px;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity 1.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(11, 29, 58, 0.95) 0%,
    rgba(11, 29, 58, 0.85) 40%,
    rgba(11, 29, 58, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  max-width: 720px;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--color-navy);
  padding: calc(var(--header-height) + 60px) 0 60px;
  text-align: center;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  color: var(--color-gold-light);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.stats-bar--hero {
  margin-top: -1px;
  background: var(--color-navy);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.stats-bar--hero .stat-item {
  border-right-color: rgba(255, 255, 255, 0.1);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-white);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  display: block;
}

/* Dark navy stats bar (used on case studies page) */
.stats-bar--dark {
  background: var(--color-navy);
  backdrop-filter: none;
}

.stats-bar--dark .stat-item {
  border-right-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--color-section-alt);
}

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

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

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* ---------- Logo Marquee ---------- */
.marquee-section {
  padding: 24px 0 40px;
  border-bottom: 1px solid var(--color-border);
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  margin: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all var(--transition);
  height: 72px;
  min-width: 160px;
}

.marquee-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  border-color: var(--color-gold);
}

.marquee-item img {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.marquee-item span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Cards Grid ---------- */
.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .card-grid--3,
  .card-grid--2,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Value Prop Cards ---------- */
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gold);
}

.value-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.value-card p {
  font-size: 0.9375rem;
}

/* ---------- Focus Area Cards (Dark Section) ---------- */
.focus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.focus-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.focus-card .focus-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.focus-card h3 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.focus-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ---------- Case Study Cards ---------- */
.case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: 4px 12px 12px 4px;
  padding: 36px 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
  border-color: var(--color-border);
  border-left-color: var(--color-gold);
}

.case-card-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.case-card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.case-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

.case-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 24px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(184, 148, 62, 0.1);
  color: var(--color-gold-dark);
  font-weight: 500;
}

/* Metrics comparison */
.metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-box {
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}

.metric-box--guaranteed {
  background: var(--color-section-alt);
  border: 1px solid var(--color-border);
}

.metric-box--actual {
  background: var(--color-success-light);
  border: 1px solid rgba(46, 125, 79, 0.15);
}

.metric-box .metric-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.metric-box--guaranteed .metric-label {
  color: var(--color-text-light);
}

.metric-box--actual .metric-label {
  color: var(--color-success);
}

.metric-box .metric-value {
  font-family: var(--font-mono);
  font-size: 1.625rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.metric-box--guaranteed .metric-value {
  color: var(--color-text);
}

.metric-box--actual .metric-value {
  color: var(--color-success);
}

.metric-box .metric-desc {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* Footnote on card (M&V status, etc.) */
.case-card-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 12px;
  line-height: 1.4;
}

/* View details link */
.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: all var(--transition);
}

.case-card-link:hover {
  color: var(--color-gold-dark);
  gap: 10px;
}

/* Case study quote */
.case-quote {
  margin-top: 20px;
  padding: 16px;
  background: var(--color-section-alt);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.case-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.8125rem;
}

/* ---------- Process / Timeline ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--color-border);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    text-align: left;
    padding-left: 80px;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

/* ---------- Guarantee CTA Section ---------- */
.guarantee-section {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 148, 62, 0.1), transparent 70%);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.guarantee-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-item .g-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.guarantee-item h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.guarantee-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

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

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-gold);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 62, 0.15);
}

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

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

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

/* What to expect steps */
.expect-steps {
  counter-reset: expect;
}

.expect-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.expect-step::before {
  counter-increment: expect;
  content: counter(expect);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.125rem;
}

.expect-step h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.expect-step p {
  font-size: 0.875rem;
}

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

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

.sidebar-stats {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
}

.sidebar-stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-stat:last-child {
  border-bottom: none;
}

.sidebar-stat .stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
}

.sidebar-stat .stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 2px;
  display: block;
  text-transform: none;
  letter-spacing: 0;
}

/* Industries cards on dark bg */
.industry-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: flex-end;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 29, 58, 0.9) 0%,
    rgba(11, 29, 58, 0.4) 50%,
    rgba(11, 29, 58, 0.15) 100%
  );
  transition: background var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(11, 29, 58, 0.85) 0%,
    rgba(11, 29, 58, 0.3) 50%,
    rgba(11, 29, 58, 0.1) 100%
  );
}

.industry-card h3 {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-size: 1rem;
  padding: 20px;
  width: 100%;
}

/* ---------- Team Section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--color-border);
  transition: all var(--transition);
  background: var(--color-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member:hover .team-photo {
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo .initials {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  opacity: 0.6;
  user-select: none;
}

.team-member h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.team-member .team-title {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ---------- How It Works - Alternating Rows ---------- */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}

.alt-row:last-child {
  border-bottom: none;
}

.alt-row:nth-child(even) .alt-row-content {
  order: -1;
}

.alt-row-visual {
  background: var(--color-section-alt);
  border-radius: 16px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.alt-row-visual .area-icon {
  font-size: 4rem;
  opacity: 0.4;
}

.alt-row-content h3 {
  margin-bottom: 16px;
}

.alt-row-content p {
  margin-bottom: 16px;
}

.alt-row-content ul {
  list-style: none;
  padding: 0;
}

.alt-row-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.alt-row-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

@media (max-width: 768px) {
  .alt-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .alt-row:nth-child(even) .alt-row-content {
    order: 0;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  transition: color var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-question .faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-light);
}

.faq-item.active .faq-question {
  color: var(--color-gold);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 28px 20px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: var(--color-section-alt);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Direct Contact Block ---------- */
.direct-contact {
  margin-top: 40px;
  padding: 28px;
  background: var(--color-section-alt);
  border-radius: 12px;
}

.direct-contact h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.direct-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.direct-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ---------- Environmental Impact ---------- */
.env-stat {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.env-stat strong {
  color: var(--color-success);
}

/* ---------- Animation Placeholder ---------- */
.animation-placeholder {
  background: var(--color-section-alt);
  border: 2px dashed var(--color-border);
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  color: var(--color-text-light);
}

.animation-placeholder h3 {
  margin-bottom: 8px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }

/* ---------- Five-column grid for focus cards ---------- */
.card-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
  .card-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .card-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Certifications Grid ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cert-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 4px 4px 12px 12px;
  padding: 36px 28px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.12);
}

.cert-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  margin-bottom: 24px;
}

.cert-logo img {
  max-height: 130px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cert-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cert-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer sister-site line ---------- */
.footer-sister {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-sister a {
  color: var(--color-gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}
.footer-sister a:hover { color: var(--color-white); gap: 8px; }
.footer-sister .btn-arrow { display: inline-block; }

/* ---------- Lighting cross-link callout (How It Works) ---------- */
.lighting-callout {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(184, 148, 62, 0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}
.lighting-callout a {
  color: var(--color-gold-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(184, 148, 62, 0.4);
  transition: color var(--transition);
}
.lighting-callout a:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Case Study Modal
   ============================================================ */

/* Clickable state for blue-template cards */
.case-card--modal { cursor: pointer; }
.case-card--modal:hover .case-card-link--modal { gap: 10px; }

/* Backdrop + dialog container */
.case-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.case-modal.is-open { display: flex; }

.case-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 58, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: caseModalFadeIn 0.2s ease-out;
}

.case-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 1040px;
  background: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.45);
  animation: caseModalSlideIn 0.25s ease-out;
  margin: auto 0;
}

.case-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.case-modal__close:hover {
  background: var(--color-white);
  color: var(--color-gold);
  transform: rotate(90deg);
}

.case-modal__body {
  max-height: none;
}

/* Scroll lock on body when modal is open */
body.case-modal-open { overflow: hidden; }

@keyframes caseModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes caseModalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Blue Banner (matches blue-template screenshots) ---------- */
.cs-banner {
  background: linear-gradient(135deg, #2E6DB8 0%, #3F87D9 100%);
  color: var(--color-white);
  padding: 48px 56px 40px;
}
.cs-banner__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 12px;
}
.cs-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cs-banner__meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ---------- Two-column Content ---------- */
.cs-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding: 44px 56px 40px;
  align-items: start;
}

.cs-main { min-width: 0; }

.cs-section { margin-bottom: 32px; }
.cs-section:last-child { margin-bottom: 0; }

.cs-section h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cs-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
}

.cs-section ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.cs-section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}
.cs-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}
.cs-section ul li strong {
  color: var(--color-navy);
  font-weight: 700;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

/* Per-plant block (Boar's Head) */
.cs-plant {
  margin: 16px 0 20px;
  padding: 16px 20px;
  background: var(--color-section-alt);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
}
.cs-plant h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cs-plant ul { margin-top: 0; }
.cs-plant ul li { font-size: 0.875rem; margin-bottom: 6px; }

/* ---------- Sticky Highlights Sidebar ---------- */
.cs-highlights {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 12px;
  padding: 28px 28px 20px;
  position: sticky;
  top: 20px;
}
.cs-highlights h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-light);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cs-metric {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cs-metric:last-child { border-bottom: none; }
.cs-metric .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
.cs-metric .value {
  font-family: var(--font-mono);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1;
}
.cs-metric .value--guaranteed { color: var(--color-white); }
.cs-metric .value--actual { color: var(--color-gold-light); }
.cs-metric .note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

/* ---------- Environmental Impact Band ---------- */
.cs-env-block {
  background: var(--color-section-alt);
  padding: 36px 56px;
  border-top: 1px solid var(--color-border);
}
.cs-env-block h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
  margin-bottom: 20px;
}
.cs-env {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cs-env-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-env-item .env-value {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}
.cs-env-item .env-label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Modal CTA footer ---------- */
.cs-modal-cta {
  padding: 32px 56px 48px;
  text-align: center;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

/* ---------- Mobile Responsive (modal) ---------- */
@media (max-width: 767px) {
  .case-modal { padding: 0; }
  .case-modal__dialog { border-radius: 0; max-width: 100%; min-height: 100vh; }
  .case-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .cs-banner { padding: 32px 24px 28px; }
  .cs-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
  .cs-highlights { position: static; padding: 22px; }
  .cs-env-block { padding: 28px 24px; }
  .cs-env { grid-template-columns: 1fr; gap: 20px; }
  .cs-modal-cta { padding: 24px 24px 36px; }
}
