/* ============================================================
   TESTA — Global Stylesheet
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --navy:   #3489E9;
  --navy-mid: #3489E9;
  --lime-dark:#9acc2e;
  --white:   #ffffff;
  --off-white:#f4f4f0;
  --gray:    #8a8e98;
  --gray-light:#e8e8e3;
  --text:    #0b2b67;

  --font-display: 'Arial', sans-serif; /* Changed from Bebas Neue */
  --line: #abee18;
  --font-serif:   'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 80px;
  --max-w: 1280px;
  --section-pad: 100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: var(--section-pad) 0; }
.lime { color: var(--lime); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.btn-lime {
  background: var(--lime);
  color: var(--navy);
}
.btn-lime:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(4px); }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;

  color: var(--white);
  text-shadow: var(--line)
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--lime); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--lime); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--lime);
  color: var(--navy) !important;
  padding: 10px 22px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--lime-dark); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease-in-out;
  position: absolute;
}

/* Position the three bars */
.nav-hamburger span:nth-child(1) { transform: translateY(-8px); }
.nav-hamburger span:nth-child(2) { opacity: 1; }
.nav-hamburger span:nth-child(3) { transform: translateY(8px); }

/* Morph to X when aria-expanded="true" (set by your JS) */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}


/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; /* Full Screen */
  background:  #3489E9;
  z-index: 999;
  flex-direction: column;
  justify-content: center; /* Centers links vertically */
  align-items: center;
  padding: 40px;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  color: var(--white);
  font-size: 32px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--lime); }

/* ── Hero ── */

/* ── Hero Base ── */
.hero-primary {
  background: var(--navy); /* This fixes the white screen */
  position: relative;
  overflow: hidden;
}

.hero-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  align-items: end; /* SVGs stand on bottom */
  z-index: 1;
}

.hero-text-wrapper {
  display: flex;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  z-index: 2; /* Ensures text is above background patterns */
}

/* This forces text to respect max-width while grid is full width */
.hero-container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Text Alignment & Inward Spacing ── */
.hero-container-inward {
  max-width: 1200px; /* Adjust this to push the text further inward */
  width: 100%;
  margin: 0 auto;
  padding: 0 100px auto ;   /* Increased padding pushes text away from display edges */
  display: flex;
  flex-direction: column;

}

.hero-content.content-right {
  text-align: right;
  margin-left: auto;
  max-width: 900px;  /* Limits the text width to force specific wrapping */
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* Adjust the last decimal (0.5) to make it darker or lighter */
  background: rgba(11, 31, 58, 0.5); 
  /* Or use a gradient for a more "cinematic" look */
  background: linear-gradient(
    to right, 
    rgba(11, 31, 58, 0.7) 0%, 
    rgba(52, 137, 233, 0.3) 100%
  );
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Helps text readability */
  z-index: 0;
}

/* Typography Fix */
.hero-content h1 {
  font-family: 'Arial', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 100;
  letter-spacing: -0.01em; /* Tighter spacing for Arial */
  text-transform: none;
}

.hero-content h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-eyebrow {
  color: var(--white);
  opacity: 0.8;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.hero-full-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 90%;
  align-items: end; /* SVGs stand on the bottom/hero */
  z-index: 2;
}

/* ── Hero B (Secondary) ── */
.hero-secondary {
  background-color: #3489E9; /* This restores the blue color */
  position: relative;
  overflow: hidden;
}

.hero-secondary .section-title {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  text-transform: none;
}

/* Ensure the heading in the second hero is white */
.hero-secondary .section-title-white {
  color: var(--white);
}

/* Ensure text stays within the site's max-width while background/images expand */
.hero-text-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.content-right { margin-left: auto; text-align: right; max-width: 600px; }
.content-left { margin-right: auto; text-align: left; max-width: 600px; }

/* SVG Sizing and "Standing" */
.hero-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Stands on the base */
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none; /* Allows breakout */
}

.lime-text {
  color: #B9E742;               /* The exact lime color from your stats bar */
}

.svg-primary { scale: 1.1; transform-origin: bottom left; } /* Slightly larger */
.svg-secondary { scale: 1.0; transform-origin: bottom right; }

/* ── Mobile Overrides ── */
@media (max-width: 768px) {
  .hero-full-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-text-wrapper {
    padding-top: 100px;
    height: auto;
    min-height: 60vh;
    justify-content: center;
  }

  .hero-content {
    text-align: justify;
    max-width: 70%;
  }

  /* SVG stands at the very bottom on mobile after the text */
  .hero-visual {
    order: 2; 
    width: 100vw;
    margin-left: -24px; 
  }

  .hero-actions {
    display: flex;
    justify-content: flex-start; /* Left justified to text block */
    margin-top: 20px;
  }
}

/* ── Responsive Mobile Fix ── */
@media (max-width: 768px) {
  .hero-container-inward {
    padding: 0 24px;
  }
  
  .content-right, .content-left {
    max-width: 100%;
    text-align: justify; /* Justified text on mobile */
  }
}

/* ── Nav Color for Hero 2 ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent; /* Invisible initially on Hero 1 */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.on-hero-b {
  background-color: #3489E9 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}


/* ── Key Figures Section ── */
.key-figures {
  background: var(--gray-light); /* Matches the light gray background in screen */
  text-align: left;
}

.blue-text {
  color: #3489E9;
}

.figures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #3489E9; /* Outer border */
  margin: 40px 100px auto 100px;
}

.figure-card {
  background: var(--white);
  padding: 60px 40px;
  text-align: center;
  border: 0.5px solid #3489E9; /* Inner grid lines */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 200px;
  
  transition: background 0.3s ease;
}

/* Hover Effect */
.figure-card:hover {
  background: #B9E742;
}

.figure-num {
  font-family: var(--font-body); /* Using Sans as per screenshot */
  font-size: 64px;
  font-weight: 500;
  color: #3489E9;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: auto;    /* Pushes content to center vertically if desired */
}

.figure-num small {
  font-size: 24px;
  vertical-align: middle;
}

.figure-label {
  font-size: 16px;
  color: #1a1e2e;
  line-height: 1.4;
  max-width: 250px;
  margin-bottom: auto;
}

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .figures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Section Headers ── */
.section-header { margin-bottom: 60px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lime-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--lime-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  color: var(--navy);
  line-height: 1.0;
  letter-spacing: 0.02em;
}
.section-title-white { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ── About Strip ── */
.about-strip {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.05;
}
.about-strip-text p {
  color: #4a4f60;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-strip-visual {
  position: relative;
}
.tank-illustration {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Values ── */
.values-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.value-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 28px;
  border-top: 3px solid transparent;
  transition: all 0.3s;
  cursor: default;
}
.value-card:hover {
  background: rgba(185,231,66,0.08);
  border-top-color: var(--lime);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--navy); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── News Cards ── */
.news-section { padding: var(--section-pad) 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.news-card {
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  overflow: hidden;
}
.news-card:hover {
  box-shadow: 0 12px 40px rgba(11,31,58,0.12);
  transform: translateY(-4px);
}
.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-img svg { width: 60px; opacity: 0.3; color: var(--lime); }
.news-card-body { padding: 28px; }
.news-date {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-card-body h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.news-read-more:hover { gap: 14px; color: var(--lime-dark); }

/* ── Terminals Map ── */
.terminals-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
}
.terminals-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.terminals-map-area {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
}
.terminal-list { display: flex; flex-direction: column; gap: 0; }
.terminal-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.2s;
}
.terminal-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.terminal-item:hover .terminal-item-name { color: var(--lime); }
.terminal-country {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.terminal-item-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.terminal-capacity {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── CTA Band ── */
.cta-band {
  background: var(--lime);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.05;
  max-width: 560px;
}

/* ── Footer ── */
.site-footer {
  background: var(--text);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-text { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.12em; color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(185,231,66,0.07), transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}

/* ── About Page ── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.leader-card { text-align: center; }
.leader-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-avatar-initials {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(185,231,66,0.3);
  letter-spacing: 0.05em;
}
.leader-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.leader-card p {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Sustainability Page ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.pillar-card {
  background: var(--off-white);
  padding: 48px 36px;
  border-bottom: 4px solid transparent;
  transition: border-color 0.3s;
}
.pillar-card:hover { border-bottom-color: var(--lime); }
.pillar-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--lime-dark);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -20px;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.pillar-card p { font-size: 15px; color: #5a5f70; line-height: 1.75; }

/* ── Careers Page ── */
.jobs-list { margin-top: 60px; display: flex; flex-direction: column; gap: 0; }
.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: all 0.2s;
  gap: 20px;
}
.job-item:first-child { border-top: 1px solid var(--gray-light); }
.job-item:hover { padding-left: 12px; }
.job-info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--off-white);
  color: var(--navy);
}
.job-tag.highlight { background: var(--lime); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* Counter animation */
.count-up { transition: all 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(11,31,58,0.15); padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .terminals-layout { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .news-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(42px, 10vw, 72px); }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
}