/* ============================================================
   VIRIDIS OCEAN SHIPPING — PREMIUM UPGRADE
   Inspired by: PartYard, Schottel, SKF Marine
   ============================================================ */

/* ── PREMIUM TOKENS ── */
:root {
  --accent-vivid:  #00E090;
  --surface-card:  #111111;
  --surface-dark:  #080808;
  --gradient-hero: linear-gradient(160deg, #060606 0%, #0f0f0f 50%, #060606 100%);
  --font-display:  'Space Grotesk', sans-serif;
}

/* ═══════════════════════════════════════════════════
   HERO V2 — FULL SCREEN AUTHORITY
═══════════════════════════════════════════════════ */
.hero-v2 {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero-v2-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(0,179,122,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 5% 80%,  rgba(0,179,122,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-v2-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,179,122,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,122,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.hero-v2-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-v2-content {
  padding: 100px 0 0;
}
.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(0,179,122,0.35);
  border-radius: 100px;
  background: rgba(0,179,122,0.08);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-v2-badge .pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.hero-v2-badge .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse-ring 2s ease-out infinite;
}
.hero-v2-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.hero-v2-headline .line-solid { color: #fff; display: block; }
.hero-v2-headline .line-green {
  color: var(--accent);
  display: block;
}
.hero-v2-headline .line-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
  color: transparent;
  display: block;
}
.hero-v2-row {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.hero-v2-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-v2-card {
  background: rgba(16,16,16,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-v2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,179,122,0.4), transparent);
}
.hero-v2-card-stat {
  margin-bottom: 20px;
}
.hero-v2-card-stat:last-child { margin-bottom: 0; }
.hero-v2-card-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.hero-v2-card-num em { color: var(--accent); font-style: normal; }
.hero-v2-card-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}
.hero-v2-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 16px 0;
}
.hero-v2-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-v2-ticker {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-dim);
  transition: var(--transition);
  text-decoration: none;
}
.hero-v2-ticker:last-child { border-right: none; }
.hero-v2-ticker:hover { color: var(--accent); background: rgba(0,179,122,0.04); }
.hero-v2-ticker svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   GREEN STATEMENT BAND
═══════════════════════════════════════════════════ */
.green-band {
  background: var(--accent);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.green-band-track {
  display: flex;
  gap: 0;
  animation: marquee-fast 18s linear infinite;
  white-space: nowrap;
}
.green-band-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  flex-shrink: 0;
}
.green-band-item .dot-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  flex-shrink: 0;
}
@keyframes marquee-fast {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   SERVICE PANELS — ACCORDION
═══════════════════════════════════════════════════ */
.service-panels {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.service-panel {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.service-panel.open,
.service-panel:hover {
  border-color: rgba(0,179,122,0.3);
}
.service-panel-header {
  display: grid;
  grid-template-columns: 72px 1fr 100px 44px;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s;
}
.service-panel-header:hover { background: rgba(255,255,255,0.03); }
.service-panel-num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.service-panel-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}
.service-panel-tag {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
}
.service-panel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}
.service-panel.open .service-panel-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.service-panel-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-panel.open .service-panel-body {
  max-height: 300px;
}
.service-panel-inner {
  padding: 0 28px 28px;
  padding-left: calc(28px + 72px + 20px);
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: start;
}
.service-panel-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-panel-cta {
  text-align: right;
}

/* ═══════════════════════════════════════════════════
   IMPACT NUMBERS
═══════════════════════════════════════════════════ */
.impact-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-card);
}
.impact-item {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.impact-item::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,179,122,0.12) 0%, transparent 70%);
}
.impact-item:last-child { border-right: none; }
.impact-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.impact-big em { color: var(--accent); font-style: normal; }
.impact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.impact-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   MAGAZINE SECTORS GRID
═══════════════════════════════════════════════════ */
.sectors-mag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 260px;
  gap: 12px;
}
.sectors-mag .mag-card { border-radius: 16px; overflow: hidden; position: relative; }
.sectors-mag .mag-card:nth-child(1) { grid-row: 1 / 3; }

.mag-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.mag-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.mag-card:hover .mag-card-bg { transform: scale(1.05); }
.mag-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,8,15,0.92) 0%, rgba(4,8,15,0.4) 50%, rgba(4,8,15,0.1) 100%);
  transition: opacity 0.3s;
}
.mag-card:hover .mag-card-overlay { opacity: 0.85; }
.mag-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
}
.mag-card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0,179,122,0.2);
  border: 1px solid rgba(0,179,122,0.4);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.mag-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.mag-card-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.mag-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
}
.mag-card:hover .mag-card-arrow { opacity: 1; transform: translateY(0); }

/* Gradient backgrounds for mag cards (no real photos) */
.mag-bg-1 { background: linear-gradient(145deg, #0d1a0f 0%, #152a1a 55%, #0a130d 100%); }
.mag-bg-2 { background: linear-gradient(145deg, #0f1a10 0%, #1c3020 55%, #0a140b 100%); }
.mag-bg-3 { background: linear-gradient(145deg, #101010 0%, #1c1c1c 55%, #0a0a0a 100%); }
.mag-bg-4 { background: linear-gradient(145deg, #120e08 0%, #221a0a 55%, #0c0a05 100%); }
.mag-bg-5 { background: linear-gradient(145deg, #0b0f14 0%, #141c24 55%, #080c10 100%); }
.mag-bg-6 { background: linear-gradient(145deg, #0a1410 0%, #132418 55%, #070f0c 100%); }

/* Abstract pattern overlay for depth */
.mag-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,179,122,0.08) 0%, transparent 60%),
    radial-gradient(circle 200px at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 100%);
}

/* ═══════════════════════════════════════════════════
   PROCESS — PREMIUM
═══════════════════════════════════════════════════ */
.process-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-card);
}
.process-p-step {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.process-p-step:last-child { border-right: none; }
.process-p-step:hover { background: rgba(0,179,122,0.04); }
.process-p-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,179,122,0.12);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px rgba(0,179,122,0.2);
}
.process-p-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-p-icon svg { width: 22px; height: 22px; color: var(--accent); }
.process-p-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.process-p-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.process-p-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
}
.process-p-step:hover .process-p-line { background: var(--accent); }
.process-p-step:nth-child(1) .process-p-line { background: var(--accent); }

/* ═══════════════════════════════════════════════════
   WHY VIRIDIS — SPLIT
═══════════════════════════════════════════════════ */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 560px;
}
.why-split-left {
  background: linear-gradient(135deg, #0a0a0a 0%, #181818 100%);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-split-left::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,179,122,0.15) 0%, transparent 65%);
}
.why-split-left::after {
  content: 'VS';
  position: absolute;
  top: 30px; right: 30px;
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(0,179,122,0.04);
  line-height: 1;
  letter-spacing: -0.05em;
}
.why-split-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.why-split-big em { color: var(--accent); font-style: normal; display: block; }
.why-split-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
  max-width: 300px;
  line-height: 1.6;
}
.why-split-right {
  background: var(--surface-card);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.why-row:first-child { padding-top: 0; }
.why-row:last-child { border-bottom: none; padding-bottom: 0; }
.why-row-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-row-icon svg { width: 18px; height: 18px; color: var(--accent); }
.why-row h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 4px; }
.why-row p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   BRANDS STRIP
═══════════════════════════════════════════════════ */
.brands-strip {
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-strip::before, .brands-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px; z-index: 2;
}
.brands-strip::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.brands-strip::after { right: 0; background: linear-gradient(270deg, var(--dark), transparent); }
.brands-scroll {
  display: flex;
  gap: 12px;
  animation: marquee-fast 30s linear infinite;
  width: max-content;
}
.brand-pill {
  flex-shrink: 0;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  white-space: nowrap;
}
.brand-pill:hover {
  border-color: rgba(0,179,122,0.4);
  color: var(--accent);
  background: rgba(0,179,122,0.06);
}

/* ═══════════════════════════════════════════════════
   BIG CTA — PREMIUM
═══════════════════════════════════════════════════ */
.cta-premium {
  background: var(--accent);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-premium::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-premium::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
.cta-premium-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  display: block;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-premium-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #000;
  position: relative; z-index: 1;
}
.cta-premium-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.btn-dark {
  background: rgba(0,0,0,0.85);
  color: #fff;
  border: none;
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-white-outline {
  background: transparent;
  color: rgba(0,0,0,0.7);
  border: 1.5px solid rgba(0,0,0,0.25);
}
.btn-white-outline:hover {
  background: rgba(0,0,0,0.08);
  color: #000;
  border-color: rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   SECTION EYEBROW
═══════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — PREMIUM
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-v2-row { grid-template-columns: 1fr; }
  .hero-v2-card { display: none; }
  .hero-v2-bottom { grid-template-columns: repeat(2, 1fr); }
  .impact-numbers { grid-template-columns: repeat(2, 1fr); }
  .impact-item:nth-child(2) { border-right: none; }
  .impact-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .impact-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .sectors-mag {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .sectors-mag .mag-card:nth-child(1) { grid-row: 1; grid-column: 1 / 3; }
  .why-split { grid-template-columns: 1fr; }
  .why-split-left { min-height: 280px; }
  .process-premium { grid-template-columns: 1fr 1fr; }
  .process-p-step:nth-child(2) { border-right: none; }
  .process-p-step:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .process-p-step:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .cta-premium { grid-template-columns: 1fr; padding: 48px 36px; }
}
@media (max-width: 768px) {
  .hero-v2-headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-v2-bottom { grid-template-columns: 1fr 1fr; }
  .hero-v2-ticker { padding: 14px 16px; font-size: 0.75rem; }
  .sectors-mag { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sectors-mag .mag-card { min-height: 220px; }
  .sectors-mag .mag-card:nth-child(1) { grid-column: 1; }
  .impact-numbers { border-radius: var(--radius-lg); }
  .impact-item { padding: 36px 24px; }
  .process-premium { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .process-p-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-p-step:last-child { border-bottom: none; }
  .process-p-step:nth-child(3), .process-p-step:nth-child(4) { border-top: none; }
  .service-panel-header { grid-template-columns: 56px 1fr 44px; }
  .service-panel-tag { display: none; }
  .service-panel-inner { padding-left: 28px; grid-template-columns: 1fr; }
  .why-split-left { padding: 40px 32px; }
  .why-split-right { padding: 36px 28px; }
  .cta-premium-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero-v2-bottom { grid-template-columns: 1fr; }
  .hero-v2-ticker { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .impact-numbers { grid-template-columns: 1fr; }
  .impact-item { border-right: none; border-bottom: 1px solid var(--border); }
  .impact-item:last-child { border-bottom: none; }
  .impact-item:nth-child(3), .impact-item:nth-child(4) { border-top: none; }
}

/* ═══════════════════════════════════════════════════
   APPLE + MSC HERO — CENTERED AUTHORITY
═══════════════════════════════════════════════════ */
.hero-apex {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-apex-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, #111111 0%, #060606 65%);
}
.hero-apex-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(0,179,122,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 80% 20%, rgba(0,179,122,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-apex-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,179,122,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,122,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.hero-apex-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  padding: 0 24px;
}
.hero-apex-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0.9;
}
.hero-apex-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(0,179,122,0.3);
  border-radius: 100px;
  background: rgba(0,179,122,0.07);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.hero-apex-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.5vw, 9.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-apex-headline .accent-line {
  background: linear-gradient(90deg, #00B37A, #00E090);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-apex-sub {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.hero-apex-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
.hero-apex-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.22);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-apex-scroll::after {
  content: '';
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(0,179,122,0.55), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.25; transform: scaleY(1) translateY(0); }
  60% { opacity: 0.9; transform: scaleY(0.7) translateY(6px); }
}
/* Stats row under hero */
.hero-apex-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-apex-stat {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.hero-apex-stat:last-child { border-right: none; }
.hero-apex-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-apex-stat-num em { color: var(--accent); font-style: normal; }
.hero-apex-stat-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ═══════════════════════════════════════════════════
   FEATURE SPOTLIGHT — APPLE STYLE
═══════════════════════════════════════════════════ */
.feature-spot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 500px;
  margin-bottom: 16px;
}
.feature-spot.reverse { direction: rtl; }
.feature-spot.reverse > * { direction: ltr; }
.fs-visual {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.fs-visual-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.feature-spot:hover .fs-visual-bg { transform: scale(1.04); }
.fs-visual-decor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fs-visual-decor svg {
  width: clamp(100px, 30%, 180px);
  height: auto;
  opacity: 0.12;
  color: var(--accent);
}
.fs-visual-label {
  position: absolute;
  top: 24px; left: 24px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.fs-body {
  background: var(--surface-card);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fs-eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.fs-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.fs-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.fs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}
.fs-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.fs-list-item::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,179,122,0.12);
  border: 1px solid rgba(0,179,122,0.35);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5 6.5-7' stroke='%2300B37A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ═══════════════════════════════════════════════════
   DIVIDER LINE
═══════════════════════════════════════════════════ */
.line-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: SECTION LABEL ACCENT BAR
   Short green horizontal rule above every section label
═══════════════════════════════════════════════════ */
.section-label {
  position: relative;
  padding-top: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
/* Centred headers — bar centred too */
.section-header.center .section-label::before,
.center .section-label::before,
.cta-inner .section-label::before,
.page-hero-inner .section-label::before {
  left: 50%;
  transform: translateX(-50%);
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: CARD HOVER LIFT
   Clean elevation on hover — subtle but satisfying
═══════════════════════════════════════════════════ */
.card {
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease !important;
}
.card:hover {
  transform: translateY(-5px) !important;
}
/* Brand cards: scale instead of lift */
.brand-card:hover {
  transform: translateY(-3px) scale(1.02) !important;
}
/* Partner cards: stronger lift */
.partner-card:hover {
  transform: translateY(-6px) !important;
}
/* Service item cards */
.service-item-card:hover {
  transform: translateY(-4px) !important;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: STAT NUMBERS — BOLD & LARGE
═══════════════════════════════════════════════════ */
.stat-num {
  font-size: clamp(2.75rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
}
.stat-label {
  font-size: 0.8125rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-top: 6px !important;
}
.stat-item {
  padding: 36px 24px !important;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: SERVICE NUMBER ACCENT
   Large faded number behind service cards
═══════════════════════════════════════════════════ */
.service-number {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.05em !important;
  color: var(--accent) !important;
  opacity: 0.18 !important;
  flex-shrink: 0;
  min-width: 64px;
}
.service-item-card:hover .service-number {
  opacity: 0.35 !important;
  transition: opacity 0.28s ease;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: IMPACT NUMBERS STRIP
═══════════════════════════════════════════════════ */
.impact-big {
  font-size: clamp(3rem, 6vw, 5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
  line-height: 1 !important;
}
.impact-label {
  font-size: 0.8125rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: FEATURE ICON HOVER
═══════════════════════════════════════════════════ */
.feature-item {
  transition: transform 0.22s ease;
}
.feature-item:hover {
  transform: translateX(4px);
}
.feature-icon {
  transition: background 0.22s ease, border-color 0.22s ease;
}
.feature-item:hover .feature-icon {
  background: rgba(0,179,122,0.15) !important;
  border-color: rgba(0,179,122,0.4) !important;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: ICON BOX PULSE ON HOVER
═══════════════════════════════════════════════════ */
.icon-box {
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), background 0.22s ease;
}
.card:hover .icon-box {
  transform: scale(1.12);
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: SECTION DIVIDER ACCENT
   Thin full-width green line at 20% opacity between major sections
═══════════════════════════════════════════════════ */
.section-divider-accent {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,179,122,0.3) 30%, rgba(0,179,122,0.3) 70%, transparent);
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: PROCESS STEP NUMBER
═══════════════════════════════════════════════════ */
.process-p-num {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
  color: var(--accent) !important;
  opacity: 0.25;
}
.process-p-step:hover .process-p-num {
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: BTN MICRO-INTERACTION
═══════════════════════════════════════════════════ */
.btn {
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.22s ease !important;
}
.btn:hover {
  transform: translateY(-2px) !important;
}
.btn:active {
  transform: translateY(0) !important;
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0,179,122,0.35) !important;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: NAV LINK UNDERLINE SLIDE
═══════════════════════════════════════════════════ */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: SECTION TITLE REFINEMENT
═══════════════════════════════════════════════════ */
.section-title {
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.section-desc {
  max-width: 620px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: ARROW LINK
═══════════════════════════════════════════════════ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.22s ease, opacity 0.22s ease;
}
.link-arrow .arr { transition: transform 0.22s ease; display: inline-block; }
.link-arrow:hover .arr { transform: translateX(5px); }
.link-arrow:hover { opacity: 0.82; }

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: EDITORIAL INTRO SPLIT
   "Since 2016 / We keep your fleet moving"
═══════════════════════════════════════════════════ */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-since {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  padding-top: 20px;
  position: relative;
}
.editorial-since::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.editorial-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.editorial-headline em { color: var(--accent); font-style: normal; }
.editorial-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 480px;
}
.editorial-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.editorial-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
@media (max-width: 860px) {
  .editorial-split { grid-template-columns: 1fr; gap: 40px; }
  .editorial-visual { aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: 3-COL CLEAN FEATURE STRIP
   No card borders — clean columns like SKF "O que fazemos?"
═══════════════════════════════════════════════════ */
.feat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 56px;
}
.feat-strip-item {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.22s ease;
  position: relative;
}
.feat-strip-item:last-child { border-right: none; }
.feat-strip-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feat-strip-item:hover::before { transform: scaleX(1); }
.feat-strip-item:hover { background: var(--glass); }
.feat-strip-icon {
  width: 44px; height: 44px;
  margin-bottom: 20px;
  color: var(--accent);
}
.feat-strip-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.feat-strip-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .feat-strip { grid-template-columns: 1fr; }
  .feat-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feat-strip-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════
   SKF-INSPIRED: BOLD EDITORIAL STATEMENT
   "The sea never stops. Neither do we."
═══════════════════════════════════════════════════ */
.skf-statement {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 72px;
  align-items: center;
}
.skf-statement-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
  padding-top: 20px;
  position: relative;
}
.skf-statement-eyebrow::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.skf-statement-text {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 28px;
}
.skf-statement-text em { color: var(--accent); font-style: normal; }
.skf-statement-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.skf-stats-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.skf-stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.skf-stat-row:first-child { padding-top: 0; }
.skf-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.skf-stat-num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
}
.skf-stat-lbl {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 900px) {
  .skf-statement { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
  .skf-stats-col { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .skf-stat-row { flex: 1; min-width: 120px; border-right: 1px solid var(--border); border-bottom: none; padding: 0 24px 0 0; }
  .skf-stat-row:last-child { border-right: none; }
}

/* ═══════════════════════════════════════════════════
   APPLE + MSC RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .feature-spot { grid-template-columns: 1fr; }
  .feature-spot.reverse { direction: ltr; }
  .fs-visual { min-height: 300px; }
  .hero-apex-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-apex-stat:nth-child(2) { border-right: none; }
  .hero-apex-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }
  .hero-apex-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
}
@media (max-width: 768px) {
  .hero-apex-headline { font-size: clamp(3.25rem, 11vw, 5.5rem); }
  .hero-apex-stats { grid-template-columns: repeat(2, 1fr); }
  .fs-body { padding: 40px 32px; }
}
@media (max-width: 480px) {
  .hero-apex-stats { grid-template-columns: 1fr 1fr; }
  .hero-apex-stat { padding: 18px 20px; }
  .hero-apex-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .hero-apex-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
}
