/* ============================================================
   Swift Technologies — Main Stylesheet
   ============================================================ */

/* ============================================================
   ORACLE SERVICES — 3-COLUMN LAYOUT
   ============================================================ */

.oracle-section {
  background: var(--white);
}

.oracle-intro {
  padding: 64px 0 0;
  text-align: center;
}

.oracle-layout {
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

/* Left sidebar */
.oracle-sidebar {
  background: var(--off-white);
  border-right: 1px solid rgba(212,146,10,0.15);
}

.oracle-sidebar-item {
  display: block;
  padding: 18px 28px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-mid);
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(212,146,10,0.08);
  transition: all var(--transition);
}

.oracle-sidebar-item:hover {
  background: rgba(212,146,10,0.08);
  color: var(--amber);
  border-left-color: var(--amber-light);
}

.oracle-sidebar-item.active {
  background: rgba(212,146,10,0.12);
  color: var(--text-dark);
  font-weight: 700;
  border-left-color: var(--amber);
}

/* Middle panel */
.oracle-main {
  padding: 56px 52px;
  border-right: 1px solid var(--border);
}

.oracle-main-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.oracle-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.oracle-main-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

/* Right features panel */
.oracle-features-panel {
  padding: 40px 40px;
}

.oracle-features-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.oracle-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.oracle-feature-item:last-child { border-bottom: none; }

.oracle-feature-item:hover .oracle-feature-name { color: var(--amber); }

.oracle-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--amber-dark), var(--amber-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212,146,10,0.25);
}

.oracle-feature-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}

.oracle-feature-sub {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 2px;
}

/* Oracle capabilities section */
.oracle-capabilities {
  padding: 80px 0;
  background: var(--off-white);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.capability-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.capability-card:hover {
  border-color: rgba(212,146,10,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.capability-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 16px;
}

.capability-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.capability-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* Benefits strip */
.benefits-strip {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.benefit-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.benefit-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 4px;
}

/* Oracle implementation approach */
.approach-section {
  padding: 80px 0;
  background: var(--white);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.approach-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  z-index: 0;
}

.approach-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber);
  color: #0C0C0F;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-amber);
}

.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Oracle-specific responsive */
@media (max-width: 1100px) {
  .oracle-layout { grid-template-columns: 240px 1fr; }
  .oracle-features-panel { display: none; }
}

@media (max-width: 768px) {
  .oracle-layout { grid-template-columns: 1fr; }
  .oracle-sidebar { display: none; }
  .oracle-main { padding: 40px 24px; border-right: none; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .approach-steps::before { display: none; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
}

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:         #D4920A;
  --amber-light:   #F0B429;
  --amber-dark:    #A67208;
  --amber-glow:    rgba(212, 146, 10, 0.12);
  --bg-dark:       #0C0C0F;
  --bg-mid:        #141418;
  --bg-surface:    #1E1E24;
  --hero-bg:       #0C0C0F;
  --hero-bg2:      #141418;
  --white:         #FAF8F4;
  --off-white:     #F0EDE7;
  --text-dark:     #1A1714;
  --text-mid:      #3D3631;
  --text-gray:     #7D756D;
  --text-light:    #A09890;
  --border:        #E4DDD4;
  --border-dark:   rgba(255,255,255,0.07);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     14px;
  --radius-xl:     22px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --shadow-amber:  0 6px 24px rgba(212,146,10,0.22);
  --transition:    0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
}

.section-label, .stat-number, .benefit-num, .step-number, .value-number,
.oracle-main-eyebrow, .oracle-features-label, .detail-label, .page-hero-eyebrow,
.hero-eyebrow, .footer-col-title {
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.08em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.purple { color: var(--amber); }
.purple-light { color: var(--amber-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(212,146,10,0.35); }

.btn-outline {
  border: 2px solid var(--amber);
  color: var(--amber);
  background: transparent;
}
.btn-outline:hover { background: var(--amber); color: var(--white); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 680px;
  margin-top: 16px;
}

.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--bg-dark);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.topbar-inner a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.topbar-inner a:hover { color: var(--white); }

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 8px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 24px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  font-family: 'Syne', system-ui, sans-serif;
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--amber);
  background: var(--amber-glow);
}

.nav-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  opacity: 0.6;
}

.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown a:hover { background: var(--amber-glow); color: var(--amber); }

.dropdown a .drop-icon {
  width: 16px;
  height: 16px;
  color: var(--amber);
  opacity: 0.7;
}

/* Navbar CTA */
.navbar-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.navbar-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav-link {
  display: block;
  padding: 12px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--amber); }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  background-color: var(--hero-bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,146,10,0.10) 0%, transparent 70%),
    radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
  min-height: 580px;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,146,10,0.3), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--amber-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber-light);
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  color: #F5F2EC;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title span { color: var(--amber-light); }

.hero-desc {
  font-size: 1rem;
  color: rgba(245,242,236,0.58);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-illustration {
  width: 100%;
  max-width: 520px;
}

/* Hero tabs bar */
.hero-tabs {
  background: rgba(20,20,24,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,146,10,0.2);
  padding: 0;
}

.hero-tabs-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-tabs-inner::-webkit-scrollbar { display: none; }

.hero-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245,242,236,0.42);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.hero-tab:hover { color: rgba(245,242,236,0.75); border-bottom-color: rgba(212,146,10,0.4); }
.hero-tab.active { color: var(--amber-light); border-bottom-color: var(--amber); }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 60%, var(--bg-mid) 100%);
  padding: 80px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,146,10,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero-title span { color: var(--amber-light); }

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--amber-light); }

/* ============================================================
   SERVICES SECTION (Homepage)
   ============================================================ */
.services-overview {
  padding: 96px 0;
  background: var(--white);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.services-tabs {
  margin-bottom: 40px;
}

.tab-group {
  border-bottom: 1px solid var(--border);
}

.tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  border-top: 1px solid var(--border);
}

.tab-header:first-of-type { border-top: none; }

.tab-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}

.tab-header:hover .tab-title, .tab-header.open .tab-title { color: var(--amber); }

.tab-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-gray);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.tab-header.open .tab-chevron { transform: rotate(180deg); color: var(--amber); }

.tab-body {
  display: none;
  padding-bottom: 20px;
}

.tab-body.open { display: block; }

.tab-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.tab-pill:hover { border-color: var(--amber); color: var(--amber); }
.tab-pill.active { background: var(--amber); color: var(--white); border-color: var(--amber); }

.services-preview {
  position: relative;
}

.preview-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-dark);
  display: none;
}

.preview-card.active { display: block; }

.preview-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.preview-card-img-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.preview-card-body {
  padding: 28px;
  color: var(--white);
}

.preview-card-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.preview-card-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 16px; }

/* ============================================================
   PAAS / INDUSTRY SOLUTIONS (Homepage)
   ============================================================ */
.industry-solutions {
  padding: 96px 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.solutions-switcher {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.switcher-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-mid);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}

.switcher-btn:hover { border-color: var(--amber); color: var(--amber); }
.switcher-btn.active { background: var(--amber); color: var(--white); border-color: var(--amber); }

.solution-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.solution-panel.active { display: grid; }

.solution-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.solution-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.solution-tag {
  padding: 5px 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

.solution-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.solution-desc { font-size: 0.95rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 24px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: 96px 0;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.why-card {
  padding: 0 8px;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--amber-light);
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 4px;
}

/* ============================================================
   PARTNERS / LOGOS
   ============================================================ */
.partners {
  padding: 56px 0;
  background: var(--off-white);
}

.partners-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 36px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.55;
  filter: grayscale(1);
}

.partner-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #A67208 0%, #D4920A 45%, #F0B429 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0C0C0F;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(12,12,15,0.65);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-white {
  background: #0C0C0F;
  color: var(--amber-light);
  padding: 14px 32px;
  font-weight: 700;
}

.btn-white:hover { background: #1E1E24; transform: translateY(-1px); }

.cta-section .btn-outline-white {
  border-color: rgba(12,12,15,0.35);
  color: #0C0C0F;
}

.cta-section .btn-outline-white:hover {
  background: rgba(12,12,15,0.1);
  border-color: rgba(12,12,15,0.6);
}

/* ============================================================
   SERVICES PAGE — GRID
   ============================================================ */
.services-grid-section {
  padding: 96px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { border-color: rgba(212,146,10,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 28px; height: 28px; color: var(--amber); }

.service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.service-desc { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; margin-bottom: 20px; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-mid);
}

.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: 20px;
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

/* ============================================================
   SERVICES PAGE — DETAIL
   ============================================================ */
.service-detail {
  padding: 96px 0;
}

.service-detail:nth-child(even) { background: var(--off-white); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.detail-title { font-size: 2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.detail-desc { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 24px; line-height: 1.7; }

.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--amber-glow);
  border-radius: var(--radius-sm);
}

.detail-feature-icon {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
}

.detail-feature-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
}

.detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 96px 0;
  background: var(--white);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212,146,10,0.4), transparent 60%);
}

.about-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.about-body {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-body p + p { margin-top: 16px; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.highlight-item {
  padding: 20px;
  background: var(--amber-glow);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--amber);
}

.highlight-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.highlight-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* Values */
.values-section {
  padding: 96px 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover { border-color: rgba(212,146,10,0.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.value-number {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
}

.value-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.value-desc { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; }

/* Leadership */
.leadership-section {
  padding: 96px 0;
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.leader-card {
  text-align: center;
}

.leader-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-dark), var(--amber-light));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.leader-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.leader-role { font-size: 0.84rem; color: var(--text-gray); }
.leader-linkedin {
  display: inline-block;
  margin-top: 10px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-title { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-desc { font-size: 0.95rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 40px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.contact-item:hover { border-color: rgba(212,146,10,0.3); }

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 22px; height: 22px; color: var(--amber); }

.contact-item-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-item-value a:hover { color: var(--amber); }
.contact-item-subtext { font-size: 0.84rem; color: var(--text-gray); margin-top: 4px; }

/* Office Cards */
.offices-section {
  padding: 96px 0;
  background: var(--off-white);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.office-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.office-card:hover { border-color: rgba(212,146,10,0.3); box-shadow: var(--shadow-md); }

.office-flag { font-size: 2rem; margin-bottom: 16px; }
.office-city { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.office-country { font-size: 0.84rem; color: var(--amber); font-weight: 600; margin-bottom: 14px; }
.office-address { font-size: 0.88rem; color: var(--text-gray); line-height: 1.6; }

/* Contact CTA panel */
.contact-cta-panel {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  border-radius: var(--radius-xl);
  padding: 56px;
  color: var(--white);
}

.contact-cta-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.contact-cta-desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.7; }

.contact-direct {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.contact-direct:hover { background: rgba(255,255,255,0.12); }

.contact-direct-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-direct-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-direct-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-direct-value { font-size: 0.95rem; font-weight: 700; color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .logo-text { color: var(--white); font-size: 1.3rem; margin-bottom: 16px; }
.footer-brand .logo-text span { color: var(--amber-light); }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.55);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-btn:hover { background: var(--amber); border-color: var(--amber); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* Floating contact button */
.float-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right center;
  background: var(--amber);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 900;
  transition: background var(--transition);
  box-shadow: var(--shadow-amber);
}

.float-contact:hover { background: var(--amber-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }

  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero-visual { display: none; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }

  .services-header { grid-template-columns: 1fr; gap: 40px; }
  .solution-panel.active { grid-template-columns: 1fr; }
  .solution-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-inner.reverse { direction: ltr; }
  .detail-visual { display: none; }
  .detail-features { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-highlights { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .contact-cta-panel { padding: 32px 24px; }
  .float-contact { display: none; }

  .section-title { font-size: 1.8rem; }
  .page-hero { padding: 60px 0; }
  .cta-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .solutions-switcher { flex-direction: column; align-items: center; }
}

/* ============================================================
   ORACLE PAGE UNIQUE LAYOUTS (op-*)
   ============================================================ */

/* ── SPLIT HERO (Trinamix-style: text left, photo right) ── */
.op-split-hero { background: #fff; padding: 0; overflow: hidden; }
.op-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: center;
}
.op-split-left { padding: 72px 60px 72px 0; }
.op-split-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.op-split-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a1714;
  line-height: 1.1;
  margin-bottom: 20px;
}
.op-split-title span { color: var(--amber-dark); }
.op-split-desc {
  font-size: 1.05rem;
  color: #5a5248;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.op-split-right { position: relative; height: 500px; overflow: hidden; }
.op-split-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── TAB BAR ── */
.op-tabbar {
  background: #12084a;
  border-bottom: 1px solid rgba(212,146,10,0.2);
}
.op-tabbar-item {
  display: inline-block;
  padding: 16px 28px;
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.op-tabbar-item:hover, .op-tabbar-item.active {
  color: #fff;
  border-bottom-color: var(--amber);
  background: rgba(255,255,255,0.05);
}

/* ── OVERVIEW SECTION ── */
.op-overview { padding: 72px 0; background: #fff; }
.op-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}
.op-overview-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1714;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.op-overview-text { color: #5a5248; line-height: 1.75; }

/* ── PILLAR CARDS ── */
.op-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.op-pillar {
  border: 1px solid #e4ddd4;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}
.op-pillar:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(212,146,10,0.1);
  transform: translateY(-4px);
}
.op-pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,146,10,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.op-pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1714;
  margin-bottom: 6px;
}
.op-pillar-desc { font-size: 0.84rem; color: #7d756d; line-height: 1.5; }

/* ── SUCCESS STORY CARDS ── */
.op-success-section { padding: 80px 0; background: #f7f4f0; }
.op-success-heading {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1714;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.op-success-heading span { color: var(--amber-dark); }
.op-success-intro { color: #7d756d; margin-bottom: 40px; }
.op-success-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4ddd4;
  background: #fff;
  margin-bottom: 24px;
  transition: box-shadow 0.25s;
}
.op-success-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.op-success-photo { position: relative; min-height: 280px; }
.op-success-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-success-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.op-success-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.op-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid #c8c0b8;
  border-radius: 100px;
  font-size: 0.75rem;
  color: #5a5248;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}
.op-success-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1714;
  margin-bottom: 12px;
  line-height: 1.35;
}
.op-success-desc {
  font-size: 0.9rem;
  color: #7d756d;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ── FULL-WIDTH PHOTO HERO ── */
.op-photo-hero { position: relative; height: 480px; overflow: hidden; }
.op-photo-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-photo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,8,40,0.82) 0%, rgba(10,8,40,0.45) 55%, transparent 100%);
  display: flex;
  align-items: center;
}
.op-photo-hero-text { max-width: 640px; padding: 0 0 0 60px; }
.op-photo-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 16px;
}
.op-photo-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #f5f2ec;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  white-space: pre-line;
}
.op-photo-desc {
  font-size: 1rem;
  color: rgba(245,242,236,0.62);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── CAPABILITY CARDS V2 (photo-topped) ── */
.cap-card-v2 {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: all 0.25s;
}
.cap-card-v2:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--amber);
}
.cap-card-v2-photo { height: 175px; overflow: hidden; }
.cap-card-v2-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.cap-card-v2:hover .cap-card-v2-photo img { transform: scale(1.05); }
.cap-card-v2-body { padding: 22px 20px; }
.cap-card-v2-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a1714;
  margin-bottom: 8px;
}
.cap-card-v2-desc { font-size: 0.86rem; color: #7d756d; line-height: 1.6; }

/* ── FEATURE ROWS (alternating image / text) ── */
.op-feature-rows { padding: 80px 0; background: #fff; }
.op-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.op-feature-row:last-child { margin-bottom: 0; }
.op-feature-row.reverse { direction: rtl; }
.op-feature-row.reverse > * { direction: ltr; }
.op-feature-photo {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.op-feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-feature-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.op-feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #1a1714;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.op-feature-desc { color: #5a5248; line-height: 1.75; margin-bottom: 20px; }
.op-feature-list { list-style: none; padding: 0; margin: 0; }
.op-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 5px 0;
  font-size: 0.91rem;
  color: #3d3631;
}
.op-feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── BENTO GRID ── */
.op-bento-section { padding: 80px 0; background: var(--bg-dark); }
.op-bento-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 10px;
}
.op-bento-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #f5f2ec;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.op-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.op-bento-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.op-bento-card:hover { border-color: rgba(212,146,10,0.3); }
.op-bento-wide { grid-column: span 2; }
.op-bento-photo { position: absolute; inset: 0; z-index: 0; }
.op-bento-photo img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.28; }
.op-bento-content { position: relative; z-index: 1; }
.op-bento-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 6px;
}
.op-bento-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5f2ec;
  margin-bottom: 5px;
}
.op-bento-card-desc { font-size: 0.83rem; color: rgba(245,242,236,0.48); line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .op-split-inner { grid-template-columns: 1fr; }
  .op-split-right { display: none; }
  .op-split-left { padding: 60px 0; }
  .op-overview-grid { grid-template-columns: 1fr; gap: 28px; }
  .op-pillars { grid-template-columns: repeat(2, 1fr); }
  .op-success-card { grid-template-columns: 1fr; }
  .op-success-photo { min-height: 220px; }
  .op-feature-row { grid-template-columns: 1fr; gap: 36px; }
  .op-feature-row.reverse { direction: ltr; }
  .op-feature-photo { height: 240px; }
  .op-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .op-bento-card { min-height: 180px; }
  .op-bento-wide { grid-column: span 1; }
  .op-photo-hero { height: 360px; }
  .op-photo-hero-text { padding: 0 24px; }
  .op-photo-title { font-size: 1.8rem; }
}

/* ============================================================
   FULL-BLEED VIDEO HERO
   ============================================================ */
.hero-fullvideo {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 0;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.42;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,15,0.88) 0%,
    rgba(12,12,15,0.60) 50%,
    rgba(12,12,15,0.80) 100%
  );
  z-index: 1;
}
/* amber accent vignette */
.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 55%, rgba(212,146,10,0.07) 0%, transparent 70%);
}
.hero-fullvideo .container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
}
.hero-fullvideo .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  grid-template-columns: unset;
  gap: 0;
}
.hero-fullvideo .hero-content {
  max-width: 860px;
  margin: 0 auto;
}
.hero-fullvideo .hero-eyebrow {
  justify-content: center;
}
.hero-fullvideo .hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  letter-spacing: -0.04em;
}
.hero-fullvideo .hero-desc {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}
.hero-fullvideo .hero-actions {
  justify-content: center;
}
.hero-fullvideo .hero-visual { display: none; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245,242,236,0.3);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(212,146,10,0.5), transparent);
  animation: scrollCuePulse 2s ease-in-out infinite;
}
@keyframes scrollCuePulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   HORIZONTAL SCROLL — Oracle Services Strip
   ============================================================ */
.h-scroll-section {
  background: var(--bg-mid);
  overflow: hidden;
}
.h-scroll-header {
  padding: 72px 0 36px;
}
.h-scroll-header .section-title { color: var(--white); }
.h-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.28);
  margin-top: 16px;
}
.h-scroll-hint svg { opacity: 0.5; }
.h-scroll-track {
  display: flex;
  gap: 20px;
  padding: 0 60px 80px;
  width: max-content;
  will-change: transform;
}
.h-scroll-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s;
  cursor: default;
}
.h-scroll-card:hover {
  border-color: rgba(212,146,10,0.3);
  transform: translateY(-6px);
}
.h-scroll-card-photo {
  height: 168px;
  overflow: hidden;
}
.h-scroll-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.h-scroll-card:hover .h-scroll-card-photo img { transform: scale(1.07); }
.h-scroll-card-body { padding: 20px 18px 22px; }
.h-scroll-card-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 8px;
}
.h-scroll-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.h-scroll-card-desc {
  font-size: 0.83rem;
  color: rgba(250,248,244,0.42);
  line-height: 1.55;
  margin-bottom: 16px;
}
.h-scroll-card-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, gap 0.2s;
}
.h-scroll-card-link:hover { color: var(--amber-light); gap: 8px; }

/* Mobile: fallback to horizontal overflow */
@media (max-width: 767px) {
  .h-scroll-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    /* GSAP won't pin on mobile so this is the fallback */
  }
}

/* ============================================================
   SCROLL-REVEAL BASE  (GSAP sets initial opacity/y)
   ============================================================ */
.scroll-reveal { will-change: opacity, transform; }
