/* Petronet AW1 — modern light-blue theme + Gemini AI desk */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700&display=swap");

:root {
  --petro-blue: #0098db;
  --petro-blue-dark: #0077af;
  --petro-blue-deep: #0a4d7a;
  --petro-red: #e30613;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --ice: #f8fcff;
  --navy: #0c2d4a;
  --navy-soft: #134067;
  --text: #1e3a52;
  --text-muted: #4a6b85;
  --border: rgba(0, 152, 219, 0.18);
  --shadow-sm: 0 2px 8px rgba(10, 77, 122, 0.06);
  --shadow-md: 0 8px 32px rgba(10, 77, 122, 0.1);
  --shadow-lg: 0 16px 48px rgba(10, 77, 122, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  /* Matched to hero-as350-sling.jpg sky (cerulean haze — not pastel) */
  --heli-sky-top: #5a96cc;
  --heli-sky-mid: #68a6d2;
  --heli-sky-low: #78b2d9;
  --heli-sky-haze: #86bddf;
  --heli-sky-wisp: rgba(255, 255, 255, 0.22);
}

* { box-sizing: border-box; }

body {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--heli-sky-top) 0%, var(--heli-sky-mid) 40%, var(--heli-sky-low) 100%);
  padding-top: 88px;
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Full-page bottom layer — matched sky + heli → sling image */
.site-heli-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--heli-sky-mid);
}

/* Same sky gradient + faint wispy streaks as the photo */
.site-heli-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 9% at 48% 36%, var(--heli-sky-wisp) 0%, transparent 72%),
    radial-gradient(ellipse 70% 7% at 32% 40%, rgba(255, 255, 255, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 65% 6% at 68% 34%, rgba(255, 255, 255, 0.14) 0%, transparent 70%),
    linear-gradient(180deg, var(--heli-sky-top) 0%, var(--heli-sky-mid) 32%, var(--heli-sky-low) 62%, var(--heli-sky-haze) 100%);
}

.site-heli-backdrop img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: min(72vw, 960px);
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  filter: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 6%,
    #000 14%,
    #000 86%,
    rgba(0, 0, 0, 0.5) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 6%,
    #000 14%,
    #000 86%,
    rgba(0, 0, 0, 0.5) 94%,
    transparent 100%
  );
}

/* Feather photo edges into matched sky colour */
.site-heli-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(90, 150, 204, 0.35) 0%,
      rgba(104, 166, 210, 0.15) 10%,
      transparent 22%
    ),
    linear-gradient(
      to right,
      var(--heli-sky-mid) 0%,
      rgba(104, 166, 210, 0.88) 4%,
      rgba(104, 166, 210, 0.45) 11%,
      transparent 23%,
      transparent 77%,
      rgba(104, 166, 210, 0.45) 89%,
      rgba(104, 166, 210, 0.88) 96%,
      var(--heli-sky-mid) 100%
    );
}

.site-shell {
  position: relative;
  z-index: 1;
}

h1, h2, h3, .hero_title {
  font-family: Montserrat, Inter, sans-serif;
  letter-spacing: -0.02em;
}

a { color: var(--petro-blue); transition: color 0.2s; }
a:hover { color: var(--petro-blue-dark); }

/* ── Header ── */
.site-header-prod {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(12, 45, 74, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(125, 211, 252, 0.15);
  padding: 10px 0;
}

.site-header-prod .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header-prod .brand img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}

.site-header-prod nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-header-prod nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.site-header-prod nav a:hover,
.site-header-prod nav a.active {
  color: #fff;
  background: rgba(0, 152, 219, 0.35);
}

.site-header-prod nav a.nav-portal {
  background: linear-gradient(135deg, var(--petro-blue), var(--sky-400));
  color: #fff;
  font-weight: 600;
}

.site-header-prod nav a.nav-portal:hover {
  background: linear-gradient(135deg, var(--petro-blue-dark), var(--petro-blue));
}

/* ── Hero ── */
.hero-prod {
  position: relative;
  min-height: 72vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Home hero — layered: copy over spreading heli photo */
.hero-home {
  min-height: calc(100vh - 88px);
  min-height: calc(100dvh - 88px);
  max-height: none;
  align-items: stretch;
  text-align: left;
  background: transparent;
}

.hero-home .hero-scrim {
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(12, 45, 74, 0.82) 0%,
      rgba(12, 45, 74, 0.5) 30%,
      rgba(12, 45, 74, 0.15) 46%,
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 62%,
      rgba(90, 150, 204, 0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.75rem 6.5rem;
  animation: hero-rise 0.9s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.45rem, 3.1vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.015em;
  margin: 0 0 2rem;
  max-width: 36rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-title-segment {
  color: #fff;
  white-space: nowrap;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--sky-200), var(--sky-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-title-dot {
  color: var(--sky-400);
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
  opacity: 0.95;
  user-select: none;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.hero-logo {
  height: clamp(72px, 10vw, 96px);
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 3px solid var(--petro-blue);
  padding-left: 1rem;
}

.hero-company {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-product {
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-300);
}

.hero-licence {
  margin-bottom: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-actions .btn-hero {
  margin: 0;
}

.hero-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid rgba(125, 211, 252, 0.35);
  background: rgba(12, 45, 74, 0.72);
  backdrop-filter: blur(12px);
}

.hero-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: flex-start;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--sky-200);
  white-space: nowrap;
}

.trust-chip i {
  color: var(--sky-400);
  font-size: 0.85rem;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-prod:not(.hero-home) .hero-scrim {
  display: none;
}

/* Generic / short page heroes */
.hero-prod:not(.hero-home) {
  background-size: cover;
  background-position: center;
}

.hero-prod:not(.hero-home)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 45, 74, 0.75) 0%,
    rgba(0, 152, 219, 0.45) 50%,
    rgba(10, 77, 122, 0.65) 100%
  );
}

.hero-prod:not(.hero-home) .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.hero-prod:not(.hero-home) h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-prod:not(.hero-home) p {
  font-size: 1.125rem;
  margin: 0 0 1.75rem;
  opacity: 0.95;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-prod .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(186, 230, 253, 0.45);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.hero-prod .badge-ai {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(147, 197, 253, 0.2));
  border-color: rgba(186, 230, 253, 0.6);
  margin-left: 0.5rem;
}

/* ── Buttons ── */
.btn-primary-prod {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--petro-blue), var(--sky-400));
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin: 0.25rem;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 152, 219, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-prod:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 152, 219, 0.45);
  color: #fff;
}

.btn-outline-prod {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin: 0.25rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.btn-outline-prod:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ── Split sections ── */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.section-split .copy {
  background: linear-gradient(145deg, var(--petro-blue) 0%, var(--petro-blue-deep) 100%);
  color: #fff;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-split .copy h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-split .copy p {
  opacity: 0.92;
  font-size: 1.05rem;
  max-width: 42ch;
}

.section-split .image {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

/* ── Content sections ── */
.section-white {
  padding: 4rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 252, 255, 0.72) 45%, rgba(248, 252, 255, 0.08) 72%, transparent 100%);
}

.section-blue-bg {
  background: linear-gradient(105deg, rgba(224, 242, 254, 0.88) 0%, rgba(240, 249, 255, 0.72) 45%, rgba(240, 249, 255, 0.06) 72%, transparent 100%);
  max-width: none;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-white h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.section-muted {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 1rem;
}

.section-blue-bg .section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Cards ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.card-prod {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card-prod:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 152, 219, 0.35);
}

.card-prod h3 {
  color: var(--petro-blue-deep);
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.card-prod p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.card-prod .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-100), var(--sky-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petro-blue);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

/* ── AI / Gemini section ── */
.section-ai {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--petro-blue-deep) 45%, #1565a8 100%);
  color: #fff;
  padding: 4.5rem 1.5rem;
}

.section-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(56, 189, 248, 0.25), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(147, 197, 253, 0.15), transparent);
  pointer-events: none;
}

.section-ai .ai-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-ai h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
  color: #fff;
}

.section-ai .ai-lead {
  opacity: 0.92;
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  max-width: 48ch;
}

.gemini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(186, 230, 253, 0.35);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.gemini-badge i {
  color: var(--sky-300);
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ai-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(186, 230, 253, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  backdrop-filter: blur(8px);
}

.ai-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky-400), var(--petro-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.ai-feature h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.ai-feature p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.ai-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(186, 230, 253, 0.25);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
}

.ai-visual .pulse-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-400), #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.15), 0 0 0 16px rgba(56, 189, 248, 0.08);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.15), 0 0 0 16px rgba(56, 189, 248, 0.08); }
  50% { box-shadow: 0 0 0 12px rgba(56, 189, 248, 0.2), 0 0 0 24px rgba(56, 189, 248, 0.05); }
}

.ai-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-visual li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-visual li:last-child { border-bottom: none; }

.ai-visual li i {
  color: var(--sky-300);
  width: 18px;
  text-align: center;
}

/* ── Contact offices ── */
.contact-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.office-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
  background: linear-gradient(145deg, #fff, var(--sky-50));
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.office-card:hover {
  border-color: rgba(0, 152, 219, 0.35);
  box-shadow: var(--shadow-md);
}

.office-card h3 {
  margin: 0 0 0.4rem;
  color: var(--petro-blue-deep);
  font-size: 1.05rem;
}

.office-card p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Services / content lists ── */
.content-prose h2 {
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.content-prose h2:first-of-type { margin-top: 0; }

.content-prose ul {
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.content-prose ul li { margin-bottom: 0.4rem; }

.content-prose > p {
  color: var(--text-muted);
}

/* ── Licence strip ── */
.licence-strip {
  background: linear-gradient(105deg, rgba(224, 242, 254, 0.82) 0%, rgba(240, 249, 255, 0.55) 50%, rgba(240, 249, 255, 0.1) 100%);
  border-top: 3px solid var(--petro-blue);
  text-align: center;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.licence-strip strong { color: var(--navy); }

/* ── Footer ── */
.site-footer-prod {
  background: linear-gradient(180deg, var(--navy) 0%, #081f33 100%);
  color: #fff;
  padding: 3.5rem 1.5rem 1.75rem;
}

.site-footer-prod .footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.site-footer-prod a {
  color: var(--sky-200);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-prod a:hover { color: #fff; }

.site-footer-prod .footer-tagline {
  color: var(--sky-300);
  font-size: 0.875rem;
  opacity: 0.85;
}

.site-footer-prod .footer-ai {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--sky-300);
  opacity: 0.7;
}

.site-footer-prod .footer-bottom-bar {
  max-width: 1140px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(125, 211, 252, 0.15);
  font-size: 0.8rem;
  color: var(--sky-300);
  opacity: 0.65;
  text-align: center;
}

/* ── Page hero (shorter) ── */
.hero-prod.hero-short {
  min-height: 38vh;
  max-height: 420px;
}

@media (max-width: 900px) {
  .section-ai .ai-inner { grid-template-columns: 1fr; }
  .ai-visual { order: -1; }
}

@media (max-width: 768px) {
  body { padding-top: 110px; }
  .section-split { grid-template-columns: 1fr; }
  .site-header-prod .brand img { height: 52px; }
  .section-white, .section-blue-bg { padding: 3rem 1.25rem; }
  .hero-home { text-align: center; }
  .hero-content { align-items: center; text-align: center; }
  .hero-brand { justify-content: center; flex-wrap: wrap; }
  .hero-brand-text { border-left: none; border-top: 3px solid var(--petro-blue); padding-left: 0; padding-top: 0.75rem; align-items: center; text-align: center; }
  .hero-title { justify-content: center; max-width: none; }
  .hero-actions { justify-content: center; }
  .hero-trust-inner { justify-content: center; }
  .site-heli-backdrop img {
    max-width: 98vw;
    opacity: 1;
  }
  .site-heli-backdrop::after {
    background:
      linear-gradient(
        to bottom,
        rgba(90, 150, 204, 0.4) 0%,
        rgba(104, 166, 210, 0.2) 10%,
        transparent 22%
      ),
      linear-gradient(
        to right,
        var(--heli-sky-mid) 0%,
        rgba(104, 166, 210, 0.9) 6%,
        transparent 20%,
        transparent 80%,
        rgba(104, 166, 210, 0.9) 94%,
        var(--heli-sky-mid) 100%
      );
  }
}
