/* =============================================
   BETA STORAGE — GLOBAL STYLES
   Corporate & Professional Oil & Gas Theme
   ============================================= */

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3460;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f5e6b8;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --light-gray: #e8e4dc;
  --mid-gray: #9a9589;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 30px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 60px rgba(10,22,40,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

/* ---- TYPOGRAPHY ---- */
.gold { color: var(--gold); }
.section-tag {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-tag.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 540px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-desc { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 1rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  transition: var(--transition);
  position: relative;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links .arrow { font-size: 0.65rem; margin-left: 2px; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  padding-left: 2rem;
}
.nav-cta {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul > li > a,
.mobile-menu ul > li > span {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu ul > li > a:hover,
.mobile-menu ul > li > span:hover { color: var(--gold); }
.mobile-dropdown ul {
  display: none;
  padding-left: 1rem;
}
.mobile-dropdown.expanded ul { display: block; }
.mobile-dropdown ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.78) 50%,
    rgba(10,22,40,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10rem 2rem 4rem;
  max-width: 720px;
  align-self: flex-start;
  width: 100%;
}
.hero-tag {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}
.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10,22,40,0.85);
  border-top: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
  margin-top: auto;
}
.stat {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--navy);
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.intro-strip p {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* ---- SERVICES ---- */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--light-gray);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: block;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  background: var(--navy);
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
  transition: var(--transition);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-link {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.65); }

/* ---- ABOUT ---- */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-block {
  position: relative;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.5rem 2rem;
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.badge-text {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0.3rem;
}
.about-content { padding-right: 2rem; }
.about-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.pillar p { font-size: 0.88rem; color: var(--mid-gray); margin: 0; }

/* ---- TERMINALS ---- */
.terminals-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.terminals-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.terminals-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.terminals-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.8) 60%,
    rgba(10,22,40,0.6) 100%
  );
}
.terminals-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.terminals-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 540px;
}
.terminals-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(201,168,76,0.3);
  padding-top: 2.5rem;
}
.th-item strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.th-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ---- HSE ---- */
.hse-section { background: var(--off-white); }
.hse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hse-content .section-title { color: var(--navy); }
.hse-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hse-list {
  list-style: none;
  margin-bottom: 2rem;
}
.hse-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--light-gray);
}
.hse-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hse-image-block { position: relative; }
.hse-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hse-cert {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.cert-item {
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.2rem;
  text-align: center;
}

/* ---- PARTNERS ---- */
.partners-section {
  background: var(--navy);
  padding: 3rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.partners-label {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 2rem;
}
.partners-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partner-item {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}
.partner-item:hover { color: rgba(255,255,255,0.6); }

/* ---- CTA ---- */
.cta-section {
  background: var(--gold);
  padding: 5rem 0;
}
.cta-content { text-align: center; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(10,22,40,0.7);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cta-section .btn-primary:hover {
  background: transparent;
  color: var(--navy);
}
.cta-section .btn-outline-light {
  border-color: rgba(10,22,40,0.4);
  color: var(--navy);
}
.cta-section .btn-outline-light:hover {
  border-color: var(--navy);
}

/* ---- FOOTER ---- */
.footer {
  background: #060e1c;
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-socials a:hover { color: var(--gold); }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links ul li {
  margin-bottom: 0.7rem;
}
.footer-links ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.92), rgba(10,22,40,0.65));
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .terminals-highlights { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .hse-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-block { order: -1; }
  .about-badge { right: 0; }
  .hse-cert { left: 0; }
  .hero-stats { flex-wrap: wrap; }
  .stat { flex: 1 1 40%; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .terminals-highlights { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .partners-bar { gap: 1.5rem; }
}
