/* ==========================================================================
   Our Commitment to Excellence - Cinematic Editorial Section
   Apple, Stripe, Framer, Antigravity Luxury B2B Aesthetic (Zero Cards)
   ========================================================================== */

:root {
  --oce-bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FAFAFC 100%);
  --oce-text-heading: #0F172A;
  --oce-text-accent: #2563EB;
  --oce-text-body: #475569;
  --oce-font-heading: 'Syne', 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --oce-font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

.oce-section {
  position: relative;
  background: var(--oce-bg-gradient);
  color: var(--oce-text-heading);
  padding: 140px 0 160px;
  overflow: hidden;
  font-family: var(--oce-font-body);
}

/* Ambient Lighting Orbs & Mesh Backgrounds */
.oce-bg-glow-1 {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.oce-bg-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(212, 161, 57, 0.045) 0%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
}

.oce-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* Asymmetrical Editorial Split Grid */
.oce-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

/* Left Column: Pure Editorial Typography */
.oce-content-col {
  max-width: 610px;
  position: relative;
  padding-left: 28px;
}

/* Vertical Accent Line beside Heading */
.oce-vertical-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2563EB 0%, #D4A139 100%);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.oce-heading {
  position: relative;
  font-family: var(--oce-font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--oce-text-heading);
  margin: 0 0 28px;
  padding-bottom: 16px;
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Minimalist Luxury Line Accent Indicator */
.oce-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, #2563EB 0%, #D4A139 100%);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.oce-paragraph {
  font-family: var(--oce-font-body);
  font-size: clamp(1.08rem, 1.25vw, 1.22rem);
  line-height: 1.85;
  color: var(--oce-text-body);
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.12s, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.12s;
}

.oce-paragraph:last-child {
  margin-bottom: 0;
}

.oce-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Right Column: Immersive 4K Image Frame */
.oce-image-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  background: #0F172A;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.15), 0 0 40px rgba(37, 99, 235, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  animation: oceFloatImg 8s ease-in-out infinite alternate;
}

.oce-image-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.oce-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.oce-image-wrapper:hover img {
  transform: scale(1.03);
}

@keyframes oceFloatImg {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Responsive Adaptations */
@media (max-width: 991px) {
  .oce-section {
    padding: 100px 0 110px;
  }
  .oce-split-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .oce-content-col {
    max-width: 100%;
    padding-left: 20px;
  }
  .oce-image-wrapper {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .oce-section {
    padding: 80px 0 90px;
  }
  .oce-heading {
    margin-bottom: 20px;
  }
  .oce-image-wrapper {
    height: 270px;
    border-radius: 24px;
  }
}
