:root {
  --or-navy: #001E40;
  --or-red: #DC2626;
  --or-red-dark: #B91C1C;
  --or-green: #16A34A;
  --or-green-light: #DCFCE7;
  --or-whatsapp: #25D366;
  --or-white: #FFFFFF;
  --or-light-gray: #F5F5F5;
  --or-border: #E5E7EB;
  --or-text: #374151;
  --or-muted: #6B7280;
  --or-font-head: 'Montserrat', sans-serif;
  --or-font-body: 'Public Sans', sans-serif;
  --or-radius: 10px;
  --or-card-radius: 14px;
  --or-transition: all .3s ease;
}
.or-section,
.or-section * { box-sizing: border-box; }
.or-section { font-family: var(--or-font-body); color: var(--or-text); }
.or-section a { text-decoration: none; }
.or-container { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: 48px; padding-right: 48px; }
.or-section-padding { padding-top: 120px; padding-bottom: 120px; }
.or-section-compact { padding-top: 48px; padding-bottom: 48px; }
.or-headline { font-family: var(--or-font-head); font-weight: 800; letter-spacing: -.01em; line-height: 1.1; color: var(--or-navy); margin: 0; }
.or-section-title { font-size: 44px; margin-top: 24px; }
.or-heading-max { max-width: 720px; }
.or-intro { color: var(--or-muted); margin: 20px 0 0; line-height: 1.7; font-size: 17px; }
.or-title-light { color: var(--or-white); }
.or-intro-light { color: rgba(255,255,255,.65); }
.or-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.or-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.or-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.or-card-grid { gap: 20px; margin-top: 64px; }
.or-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); transition-delay: var(--or-delay, 0ms); }
.or-reveal.or-in { opacity: 1; transform: translateY(0); }
.or-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: var(--or-green-light); color: var(--or-green); padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--or-font-head); }
.or-btn { border: none; padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--or-transition); letter-spacing: .02em; font-family: var(--or-font-body); display: inline-flex; align-items: center; gap: 10px; justify-content: center; }
.or-btn-primary { background: var(--or-red); color: var(--or-white); }
.or-btn-primary:hover { background: var(--or-red-dark); color: var(--or-white); transform: translateY(-1px); box-shadow: 0 10px 25px rgba(220,38,38,.25); }
.or-btn-secondary { background: transparent; color: var(--or-white); border: 1.5px solid rgba(255,255,255,.4); }
.or-btn-secondary:hover { border-color: var(--or-white); color: var(--or-white); background: rgba(255,255,255,.08); }
.or-btn-outline { background: transparent; color: var(--or-navy); border: 1.5px solid var(--or-navy); padding: 16px 36px; font-size: 15px; }
.or-btn-outline:hover { background: var(--or-navy); color: var(--or-white); transform: translateY(-1px); }
.or-pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--or-green); position: relative; flex-shrink: 0; display: block; }
.or-pulse-dot:after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: var(--or-green); opacity: .3; animation: orPulse 2.4s ease-in-out infinite; }
@keyframes orPulse { 0%, 100% { transform: scale(1); opacity: .3; } 50% { transform: scale(2); opacity: 0; } }

/* Header and progress */
.or-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 2000; }
.or-progress-bar { display: block; height: 3px; width: 0; background: linear-gradient(90deg, var(--or-red), var(--or-green)); transition: width .1s ease-out; }
.or-nav { font-family: var(--or-font-body); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; border-bottom: 1px solid transparent; transition: all .3s ease; }
.or-nav.is-solid { background: rgba(255,255,255,.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--or-border); }
.or-nav-row { height: 82px; display: flex; align-items: center; justify-content: space-between; padding-left: 32px; padding-right: 32px; }
.or-brand { height: 60px; display: inline-flex; align-items: center; color: var(--or-white); }
.or-brand img { height: 54px; width: auto; display: block; }
.or-logo-dark { display: none !important; }
.or-nav.is-solid .or-logo-light { display: none !important; }
 .or-nav.is-solid .or-logo-dark { display: block !important; }
@media (prefers-color-scheme: dark) {
  .or-nav.is-solid { background: rgba(0,30,64,.98); border-bottom-color: rgba(255,255,255,.12); }
  .or-nav .or-logo-light,
  .or-nav.is-solid .or-logo-light,
  body.error404 .or-nav .or-logo-light,
  body.or-not-found-active .or-nav .or-logo-light,
  body.or-solid-inner-active .or-nav .or-logo-light,
  body.or-product-single-active .or-nav .or-logo-light { display: block !important; }
  .or-nav .or-logo-dark,
  .or-nav.is-solid .or-logo-dark,
  body.error404 .or-nav .or-logo-dark,
  body.or-not-found-active .or-nav .or-logo-dark,
  body.or-solid-inner-active .or-nav .or-logo-dark,
  body.or-product-single-active .or-nav .or-logo-dark { display: none !important; }
  .or-nav.is-solid .or-brand,
  .or-nav.is-solid .or-nav-link,
  body.or-solid-inner-active .or-nav .or-brand,
  body.or-product-single-active .or-nav .or-brand,
  body.error404 .or-nav .or-brand,
  body.or-not-found-active .or-nav .or-brand { color: var(--or-white) !important; }
  .or-nav.is-solid .or-mobile-toggle span,
  body.or-solid-inner-active .or-nav .or-mobile-toggle span,
  body.or-product-single-active .or-nav .or-mobile-toggle span { background: var(--or-white) !important; }
}
.or-logo-text { font-family: var(--or-font-head); font-weight: 800; letter-spacing: .04em; color: inherit; font-size: 22px; }
.or-nav.is-solid .or-brand { color: var(--or-navy); }
.or-desktop-nav { display: flex; align-items: center; gap: 4px; }
.or-nav-link { color: var(--or-white); text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: .01em; padding: 8px 14px; border-radius: 6px; transition: var(--or-transition); }
.or-nav-link:hover { color: #FCA5A5; }
.or-nav.is-solid .or-nav-link { color: var(--or-navy); }
.or-nav.is-solid .or-nav-link:hover { color: var(--or-red); }
.or-nav-cta { padding: 10px 20px; font-size: 13px; margin-left: 16px; }
.or-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.or-mobile-toggle span { width: 24px; height: 2px; background: var(--or-white); border-radius: 2px; transition: .3s; display: block; }
.or-nav.is-solid .or-mobile-toggle span { background: var(--or-navy); }
.or-mobile-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
.or-mobile-toggle.is-open span:nth-child(2) { transform: scale(0); }
.or-mobile-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }
.or-mobile-menu { display: none; background: var(--or-white); padding: 16px 24px 24px; flex-direction: column; gap: 4px; border-top: 1px solid var(--or-border); }
.or-mobile-menu .or-nav-link { color: var(--or-navy); text-align: left; padding: 12px 8px; }
.or-mobile-menu .or-btn { margin-top: 8px; }
.or-mobile-menu.is-open { display: flex; }

/* Hero */
.or-hero { position: relative; min-height: 100vh; display: flex; align-items: center; background-image: linear-gradient(135deg, rgba(0,30,64,.78) 0%, rgba(0,30,64,.65) 50%, rgba(0,30,64,.55) 100%), var(--or-hero-bg); background-size: cover; background-position: center; background-repeat: no-repeat; }
.or-hero-inner { padding-top: 160px; padding-bottom: 100px; position: relative; z-index: 2; }
.or-hero-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 9px 18px; border-radius: 999px; color: var(--or-white); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.or-hero-title { font-size: 62px; color: var(--or-white); max-width: 880px; margin-top: 28px; }
.or-hero-description { font-size: 19px; color: rgba(255,255,255,.85); max-width: 620px; line-height: 1.65; margin: 28px 0 0; font-weight: 300; }
.or-hero-buttons { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
.or-hero-buttons .or-btn { padding: 16px 32px; font-size: 15px; }
.or-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: .7; }
.or-scroll-hint span { color: var(--or-white); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }
.or-scroll-hint i { width: 1px; height: 32px; background: linear-gradient(180deg, rgba(255,255,255,.6), transparent); }

/* Partners */
.or-partners { background: var(--or-white); border-bottom: 1px solid var(--or-border); text-align: center; }
.or-strip-label { margin: 0; font-size: 12px; color: var(--or-muted); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.or-partner-grid { display: flex; justify-content: space-around; align-items: center; margin-top: 28px; gap: 48px; flex-wrap: wrap; }
.or-partner-logo { font-family: var(--or-font-head); font-weight: 800; font-size: 22px; color: var(--or-muted); letter-spacing: .02em; transition: var(--or-transition); filter: grayscale(100%); opacity: .55; }
.or-partner-logo:hover { color: var(--or-navy); opacity: 1; filter: grayscale(0); transform: scale(1.05); }

/* About */
.or-about { background: var(--or-white); }
.or-about-grid { gap: 80px; align-items: center; }
.or-copy { font-size: 16px; line-height: 1.8; color: var(--or-text); margin: 28px 0 0; }
.or-copy-second { margin-top: 16px; }
.or-copy-second strong { color: var(--or-navy); }
.or-about-highlights { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.or-highlight { display: flex; align-items: center; gap: 14px; }
.or-highlight > span { width: 40px; height: 40px; border-radius: 8px; background: var(--or-green-light); color: var(--or-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.or-highlight strong { font-size: 15px; color: var(--or-navy); font-weight: 600; line-height: 1.4; }
.or-about-image { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 5; }
.or-about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.or-about-image:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,30,64,.92) 100%); }
.or-about-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; z-index: 1; }
.or-about-overlay small { color: var(--or-green); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.or-about-overlay p { font-size: 20px; color: var(--or-white); line-height: 1.5; margin: 14px 0 0; font-weight: 300; }

/* Products */
.or-products { background: var(--or-light-gray); }
.or-products-grid { gap: 24px; margin-top: 64px; }
.or-product-card { background: var(--or-white); border-radius: var(--or-card-radius); overflow: hidden; cursor: pointer; transition: all .5s cubic-bezier(.16,1,.3,1); border: 1px solid var(--or-border); display: flex; flex-direction: column; position: relative; height: 100%; color: var(--or-text); }
.or-product-card:hover { transform: translateY(-6px); border-color: var(--or-red); box-shadow: 0 24px 50px -12px rgba(0,30,64,.18); }
.or-product-image { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--or-light-gray); }
.or-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); display: block; }
.or-product-card:hover .or-product-image img { transform: scale(1.06); }
.or-product-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,30,64,.85) 100%); display: flex; align-items: flex-end; padding: 20px; transition: background .4s; }
.or-product-card:hover .or-product-overlay { background: linear-gradient(180deg, rgba(220,38,38,.1) 0%, rgba(220,38,38,.3) 50%, rgba(220,38,38,.9) 100%); }
.or-product-overlay h3 { color: var(--or-white); font-size: 20px; font-weight: 700; font-family: var(--or-font-head); letter-spacing: -.01em; margin: 0; }
.or-product-image > span { position: absolute; top: 16px; left: 16px; background: var(--or-white); color: var(--or-navy); font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; }
.or-product-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.or-spec-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--or-border); font-size: 12px; }
.or-spec-row:last-of-type { border-bottom: none; }
.or-spec-row small { color: var(--or-muted); font-weight: 500; letter-spacing: .03em; text-transform: uppercase; font-size: 11px; }
.or-spec-row strong { color: var(--or-navy); font-weight: 600; font-size: 12px; text-align: right; }
.or-product-action { margin-top: 16px; padding: 10px 0; color: var(--or-navy); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; transition: color .3s; }
.or-product-card:hover .or-product-action { color: var(--or-red); }
.or-centered-action { margin-top: 56px; display: flex; justify-content: center; }

/* Certifications and hubs */
.or-certifications, .or-global-reach, .or-testimonials, .or-contact { background: var(--or-white); }
.or-trust-card { background: var(--or-light-gray); border-radius: 10px; padding: 28px; transition: var(--or-transition); border: 1px solid transparent; height: 100%; }
.or-trust-card:hover { background: var(--or-white); border-color: var(--or-border); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,30,64,.08); }
.or-trust-top { display: flex; align-items: center; gap: 14px; }
.or-trust-top > span { width: 44px; height: 44px; border-radius: 8px; background: var(--or-green-light); display: flex; align-items: center; justify-content: center; color: var(--or-green); flex-shrink: 0; }
.or-trust-top h3 { font-size: 18px; }
.or-trust-top small { display: inline-block; margin-top: 4px; font-size: 10px; background: var(--or-green-light); color: var(--or-green); font-weight: 700; padding: 2px 8px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; }
.or-trust-card p { color: var(--or-muted); font-size: 14px; margin: 16px 0 0; line-height: 1.6; }
.or-hub-card { background: var(--or-white); border-radius: 10px; padding: 24px; border: 1px solid var(--or-border); transition: var(--or-transition); position: relative; overflow: hidden; height: 100%; }
.or-hub-card:hover { border-color: var(--or-navy); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,30,64,.1); }
.or-hub-card:before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--or-red); transition: height .3s; }
.or-hub-card:hover:before { height: 100%; }
.or-hub-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.or-flag { font-size: 32px; }
.or-city { display: flex; align-items: baseline; gap: 8px; }
.or-city h3 { font-size: 22px; }
.or-city span { font-size: 13px; color: var(--or-muted); font-weight: 500; }
.or-hub-role { font-size: 13px; color: var(--or-red); font-weight: 700; margin: 10px 0 0; text-transform: uppercase; letter-spacing: .08em; }
.or-port { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--or-border); display: flex; align-items: center; gap: 8px; color: var(--or-muted); }
.or-port span { font-size: 13px; color: var(--or-text); font-weight: 500; }

/* Process */
.or-process { background: var(--or-navy); position: relative; overflow: hidden; }
.or-process-pattern { position: absolute; inset: 0; opacity: .04; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 60px 60px; }
.or-process .or-container { position: relative; z-index: 1; }
.or-process-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 24px; }
.or-process-item > span { width: 56px; height: 56px; border-radius: 8px; background: var(--or-red); color: var(--or-white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; font-family: var(--or-font-head); }
.or-process-item h3 { font-size: 18px; color: var(--or-white); margin-top: 20px; }
.or-process-item p { color: rgba(255,255,255,.6); font-size: 13px; margin: 8px 0 0; line-height: 1.6; }

/* Impact */
.or-impact { position: relative; background-image: linear-gradient(135deg, rgba(0,30,64,.94) 0%, rgba(0,30,64,.88) 100%), var(--or-impact-bg); background-size: cover; background-position: center; background-attachment: fixed; }
.or-impact-heading { max-width: 760px; text-align: center; margin: 0 auto; }
.or-impact-heading .or-eyebrow { margin: 0 auto; }
.or-impact-heading h2 { color: var(--or-white); font-size: 48px; }
.or-impact-heading p { color: rgba(255,255,255,.78); margin: 24px 0 0; line-height: 1.75; font-size: 18px; font-weight: 300; }
.or-impact-grid { gap: 24px; margin-top: 72px; }
.or-impact-card { background: rgba(255,255,255,.06); border-radius: 12px; padding: 36px; border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all .4s; height: 100%; }
.or-impact-card:hover { background: rgba(255,255,255,.1); border-color: var(--or-green); transform: translateY(-4px); }
.or-impact-card > span { width: 56px; height: 56px; border-radius: 12px; background: var(--or-green); color: var(--or-white); display: flex; align-items: center; justify-content: center; }
.or-impact-card h3 { font-size: 22px; color: var(--or-white); margin-top: 24px; line-height: 1.3; }
.or-impact-card p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.75; margin: 14px 0 0; }
.or-impact .or-impact-stats { margin-top: 72px; padding: 40px 32px; border-radius: 12px; background: rgba(22,163,74,.12); border: 1px solid rgba(22,163,74,.25); display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.or-stat { text-align: center; border-right: 1px solid rgba(255,255,255,.1); padding-right: 16px; }
.or-stat:last-child { border-right: none; padding-right: 0; }
.or-stat strong { display: block; font-size: 36px; color: var(--or-green); }
.or-stat small { display: block; font-size: 12px; color: rgba(255,255,255,.7); margin-top: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* Advantages */
.or-advantages, .or-faq { background: var(--or-light-gray); }
.or-advantage-card { background: var(--or-white); border-radius: 10px; padding: 32px; border: 1px solid var(--or-border); transition: var(--or-transition); height: 100%; }
.or-advantage-card:hover { border-color: var(--or-red); transform: translateY(-2px); }
.or-advantage-card > span { width: 48px; height: 48px; border-radius: 8px; background: rgba(220,38,38,.1); display: flex; align-items: center; justify-content: center; color: var(--or-red); }
.or-advantage-card h3 { font-size: 18px; margin-top: 20px; }
.or-advantage-card p { color: var(--or-muted); font-size: 14px; margin: 10px 0 0; line-height: 1.7; }

/* Testimonials */
.or-testimonials-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.or-carousel-controls { display: flex; gap: 10px; }
.or-carousel-btn { width: 44px; height: 44px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--or-transition); color: var(--or-navy); }
.or-carousel-btn:hover { background: var(--or-navy); color: var(--or-white); border-color: var(--or-navy); transform: translateY(-1px); }
.or-testimonial-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.or-testimonial-item { display: none; }
.or-testimonial-item.is-visible { display: block; }
.or-testimonial-card { background: var(--or-white); border-radius: 10px; padding: 32px; border: 1px solid var(--or-border); transition: var(--or-transition); height: 100%; }
.or-testimonial-card:hover { border-color: var(--or-navy); box-shadow: 0 12px 30px -8px rgba(0,30,64,.1); }
.or-stars { display: flex; gap: 4px; color: #F59E0B; margin-bottom: 18px; }
.or-testimonial-card > p { font-size: 15px; line-height: 1.75; color: var(--or-text); margin: 0; }
.or-reviewer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--or-border); display: flex; flex-direction: column; }
.or-reviewer strong { font-weight: 700; color: var(--or-navy); font-size: 15px; }
.or-reviewer span { font-size: 13px; color: var(--or-muted); margin-top: 2px; }
.or-reviewer small { font-size: 13px; color: var(--or-red); font-weight: 600; margin-top: 2px; }
.or-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.or-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--or-border); border: none; cursor: pointer; transition: var(--or-transition); padding: 0; }
.or-dot.is-active { background: var(--or-red); width: 24px; }

/* FAQ */
.or-faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.or-faq-intro { position: sticky; top: 100px; }
.or-faq-contact { margin-top: 32px; padding: 24px; background: var(--or-white); border-radius: 10px; border: 1px solid var(--or-border); }
.or-faq-contact p { font-size: 14px; color: var(--or-text); line-height: 1.6; margin: 0; }
.or-faq-contact .or-btn { margin-top: 14px; padding: 12px 22px; font-size: 13px; }
.or-faq-items { display: flex; flex-direction: column; gap: 12px; }
.or-faq-item { background: var(--or-white); border-radius: 10px; border: 1px solid var(--or-border); overflow: hidden; transition: var(--or-transition); }
.or-faq-item.is-open { border-color: var(--or-red); }
.or-faq-toggle { width: 100%; padding: 22px 24px; background: transparent; border: none; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--or-font-body); }
.or-faq-toggle > span { font-size: 16px; font-weight: 600; color: var(--or-navy); line-height: 1.4; }
.or-faq-toggle i { width: 36px; height: 36px; border-radius: 999px; background: var(--or-light-gray); color: var(--or-navy); display: flex; align-items: center; justify-content: center; transition: var(--or-transition); flex-shrink: 0; font-style: normal; }
.or-faq-item.is-open .or-faq-toggle i { background: var(--or-red); color: var(--or-white); transform: rotate(45deg); }
.or-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.or-faq-item.is-open .or-faq-answer { max-height: 460px; }
.or-faq-answer p { padding: 0 24px 22px; color: var(--or-text); font-size: 15px; line-height: 1.75; margin: 0; }

/* CTA */
.or-cta { background: var(--or-navy); position: relative; overflow: hidden; }
.or-cta-glow { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-cta-inner { padding-top: 80px; padding-bottom: 80px; position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; }
.or-cta h2 { font-size: 38px; color: var(--or-white); }
.or-cta p { color: rgba(255,255,255,.7); font-size: 16px; margin: 16px 0 0; line-height: 1.7; max-width: 520px; }
.or-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.or-cta-buttons .or-btn { padding: 16px 32px; font-size: 15px; }

/* Contact */
.or-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.or-contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.or-contact-detail { display: flex; gap: 16px; align-items: center; padding: 16px; background: var(--or-light-gray); border-radius: 10px; }
.or-contact-detail > span { width: 44px; height: 44px; border-radius: 8px; background: var(--or-white); display: flex; align-items: center; justify-content: center; color: var(--or-navy); flex-shrink: 0; }
.or-contact-detail small { display: block; font-size: 11px; color: var(--or-muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.or-contact-detail strong { display: block; font-size: 15px; color: var(--or-navy); font-weight: 600; margin-top: 2px; }
.or-inquiry { background: var(--or-light-gray); border-radius: 12px; padding: 40px; }
.or-inquiry h3 { font-size: 22px; }
.or-inquiry > p { color: var(--or-muted); font-size: 14px; margin: 8px 0 0; }
.or-inquiry-fields { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.or-form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.or-inquiry label { display: block; }
.or-inquiry label span { font-size: 12px; font-weight: 600; color: var(--or-navy); display: block; margin-bottom: 6px; letter-spacing: .05em; text-transform: uppercase; }
.or-input, .or-inquiry input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=hidden]):not([type=button]), .or-inquiry textarea, .or-inquiry select { width: 100%; padding: 13px 16px; border-radius: 6px; border: 1px solid var(--or-border); font-size: 15px; font-family: var(--or-font-body); outline: none; transition: border-color .3s; background: var(--or-white); color: var(--or-navy); }
.or-input:focus, .or-inquiry input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=hidden]):not([type=button]):focus, .or-inquiry textarea:focus, .or-inquiry select:focus { border-color: var(--or-red); }
.or-inquiry textarea { resize: vertical; }
.or-form-button { width: 100%; padding: 16px; font-size: 15px; margin-top: 4px; }

/* Footer */
.or-footer { background: var(--or-navy); color: var(--or-white); }
.or-footer-inner { padding-top: 72px; padding-bottom: 32px; }
.or-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.or-footer-logo { height: 52px; width: auto; display: block; }
.or-footer .or-logo-text { color: var(--or-white); }
.or-footer-about { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; margin: 20px 0 0; max-width: 320px; }
.or-footer h4 { color: var(--or-white); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 18px; }
.or-footer-link { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .3s; display: block; padding: 5px 0; }
.or-footer-link:hover { color: var(--or-white); }
.or-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 56px; padding-top: 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px 28px; }
.or-footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; margin: 0; }
.or-footer-copyright { justify-self: start; }
.or-footer-socials { display: flex; align-items: center; justify-content: center; gap: 10px; }
.or-footer-social { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: rgba(255,255,255,.68); border: 1px solid rgba(255,255,255,.13); transition: all .3s; }
.or-footer-social:hover { color: var(--or-white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.or-footer-social svg { width: 17px; height: 17px; }
.or-footer-legal { justify-self: end; display: flex; align-items: center; gap: 24px; }
.or-footer-bottom .or-footer-link { font-size: 13px; }
.or-footer-credit { grid-column: 1; justify-self: start; margin-top: -8px; }
.or-footer-credit-link { color: rgba(255,255,255,.72); font-weight: 600; transition: color .3s; }
.or-footer-credit-link:hover { color: var(--or-white); }

/* Floating actions */
.or-whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 60px; height: 60px; border-radius: 999px; background: var(--or-whatsapp); color: var(--or-white); display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .3s; animation: orWhatsappPulse 2s infinite; }
.or-whatsapp-fab:hover { color: var(--or-white); transform: scale(1.08); }
@keyframes orWhatsappPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.or-back-to-top { position: fixed; bottom: 96px; right: 24px; z-index: 998; width: 44px; height: 44px; border-radius: 999px; background: var(--or-navy); color: var(--or-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); pointer-events: none; transition: var(--or-transition); box-shadow: 0 6px 18px rgba(0,30,64,.3); }
.or-back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 968px) {
  .or-container { padding-left: 20px; padding-right: 20px; }
  .or-section-padding { padding-top: 64px; padding-bottom: 64px; }
  .or-section-compact { padding-top: 64px; padding-bottom: 64px; }
  .or-nav-row { height: 84px; padding-left: 20px; padding-right: 20px; }
  .or-brand { height: 64px; }
  .or-brand img { height: 58px; }
  .or-desktop-nav { display: none; }
  .or-mobile-toggle { display: flex; }
  .or-hero-inner { padding-top: 120px; padding-bottom: 80px; }
  .or-hero-title { font-size: 40px; }
  .or-section-title { font-size: 32px; }
  .or-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .or-grid-3 { grid-template-columns: 1fr; }
  .or-grid-2, .or-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .or-hero-buttons { flex-direction: column; align-items: stretch; }
  .or-process-grid { grid-template-columns: 1fr; gap: 20px; }
  .or-about-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; }
  .or-highlight { align-items: center; gap: 12px; min-width: 0; }
  .or-highlight > span { width: 34px; height: 34px; border-radius: 0; background: transparent; }
  .or-highlight > span svg { width: 28px; height: 28px; }
  .or-highlight strong { font-size: 15px; line-height: 1.35; display: block; min-width: 0; }
  .or-impact .or-impact-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .or-stat:nth-child(2) { border-right: none; padding-right: 0; }
  .or-partner-grid { gap: 24px; }
  .or-partner-logo { font-size: 16px; }
  .or-faq-grid, .or-contact-grid, .or-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .or-faq-intro { position: static; }
  .or-cta-buttons { justify-content: flex-start; }
  .or-testimonial-grid { grid-template-columns: 1fr; }
  .or-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .or-whatsapp-fab { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .or-back-to-top { bottom: 84px; right: 20px; }
  .or-impact { background-attachment: scroll; }
}
@media (max-width: 560px) {
  .or-grid-4 { grid-template-columns: 1fr; }
  .or-footer-grid { grid-template-columns: 1fr; }
  .or-hero-title { font-size: 34px; }
  .or-about-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 14px; }
  .or-highlight { align-items: center; gap: 10px; min-width: 0; }
  .or-highlight > span { width: 30px; height: 30px; }
  .or-highlight > span svg { width: 24px; height: 24px; }
  .or-highlight strong { font-size: 14px; line-height: 1.35; display: block; min-width: 0; }
  .or-impact .or-impact-stats { grid-template-columns: 1fr; }
  .or-stat, .or-stat:nth-child(2) { border-right: none; padding-right: 0; }
  .or-form-two { grid-template-columns: 1fr; }
}

/* Catalogue archive page */
.or-catalogue-hero { min-height: 55vh; display: flex; align-items: center; background-size: cover; background-position: center; position: relative; }
.or-catalogue-hero-inner { padding-top: 140px; padding-bottom: 80px; }
.or-breadcrumb { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.or-breadcrumb a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; transition: color .3s; }
.or-breadcrumb span { display: flex; align-items: center; }
.or-breadcrumb strong { font-size: 13px; font-weight: 600; }
.or-breadcrumb-light a { color: rgba(255,255,255,.7); }
.or-breadcrumb-light a:hover { color: var(--or-white); }
.or-breadcrumb-light span { color: rgba(255,255,255,.4); }
.or-breadcrumb-light strong { color: var(--or-white); }
.or-catalogue-title { font-size: 56px; margin-top: 24px; max-width: 880px; line-height: 1.15; }
.or-catalogue-intro { font-size: 18px; color: rgba(255,255,255,.8); max-width: 680px; line-height: 1.7; margin: 24px 0 0; font-weight: 300; }
.or-catalogue-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.or-catalogue-actions .or-btn { padding: 16px 32px; font-size: 15px; }
.or-catalogue-filter { background: var(--or-light-gray); border-bottom: 1px solid var(--or-border); position: sticky; top: 0; z-index: 50; }
.or-filter-inner { padding-top: 20px; padding-bottom: 20px; }
.or-filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.or-search-wrap { position: relative; flex: 1; max-width: 420px; display: block; }
.or-search-wrap > span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--or-muted); display: flex; }
.or-search-input { width: 100%; padding: 13px 16px 13px 46px; border-radius: 999px; border: 1px solid var(--or-border); font-size: 14px; font-family: var(--or-font-body); outline: none; transition: var(--or-transition); background: var(--or-white); color: var(--or-navy); }
.or-search-input:focus { border-color: var(--or-red); box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.or-filter-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); color: var(--or-navy); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--or-transition); font-family: var(--or-font-body); }
.or-filter-toggle:hover { border-color: var(--or-navy); }
.or-filter-toggle.is-active { background: var(--or-navy); color: var(--or-white); border-color: var(--or-navy); }
.or-filter-toggle svg:last-of-type { transition: transform .3s; }
.or-filter-toggle.is-open svg:last-of-type { transform: rotate(180deg); }
.or-filter-toggle em { display: none; font-style: normal; background: var(--or-red); color: var(--or-white); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-left: 4px; }
.or-filter-toggle.has-filter em { display: inline-block; }
.or-filter-panel { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1), margin-top .3s; }
.or-filter-panel.is-open { max-height: 200px; margin-top: 16px; }
.or-filter-chips { border-top: 1px solid var(--or-border); padding-top: 16px; padding-bottom: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.or-filter-chip { padding: 9px 18px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); color: var(--or-navy); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--or-transition); font-family: var(--or-font-body); letter-spacing: .02em; }
.or-filter-chip:hover { border-color: var(--or-navy); background: var(--or-light-gray); }
.or-filter-chip.is-active { background: var(--or-navy); color: var(--or-white); border-color: var(--or-navy); }
.or-catalogue-grid-section { background: var(--or-light-gray); }
.or-catalogue-grid-inner { padding-top: 56px; padding-bottom: 100px; }
.or-product-count { font-size: 14px; color: var(--or-muted); font-weight: 600; margin: 0 0 32px; }
.or-product-count strong { color: var(--or-navy); }
.or-archive-products { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.or-archive-product.is-filtered { display: none; }
.or-archive-card { background: var(--or-white); border-radius: var(--or-card-radius); overflow: hidden; border: 1px solid var(--or-border); transition: all .5s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; cursor: pointer; height: 100%; }
.or-archive-card:hover { transform: translateY(-6px); border-color: var(--or-red); box-shadow: 0 24px 50px -12px rgba(0,30,64,.18); }
.or-archive-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--or-light-gray); }
.or-archive-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); display: block; }
.or-archive-card:hover .or-archive-image img { transform: scale(1.06); }
.or-featured-badge, .or-category-badge { position: absolute; top: 16px; font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.or-featured-badge { left: 16px; background: var(--or-red); color: var(--or-white); }
.or-featured-badge svg { width: 10px; height: 10px; }
.or-category-badge { right: 16px; background: var(--or-white); color: var(--or-navy); }
.or-archive-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.or-archive-content h3 { font-size: 22px; }
.or-archive-content > p { font-size: 14px; color: var(--or-muted); line-height: 1.6; margin: 10px 0 0; }
.or-card-facts { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.or-card-facts span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--or-text); font-weight: 500; }
.or-card-facts svg { width: 14px; height: 14px; color: var(--or-muted); flex-shrink: 0; }
.or-archive-action { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--or-border); color: var(--or-navy); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; justify-content: space-between; }
.or-archive-empty { text-align: center; padding: 80px 24px; background: var(--or-white); border-radius: 14px; }
.or-archive-empty h3 { font-size: 24px; }
.or-archive-empty p { color: var(--or-muted); margin: 12px 0 0; }
.or-archive-empty .or-btn { margin-top: 24px; }
.or-custom-sourcing { background: var(--or-white); }
.or-custom-sourcing-inner { padding-top: 100px; padding-bottom: 100px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.or-source-intro { position: sticky; top: 100px; }
.or-source-intro .or-section-title { font-size: 38px; }
.or-source-intro p { color: var(--or-muted); margin: 20px 0 0; line-height: 1.7; font-size: 16px; }
.or-source-intro .or-btn { margin-top: 28px; }
.or-source-list-title { font-size: 13px; color: var(--or-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 20px; }
.or-custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.or-custom-card { background: var(--or-white); border: 1px solid var(--or-border); border-radius: 10px; padding: 18px 22px; transition: var(--or-transition); cursor: pointer; }
.or-custom-card:hover { border-color: var(--or-red); background: var(--or-light-gray); transform: translateY(-2px); }
.or-custom-card strong { font-size: 15px; font-weight: 700; color: var(--or-navy); display: block; }
.or-custom-card span { font-size: 12px; color: var(--or-muted); margin-top: 4px; font-weight: 500; display: block; }
.or-source-note { margin-top: 24px; padding: 20px; background: var(--or-green-light); border-radius: 10px; border-left: 3px solid var(--or-green); }
.or-source-note p { font-size: 13px; color: var(--or-navy); font-weight: 600; line-height: 1.6; margin: 0; }
.or-guarantees { background: var(--or-light-gray); }
.or-guarantees-inner { padding-top: 80px; padding-bottom: 80px; }
.or-guarantee-grid { gap: 24px; }
.or-guarantee-grid > div > span { width: 48px; height: 48px; border-radius: 10px; background: var(--or-white); color: var(--or-navy); display: flex; align-items: center; justify-content: center; border: 1px solid var(--or-border); }
.or-guarantee-grid h3 { font-size: 17px; margin-top: 18px; }
.or-guarantee-grid p { color: var(--or-muted); font-size: 13px; margin: 8px 0 0; line-height: 1.6; }
.or-catalogue-cta { background: var(--or-navy); position: relative; overflow: hidden; }
.or-catalogue-glow-red { position: absolute; top: -100px; right: -50px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-catalogue-glow-green { position: absolute; bottom: -100px; left: -50px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.09) 0%, transparent 70%); }
.or-catalogue-cta-inner { padding-top: 80px; padding-bottom: 80px; position: relative; z-index: 1; text-align: center; max-width: 816px; }
.or-catalogue-cta h2 { font-size: 40px; }
.or-catalogue-cta p { color: rgba(255,255,255,.75); font-size: 17px; margin: 16px auto 0; line-height: 1.7; max-width: 720px; }
.or-catalogue-cta-inner > div:last-child { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.or-catalogue-cta .or-btn { padding: 16px 32px; font-size: 15px; }

/* Dynamic single product page */
.or-single-breadcrumb { background: var(--or-light-gray); border-bottom: 1px solid var(--or-border); }
.or-single-breadcrumb-inner { padding-top: 20px; padding-bottom: 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.or-single-breadcrumb a { display: flex; align-items: center; gap: 6px; color: var(--or-muted); font-size: 13px; font-weight: 500; transition: color .3s; }
.or-single-breadcrumb a:hover { color: var(--or-red); }
.or-single-breadcrumb span { color: var(--or-muted); display: flex; }
.or-single-breadcrumb strong { color: var(--or-navy); font-size: 13px; font-weight: 600; }
.or-single-hero { background: var(--or-white); }
.or-single-hero-inner { padding-top: 64px; padding-bottom: 80px; }
.or-single-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.or-gallery-main { width: 100%; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: var(--or-light-gray); position: relative; }
.or-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: none; transition: opacity .4s; }
.or-gallery-main img.is-active { display: block; }
.or-gallery-thumbs { display: grid; gap: 10px; margin-top: 14px; }
.or-thumbnail { aspect-ratio: 1; border-radius: 10px; overflow: hidden; cursor: pointer; transition: var(--or-transition); border: 2px solid transparent; opacity: .65; padding: 0; background: transparent; }
.or-thumbnail:hover, .or-thumbnail.is-active { opacity: 1; }
.or-thumbnail.is-active { border-color: var(--or-red); }
.or-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }
.or-product-info h1 { font-size: 46px; margin-top: 20px; }
.or-scientific { font-size: 13px; color: var(--or-muted); font-style: italic; margin: 6px 0 0; }
.or-product-tagline { font-size: 17px; color: var(--or-text); line-height: 1.7; margin: 20px 0 0; }
.or-quick-specs { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.or-quick-specs > div { padding: 16px 18px; background: var(--or-light-gray); border-radius: 8px; border-left: 3px solid var(--or-red); }
.or-quick-specs small { font-size: 10px; color: var(--or-muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; display: block; }
.or-quick-specs strong { font-size: 14px; color: var(--or-navy); font-weight: 700; margin-top: 4px; display: block; }
.or-cert-badges { margin-top: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.or-cert-badges span { display: inline-flex; align-items: center; gap: 8px; background: var(--or-green-light); color: var(--or-green); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 999px; letter-spacing: .05em; text-transform: uppercase; }
.or-single-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.or-single-actions .or-btn { padding: 16px 32px; font-size: 15px; }
.or-product-overview { background: var(--or-light-gray); }
.or-product-overview-inner { padding-top: 100px; padding-bottom: 100px; }
.or-product-overview-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.or-product-overview .or-section-title { font-size: 38px; }
.or-description-text { font-size: 16px; color: var(--or-text); line-height: 1.8; margin-top: 24px; }
.or-description-text p { margin: 0 0 16px; }
.or-description-text p:last-child { margin-bottom: 0; }
.or-key-features { margin-top: 32px; padding: 28px; background: var(--or-white); border-radius: 12px; border: 1px solid var(--or-border); }
.or-key-features h3 { font-size: 12px; color: var(--or-green); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.or-key-features p { display: flex; align-items: flex-start; gap: 12px; margin: 0 0 12px; font-size: 15px; color: var(--or-text); line-height: 1.5; }
.or-key-features p:last-child { margin-bottom: 0; }
.or-key-features p span { width: 22px; height: 22px; border-radius: 999px; background: var(--or-green); color: var(--or-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.or-description-image { border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; }
.or-description-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.or-technical { background: var(--or-white); }
.or-technical-inner { padding-top: 100px; padding-bottom: 100px; }
.or-technical-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.or-technical-intro { position: sticky; top: 32px; }
.or-technical-intro .or-section-title { font-size: 38px; }
.or-technical-intro > p { color: var(--or-muted); margin: 18px 0 0; line-height: 1.7; font-size: 16px; }
.or-tech-notice { margin-top: 28px; padding: 24px; background: var(--or-navy); border-radius: 10px; }
.or-tech-notice p { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500; line-height: 1.6; margin: 0; }
.or-tech-notice .or-btn { margin-top: 14px; padding: 12px 22px; font-size: 13px; }
.or-spec-table { background: var(--or-light-gray); border-radius: 12px; padding: 8px 32px; }
.or-spec-table > div { display: grid; grid-template-columns: 1fr 1fr; padding: 16px 0; border-bottom: 1px solid var(--or-border); gap: 16px; }
.or-spec-table > div:last-child { border-bottom: none; }
.or-spec-table small { font-size: 13px; font-weight: 600; color: var(--or-muted); letter-spacing: .04em; text-transform: uppercase; }
.or-spec-table strong { font-size: 15px; color: var(--or-navy); font-weight: 600; font-family: var(--or-font-body); }
.or-related { background: var(--or-light-gray); }
.or-related-inner { padding-top: 100px; padding-bottom: 100px; }
.or-related-heading { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.or-related-heading .or-section-title { font-size: 38px; }
.or-related-grid { gap: 24px; margin-top: 56px; }
.or-related-card { background: var(--or-white); border-radius: 14px; overflow: hidden; border: 1px solid var(--or-border); transition: all .4s cubic-bezier(.16,1,.3,1); cursor: pointer; display: block; height: 100%; }
.or-related-card:hover { transform: translateY(-6px); border-color: var(--or-red); box-shadow: 0 24px 50px -12px rgba(0,30,64,.18); }
.or-related-card > div { overflow: hidden; }
.or-related-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.or-related-card:hover img { transform: scale(1.06); }
.or-related-card section { padding: 24px; }
.or-related-card h3 { font-size: 22px; }
.or-related-card p { font-size: 14px; color: var(--or-muted); margin: 8px 0 0; line-height: 1.6; }
.or-related-card section > span { margin-top: 18px; color: var(--or-navy); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.or-editor-message { padding: 22px; border: 1px dashed var(--or-border); border-radius: 10px; background: var(--or-light-gray); }

@media (max-width: 968px) {
  .or-catalogue-hero-inner { padding-top: 100px; padding-bottom: 60px; }
  .or-catalogue-title { font-size: 40px; }
  .or-filter-bar { flex-direction: column; align-items: stretch; gap: 12px; }
  .or-search-wrap { max-width: 100%; }
  .or-catalogue-grid-inner { padding-top: 64px; padding-bottom: 64px; }
  .or-archive-products { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .or-custom-sourcing-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; padding-bottom: 64px; }
  .or-source-intro { position: static; }
  .or-custom-grid { grid-template-columns: 1fr 1fr; }
  .or-guarantees-inner, .or-catalogue-cta-inner { padding-top: 64px; padding-bottom: 64px; }
  .or-catalogue-cta h2 { font-size: 32px; }
  .or-single-hero-inner, .or-product-overview-inner, .or-technical-inner, .or-related-inner { padding-top: 64px; padding-bottom: 64px; }
  .or-single-hero-grid, .or-product-overview-grid, .or-technical-grid { grid-template-columns: 1fr; gap: 40px; }
  .or-product-info h1 { font-size: 36px; }
  .or-technical-intro { position: static; }
  .or-spec-table > div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 560px) {
  .or-catalogue-title { font-size: 34px; }
  .or-archive-products, .or-custom-grid { grid-template-columns: 1fr; }
  .or-product-info h1 { font-size: 30px; }
  .or-quick-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .or-quick-specs > div { min-width: 0; padding: 13px 11px; }
  .or-quick-specs small { font-size: 9px; line-height: 1.35; }
  .or-quick-specs strong { font-size: 13px; line-height: 1.4; overflow-wrap: anywhere; }
}

/* v1.1.1 - Fluent Forms integration */
.or-inquiry .or-fluent-form { margin-top: 28px; font-family: var(--or-font-body); }
.or-inquiry .or-fluent-form .frm-fluent-form,
.or-inquiry .or-fluent-form .fluentform { font-family: var(--or-font-body); }
.or-inquiry .or-fluent-form .ff-el-group { margin-bottom: 18px; }
.or-inquiry .or-fluent-form .ff-t-container { gap: 18px; }
.or-inquiry .or-fluent-form .ff-el-input--label label,
.or-inquiry .or-fluent-form label { display: block; margin: 0 0 6px; color: var(--or-navy); font-family: var(--or-font-body); font-size: 12px; font-weight: 600; letter-spacing: .05em; line-height: 1.45; text-transform: uppercase; }
.or-inquiry .or-fluent-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.or-inquiry .or-fluent-form select,
.or-inquiry .or-fluent-form textarea,
.or-inquiry .or-fluent-form .ff-el-form-control {
  width: 100%; min-height: 48px; padding: 13px 16px; border: 1px solid var(--or-border); border-radius: 6px;
  background: var(--or-white); box-shadow: none; color: var(--or-navy); font-family: var(--or-font-body); font-size: 15px;
  transition: border-color .3s, box-shadow .3s;
}
.or-inquiry .or-fluent-form textarea,
.or-inquiry .or-fluent-form textarea.ff-el-form-control { min-height: 120px; resize: vertical; }
.or-inquiry .or-fluent-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.or-inquiry .or-fluent-form select:focus,
.or-inquiry .or-fluent-form textarea:focus,
.or-inquiry .or-fluent-form .ff-el-form-control:focus { border-color: var(--or-red); box-shadow: 0 0 0 3px rgba(220,38,38,.09); outline: none; }
.or-inquiry .or-fluent-form .ff-el-is-error .ff-el-form-control,
.or-inquiry .or-fluent-form .error .ff-el-form-control { border-color: var(--or-red); }
.or-inquiry .or-fluent-form .text-danger,
.or-inquiry .or-fluent-form .error.text-danger { color: var(--or-red); font-family: var(--or-font-body); font-size: 12px; margin-top: 5px; }
.or-inquiry .or-fluent-form .ff-btn-submit,
.or-inquiry .or-fluent-form button[type="submit"],
.or-inquiry .or-fluent-form input[type="submit"] {
  appearance: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px;
  padding: 14px 28px; border: none; border-radius: 6px; background: var(--or-red); color: var(--or-white);
  font-family: var(--or-font-body); font-size: 14px; font-weight: 600; letter-spacing: .02em; cursor: pointer;
  transition: all .3s;
}
.or-inquiry .or-fluent-form .ff-btn-submit:hover,
.or-inquiry .or-fluent-form button[type="submit"]:hover,
.or-inquiry .or-fluent-form input[type="submit"]:hover {
  background: #b91c1c; color: var(--or-white); transform: translateY(-1px); box-shadow: 0 10px 25px rgba(220,38,38,.25);
}
.or-inquiry .or-fluent-form .ff-message-success { padding: 16px 18px; border: 1px solid rgba(22,163,74,.25); border-radius: 8px; background: var(--or-green-light); color: var(--or-navy); font-family: var(--or-font-body); }
.or-inquiry .or-fluent-form input[type="checkbox"],
.or-inquiry .or-fluent-form input[type="radio"] { width: auto; min-height: 0; padding: 0; border: 0; box-shadow: none; accent-color: var(--or-red); }
.or-inquiry .or-fluent-form .ff-el-form-check label { display: inline; color: var(--or-text); font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; }

/* v1.1.1 - Products archive toolbar, filter drawer and sorting */
body.or-filter-open { overflow: hidden; }
.or-filter-inner { padding-top: 20px; padding-bottom: 20px; }
.or-filter-bar { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.or-catalogue-tools { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.or-filter-toggle { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); color: var(--or-navy); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--or-transition); font-family: var(--or-font-body); white-space: nowrap; }
.or-filter-toggle:hover, .or-filter-toggle.is-active { border-color: var(--or-navy); }
.or-toolbar-count { min-width: 88px; margin: 0; color: var(--or-muted); font-size: 15px; white-space: nowrap; }
.or-toolbar-count strong { color: var(--or-navy); font-size: 18px; font-weight: 700; }
.or-sort { width: 218px; position: relative; }
.or-sort-toggle { width: 100%; min-height: 48px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--or-white); border: 1px solid var(--or-border); border-radius: 8px; color: var(--or-navy); font: 600 14px var(--or-font-body); cursor: pointer; transition: var(--or-transition); }
.or-sort-toggle:hover, .or-sort.is-open .or-sort-toggle { border-color: var(--or-navy); }
.or-sort-toggle svg { transition: transform .25s ease; }
.or-sort.is-open .or-sort-toggle svg { transform: rotate(180deg); }
.or-sort-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 90; width: 100%; min-width: 240px; border: 1px solid var(--or-border); border-radius: 12px; background: var(--or-white); box-shadow: 0 18px 42px rgba(0,30,64,.13); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .22s ease; }
.or-sort.is-open .or-sort-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.or-sort-menu button { width: 100%; padding: 16px 17px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 0; border-bottom: 1px solid var(--or-border); background: transparent; color: var(--or-navy); font: 500 14px var(--or-font-body); text-align: left; cursor: pointer; }
.or-sort-menu button:last-child { border-bottom: 0; }
.or-sort-menu button:hover, .or-sort-menu button.is-selected { background: var(--or-light-gray); }
.or-sort-menu i { width: 18px; height: 18px; display: block; border: 2px solid var(--or-border); border-radius: 50%; position: relative; flex-shrink: 0; }
.or-sort-menu button.is-selected i { border-color: var(--or-red); }
.or-sort-menu button.is-selected i::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--or-red); }
.or-filter-overlay { position: fixed; inset: 0; z-index: 1048; background: rgba(0,30,64,.38); opacity: 0; transition: opacity .26s ease; }
.or-filter-overlay.is-open { opacity: 1; }
.or-filter-drawer { position: fixed; top: 0; left: 0; bottom: 0; z-index: 1049; width: min(420px, calc(100vw - 30px)); background: var(--or-white); box-shadow: 18px 0 45px rgba(0,30,64,.16); transform: translateX(-105%); visibility: hidden; transition: transform .32s cubic-bezier(.16,1,.3,1), visibility .32s; overflow-y: auto; }
.or-filter-drawer.is-open { transform: translateX(0); visibility: visible; }
.or-filter-drawer-head { padding: 32px 32px 26px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--or-border); }
.or-filter-drawer-head h2 { margin: 0; font-size: 28px; }
.or-filter-drawer-head button { border: 0; background: transparent; color: var(--or-navy); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 4px; }
.or-filter-drawer-body { padding: 30px 32px; }
.or-filter-category-title { margin: 0 0 18px; color: var(--or-red); font: 700 13px var(--or-font-body); letter-spacing: .12em; text-transform: uppercase; }
.or-filter-category-list { display: flex; flex-direction: column; gap: 8px; }
.or-filter-category { width: 100%; min-height: 54px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; border-radius: 10px; background: transparent; color: var(--or-text); font: 600 15px var(--or-font-body); cursor: pointer; text-align: left; transition: all .22s ease; }
.or-filter-category strong { color: var(--or-muted); font-weight: 500; }
.or-filter-category:hover { background: var(--or-light-gray); color: var(--or-navy); }
.or-filter-category.is-active { background: rgba(220,38,38,.075); color: var(--or-red); }
.or-filter-category.is-active strong { color: var(--or-red); }
.or-catalogue-grid-inner { padding-top: 48px; }

/* v1.1.1 - Floating actions aligned to one vertical axis */
.or-floating-tools { position: fixed; right: 24px; bottom: 24px; z-index: 999; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.or-floating-tools .or-whatsapp-fab { position: static; width: 52px; height: 52px; animation: orWhatsappPulse 2s infinite; }
.or-floating-tools .or-whatsapp-fab svg { width: 24px; height: 24px; }
.or-floating-tools .or-back-to-top { position: static; width: 40px; height: 40px; transform: translateY(12px); }
.or-floating-tools .or-back-to-top.is-visible { transform: translateY(0); }
.or-floating-tools .or-back-to-top svg { width: 18px; height: 18px; }

@media (max-width: 1100px) {
  .or-filter-bar { flex-wrap: wrap; }
  .or-catalogue-tools { margin-left: 0; flex: 1 1 100%; justify-content: space-between; }
}
@media (max-width: 968px) {
  .or-filter-bar { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
  .or-catalogue-tools { display: grid; grid-template-columns: auto 1fr; gap: 12px 16px; align-items: center; }
  .or-sort { grid-column: 1 / -1; width: 100%; }
  .or-toolbar-count { text-align: right; }
  .or-filter-drawer-head { padding: 26px 22px 22px; }
  .or-filter-drawer-head h2 { font-size: 26px; }
  .or-filter-drawer-body { padding: 25px 22px; }
  .or-floating-tools { right: 18px; bottom: 18px; gap: 10px; }
  .or-floating-tools .or-whatsapp-fab { width: 48px; height: 48px; }
  .or-floating-tools .or-whatsapp-fab svg { width: 23px; height: 23px; }
  .or-floating-tools .or-back-to-top { width: 38px; height: 38px; }
}


/* v1.1.2 - Keep fixed header visible below the WordPress toolbar while logged in */
:root { --or-admin-offset: 0px; }
body.admin-bar { --or-admin-offset: 32px; }
.or-progress, .or-nav { top: var(--or-admin-offset, 0px); }
@media screen and (max-width: 782px) {
  body.admin-bar { --or-admin-offset: 46px; }
}

/* v1.3.2 - Page breadcrumbs sit inside the hero, matching the Products archive layout. */
.or-about-hero-breadcrumb, .or-contact-hero-breadcrumb, .or-impact-hero-breadcrumb { margin-bottom: 32px; }
body.admin-bar .or-about-hero-inner,
body.admin-bar .or-contact-hero-inner,
body.admin-bar .or-impact-hero-inner { padding-top: calc(140px + var(--or-admin-offset, 0px)); }

/* About page */
.or-about-page { font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
.or-about-breadcrumb-bar { background: var(--or-navy); padding-top: 16px; padding-bottom: 16px; }
.or-about-breadcrumb { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.or-about-breadcrumb a { color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; transition: color .3s; }
.or-about-breadcrumb a:hover { color: var(--or-white); }
.or-about-breadcrumb span { color: rgba(255,255,255,.4); display: flex; align-items: center; }
.or-about-breadcrumb strong { color: var(--or-white); font-size: 13px; font-weight: 600; }
.or-about-hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.or-about-hero-bg { position: absolute; inset: -10% 0; z-index: 0; background-image: linear-gradient(135deg, rgba(0,30,64,.82) 0%, rgba(0,30,64,.68) 100%), var(--or-about-hero-bg); background-size: cover; background-position: center; will-change: transform; }
.or-about-hero-inner { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 100px; width: 100%; }
.or-about-hero-eyebrow { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.or-about-page.is-ready .or-about-hero-eyebrow { opacity: 1; transform: translateY(0); }
.or-about-hero-title { font-size: 72px; color: var(--or-white); max-width: 1000px; margin-top: 28px; }
.or-about-word { display: inline-block; opacity: 0; transform: translateY(60px); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); transition-delay: var(--or-word-delay, 0ms); }
.or-about-page.is-ready .or-about-word { opacity: 1; transform: translateY(0); }
.or-about-hero-description { opacity: 0; transform: translateY(30px); font-size: 19px; color: rgba(255,255,255,.82); max-width: 680px; line-height: 1.7; margin: 28px 0 0; font-weight: 300; transition: opacity .8s cubic-bezier(.16,1,.3,1) .55s, transform .8s cubic-bezier(.16,1,.3,1) .55s; }
.or-about-page.is-ready .or-about-hero-description { opacity: 1; transform: translateY(0); }
.or-about-hero-meta { opacity: 0; transform: translateY(20px); margin-top: 36px; display: flex; gap: 32px; flex-wrap: wrap; transition: opacity .7s cubic-bezier(.16,1,.3,1) .75s, transform .7s cubic-bezier(.16,1,.3,1) .75s; }
.or-about-page.is-ready .or-about-hero-meta { opacity: 1; transform: translateY(0); }
.or-about-meta-item small { display: block; font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.or-about-meta-item strong { display: block; color: var(--or-white); font-size: 24px; margin-top: 4px; }
.or-about-story { background: var(--or-white); }
.or-about-story-grid { gap: 80px; align-items: center; }
.or-about-story-text { font-size: 16px; color: var(--or-text); line-height: 1.85; margin-top: 24px; }
.or-about-story-text p { margin: 0 0 16px; }
.or-about-story-text p:last-child { margin-bottom: 0; }
.or-about-story-text strong { color: var(--or-navy); }
.or-about-story-image { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; clip-path: inset(0 100% 0 0); transition: clip-path 1.4s cubic-bezier(.16,1,.3,1); }
.or-about-story-image.or-in { clip-path: inset(0 0 0 0); }
.or-about-story-image img { width: 100%; height: 110%; object-fit: cover; display: block; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.or-about-story-image:hover img { transform: scale(1.04); }
.or-about-story-overlay { position: absolute; bottom: 24px; left: 24px; right: 24px; padding: 24px; background: rgba(0,30,64,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 12px; }
.or-about-story-overlay small { color: var(--or-green); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.or-about-story-overlay .or-headline { font-size: 24px; color: var(--or-white); margin-top: 6px; }
.or-about-values { background: var(--or-light-gray); }
.or-about-centered-intro { max-width: 720px; margin: 0 auto; text-align: center; }
.or-about-values-grid { gap: 24px; margin-top: 64px; }
.or-about-value-card { background: var(--or-white); border-radius: 14px; padding: 36px; border: 1px solid var(--or-border); transition: border-color .3s, box-shadow .3s, transform .4s cubic-bezier(.16,1,.3,1); }
.or-about-value-card:hover { border-color: var(--or-red); box-shadow: 0 20px 50px -16px rgba(0,30,64,.18); transform: translateY(-4px); }
.or-about-value-icon { color: var(--or-red); display: inline-block; transition: transform .4s ease; }
.or-about-value-card:hover .or-about-value-icon { transform: rotate(10deg) scale(1.1); }
.or-about-value-card h3 { font-size: 24px; margin-top: 22px; }
.or-about-value-card p { color: var(--or-muted); font-size: 15px; line-height: 1.75; margin: 14px 0 0; }
.or-about-timeline { background: var(--or-white); }
.or-about-timeline-track { position: relative; margin-top: 80px; max-width: 960px; margin-left: auto; margin-right: auto; }
.or-about-timeline-line, .or-about-timeline-fill { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.or-about-timeline-line { background: var(--or-border); }
.or-about-timeline-fill { background: linear-gradient(180deg, var(--or-red), var(--or-green)); transform-origin: top center; transform: translateX(-50%) scaleY(0); }
.or-about-timeline-item { position: relative; padding: 24px 0; min-height: 180px; display: flex; }
.or-about-timeline-item.or-left { justify-content: flex-start; }
.or-about-timeline-item.or-right { justify-content: flex-end; }
.or-about-timeline-item.or-left.or-reveal { transform: translateX(-40px); }
.or-about-timeline-item.or-right.or-reveal { transform: translateX(40px); }
.or-about-timeline-item.or-in { opacity: 1; transform: translateX(0); }
.or-about-timeline-dot { position: absolute; left: 50%; top: 48px; width: 18px; height: 18px; border-radius: 999px; background: var(--or-white); border: 3px solid var(--or-red); transform: translateX(-50%); z-index: 2; box-shadow: 0 0 0 6px rgba(220,38,38,.08); }
.or-about-timeline-card { background: var(--or-white); border: 1px solid var(--or-border); border-radius: 12px; padding: 28px; max-width: 460px; transition: border-color .3s; }
.or-about-timeline-card:hover { border-color: var(--or-red); }
.or-about-timeline-card small { font-size: 13px; color: var(--or-red); font-weight: 700; letter-spacing: .08em; }
.or-about-timeline-card h3 { font-size: 22px; margin-top: 6px; }
.or-about-timeline-card p { color: var(--or-muted); font-size: 14px; line-height: 1.7; margin: 10px 0 0; }
.or-about-stats { background: var(--or-navy); position: relative; overflow: hidden; }
.or-about-stats:before, .or-about-stats:after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; }
.or-about-stats:before { top: -100px; right: -50px; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-about-stats:after { bottom: -100px; left: -50px; background: radial-gradient(circle, rgba(22,163,74,.12) 0%, transparent 70%); }
.or-about-stats .or-container { position: relative; z-index: 1; padding-top: 100px; padding-bottom: 100px; }
.or-about-stats .or-section-title { margin-top: 0; }
.or-about-stats .or-about-centered-intro p { color: rgba(255,255,255,.7); margin: 16px 0 0; line-height: 1.7; font-size: 17px; }
.or-about-stats-grid { gap: 24px; margin-top: 56px; }
.or-about-stat { text-align: center; padding: 32px 16px; border-right: 1px solid rgba(255,255,255,.1); }
.or-about-stat:last-child { border-right: 0; }
.or-about-stat strong { display: block; font-size: 56px; color: var(--or-white); }
.or-about-stat small { display: block; font-size: 13px; color: rgba(255,255,255,.6); margin-top: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.or-about-team { background: var(--or-white); }
.or-about-team-grid { gap: 24px; margin-top: 64px; }
.or-about-team-card { background: var(--or-white); border-radius: 14px; overflow: hidden; border: 1px solid var(--or-border); transition: border-color .3s, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s; }
.or-about-team-card:hover { border-color: var(--or-red); transform: translateY(-8px); box-shadow: 0 20px 46px -18px rgba(0,30,64,.18); }
.or-about-team-image { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: var(--or-light-gray); }
.or-about-team-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.or-about-team-card:hover img { transform: scale(1.08); }
.or-about-team-content { padding: 24px; }
.or-about-team-content h3 { font-size: 19px; }
.or-about-team-content > small { display: block; color: var(--or-red); font-size: 12px; font-weight: 700; margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }
.or-about-team-content p { color: var(--or-muted); font-size: 13px; margin: 12px 0 0; line-height: 1.6; }
.or-about-team-links { margin-top: 18px; display: flex; gap: 10px; }
.or-about-team-links a { width: 32px; height: 32px; border-radius: 6px; background: var(--or-light-gray); color: var(--or-navy); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.or-about-team-links a:hover { background: var(--or-navy); color: var(--or-white); }
.or-about-final-cta { background: var(--or-light-gray); }
.or-about-final-cta .or-container { padding-top: 100px; padding-bottom: 100px; }
.or-about-cta-card { max-width: 960px; margin: 0 auto; padding: 56px; background: var(--or-navy); border-radius: 16px; text-align: center; position: relative; overflow: hidden; }
.or-about-cta-card:before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(220,38,38,.18) 0%, transparent 70%); }
.or-about-cta-card > * { position: relative; z-index: 1; }
.or-about-cta-card h2 { font-size: 38px; }
.or-about-cta-card p { color: rgba(255,255,255,.75); margin: 16px auto 0; line-height: 1.7; font-size: 17px; max-width: 560px; }
.or-about-cta-buttons { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.or-about-cta-buttons .or-btn { padding: 16px 32px; font-size: 15px; }

@media (max-width: 968px) {
  .or-about-hero { min-height: auto; }
  .or-about-hero-inner { padding-top: 120px; padding-bottom: 80px; }
  body.admin-bar .or-about-hero-inner { padding-top: calc(120px + var(--or-admin-offset, 0px)); }
  .or-about-hero-title { font-size: 42px; }
  .or-about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .or-about-values-grid, .or-about-team-grid { grid-template-columns: 1fr; }
  .or-about-timeline-line, .or-about-timeline-fill { left: 24px; }
  .or-about-timeline-item, .or-about-timeline-item.or-left, .or-about-timeline-item.or-right { justify-content: flex-start; padding: 24px 0; min-height: auto; }
  .or-about-timeline-item.or-left.or-reveal, .or-about-timeline-item.or-right.or-reveal { transform: translateY(24px); }
  .or-about-timeline-item.or-in { transform: translateY(0); }
  .or-about-timeline-dot { left: 24px; top: 48px; }
  .or-about-timeline-card { margin-left: 60px; max-width: 100%; }
  .or-about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .or-about-stat:nth-child(2) { border-right: 0; }
  .or-about-final-cta .or-container { padding-top: 64px; padding-bottom: 64px; }
}
@media (max-width: 560px) {
  .or-about-hero-title { font-size: 34px; }
  .or-about-hero-meta { gap: 24px; }
  .or-about-stats-grid { grid-template-columns: 1fr; }
  .or-about-stat { border-right: 0; padding: 20px 16px; }
  .or-about-cta-card { padding: 40px 20px; }
}
.or-about-timeline-item.or-left.or-reveal.or-in,
.or-about-timeline-item.or-right.or-reveal.or-in { transform: translateX(0); }
@media (max-width: 968px) {
  .or-about-timeline-item.or-left.or-reveal.or-in,
  .or-about-timeline-item.or-right.or-reveal.or-in { transform: translateY(0); }
}

/* v1.3.0 - GSAP-driven page widgets */
.or-about-hero-eyebrow, .or-about-word, .or-about-hero-description, .or-about-hero-meta { opacity: 1; transform: none; transition: none; }
.or-about-story-image { clip-path: inset(0 0 0 0); transition: none; }
.or-about-timeline-fill { transform: translateX(-50%) scaleY(1); }
.or-gs-fade-up, .or-gs-stagger-item { will-change: transform, opacity; }

/* Contact Page */
.or-contact-page { font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
.or-contact-breadcrumb-bar { background: var(--or-navy); padding: 16px 0; }
.or-contact-breadcrumb { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.or-contact-breadcrumb a { color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; transition: color .3s; }
.or-contact-breadcrumb a:hover { color: var(--or-white); }
.or-contact-breadcrumb span { color: rgba(255,255,255,.4); display: flex; }
.or-contact-breadcrumb strong { color: var(--or-white); font-size: 13px; font-weight: 600; }
.or-contact-hero { position: relative; min-height: 65vh; display: flex; align-items: center; overflow: hidden; }
.or-contact-hero-bg { position: absolute; inset: -10% 0; z-index: 0; background-image: linear-gradient(135deg, rgba(0,30,64,.85) 0%, rgba(0,30,64,.7) 100%), var(--or-contact-hero-bg); background-size: cover; background-position: center; will-change: transform; }
.or-contact-hero-inner { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 100px; width: 100%; }
.or-contact-hero-title { font-size: 64px; color: var(--or-white); max-width: 900px; margin-top: 28px; }
.or-contact-word { display: inline-block; margin-right: .25em; }
.or-contact-hero-description { font-size: 19px; color: rgba(255,255,255,.85); max-width: 640px; line-height: 1.7; margin: 28px 0 0; font-weight: 300; }
.or-contact-hero-buttons { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.or-contact-hero-buttons .or-btn { padding: 16px 32px; font-size: 15px; }
.or-contact-hero-buttons .or-btn svg { flex-shrink: 0; }
.or-contact-methods { background: var(--or-white); }
.or-contact-methods .or-section-padding { padding-top: 100px; padding-bottom: 100px; }
.or-contact-methods-grid { gap: 20px; margin-top: 56px; }
.or-contact-card { background: var(--or-white); border-radius: 14px; padding: 32px; border: 1px solid var(--or-border); will-change: transform; cursor: pointer; color: var(--or-text); display: block; transition: border-color .3s, box-shadow .3s; }
.or-contact-card:hover { border-color: var(--or-red); box-shadow: 0 20px 50px -16px rgba(0,30,64,.18); }
.or-contact-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 14px; will-change: transform; }
.or-contact-icon svg { width: 26px; height: 26px; }
.or-contact-icon.or-tone-navy { color: var(--or-navy); background: rgba(0,30,64,.08); }
.or-contact-icon.or-tone-red { color: var(--or-red); background: rgba(220,38,38,.08); }
.or-contact-icon.or-tone-green { color: var(--or-green); background: rgba(22,163,74,.08); }
.or-contact-icon.or-tone-whatsapp { color: var(--or-whatsapp); background: rgba(37,211,102,.08); }
.or-contact-card small { display: block; font-size: 11px; color: var(--or-muted); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 20px; }
.or-contact-card h3 { font-size: 18px; margin-top: 6px; word-break: break-word; }
.or-contact-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--or-border); }
.or-contact-card-foot > span { font-size: 13px; color: var(--or-muted); }
.or-contact-arrow { color: var(--or-muted); opacity: .5; display: inline-flex; will-change: transform; }
.or-contact-form-section { background: var(--or-light-gray); }
.or-contact-form-grid { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.or-contact-benefits { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.or-contact-benefit { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--or-white); border-radius: 10px; }
.or-contact-benefit > span { width: 40px; height: 40px; border-radius: 8px; background: var(--or-green-light); color: var(--or-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.or-contact-benefit strong { display: block; font-weight: 700; font-size: 14px; color: var(--or-navy); }
.or-contact-benefit small { display: block; font-size: 13px; color: var(--or-muted); margin-top: 2px; }
.or-contact-form-card { background: var(--or-white); border-radius: 14px; padding: 40px; position: relative; overflow: hidden; }
.or-contact-form-card > h3 { font-size: 22px; }
.or-contact-form-card > p { color: var(--or-muted); font-size: 14px; margin: 6px 0 0; }
.or-contact-display-form, .or-page-fluent-form { margin-top: 28px; }
.or-contact-form-rows { display: flex; flex-direction: column; gap: 18px; }
.or-contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.or-contact-field label { font-size: 12px; font-weight: 700; display: block; margin-bottom: 6px; letter-spacing: .06em; text-transform: uppercase; color: var(--or-navy); transition: color .3s; }
.or-contact-field label span { color: var(--or-muted); font-weight: 500; text-transform: none; }
.or-contact-input { width: 100%; padding: 14px 16px; border-radius: 6px; border: 1px solid var(--or-border); font-size: 15px; font-family: var(--or-font-body); outline: none; transition: border-color .3s; background: var(--or-white); color: var(--or-navy); will-change: transform; }
.or-contact-input:focus { border-color: var(--or-red); }
.or-contact-input textarea, textarea.or-contact-input { resize: vertical; }
.or-contact-submit { width: 100%; padding: 16px; font-size: 15px; margin-top: 6px; }
.or-contact-privacy { font-size: 12px; color: var(--or-muted); text-align: center; margin: 6px 0 0; }
.or-page-fluent-form .fluentform, .or-page-fluent-form .frm-fluent-form { font-family: var(--or-font-body); }
.or-page-fluent-form .ff-el-group { margin-bottom: 18px; }
.or-page-fluent-form .ff-el-input--label label { font-family: var(--or-font-body); color: var(--or-navy); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.or-page-fluent-form .ff-el-form-control { width: 100%; min-height: 50px; padding: 14px 16px; border-radius: 6px; border: 1px solid var(--or-border); font-family: var(--or-font-body); font-size: 15px; color: var(--or-navy); background: var(--or-white); box-shadow: none; transition: border-color .3s, box-shadow .3s; }
.or-page-fluent-form textarea.ff-el-form-control { min-height: 130px; resize: vertical; }
.or-page-fluent-form .ff-el-form-control:focus { border-color: var(--or-red); box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.or-page-fluent-form .ff-btn-submit { width: 100%; min-height: 52px; border: 0; border-radius: 6px; padding: 16px; font-family: var(--or-font-body); font-size: 15px; font-weight: 600; letter-spacing: .02em; background: var(--or-red); color: var(--or-white); transition: var(--or-transition); }
.or-page-fluent-form .ff-btn-submit:hover { background: var(--or-red-dark); box-shadow: 0 10px 25px rgba(220,38,38,.25); transform: translateY(-1px); }
.or-page-fluent-form .ff-el-is-error .ff-el-form-control { border-color: var(--or-red); }
.or-page-fluent-form .error.text-danger, .or-page-fluent-form .ff-el-is-error .text-danger { color: var(--or-red); font-size: 12px; margin-top: 6px; }
.or-page-fluent-form .ff-message-success { border: 1px solid rgba(22,163,74,.22); background: var(--or-green-light); color: var(--or-navy); border-radius: 10px; padding: 18px; }
.or-contact-office { background: var(--or-white); }
.or-contact-office-grid { grid-template-columns: minmax(0,1.2fr) minmax(320px,1fr); gap: 48px; margin-top: 56px; align-items: stretch; }
.or-contact-office-grid > *, .or-contact-office-side, .or-contact-office-card { min-width: 0; }
.or-contact-map { border-radius: 14px; overflow: hidden; position: relative; width: 100%; min-width: 0; aspect-ratio: 16 / 10; background: var(--or-light-gray); }
.or-contact-map > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); display: block; }
.or-contact-map-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,30,64,.4) 100%); }
.or-contact-pin { position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); }
.or-contact-pin span { width: 48px; height: 48px; border-radius: 999px; background: var(--or-red); color: var(--or-white); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(220,38,38,.5); position: relative; z-index: 1; }
.or-contact-pin:after { content: ''; position: absolute; inset: -8px; border-radius: 999px; background: var(--or-red); opacity: .3; animation: orMapPulse 2s ease-in-out infinite; }
@keyframes orMapPulse { 0%,100% { transform: scale(1); opacity: .3; } 50% { transform: scale(1.4); opacity: 0; } }
.or-contact-map-card { position: absolute; bottom: 20px; left: 20px; right: 20px; padding: 20px; background: rgba(0,30,64,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 10px; }
.or-contact-map-card h3 { font-size: 18px; color: var(--or-white); }
.or-contact-map-card p { font-size: 13px; color: rgba(255,255,255,.7); margin: 4px 0 0; }
.or-contact-office-side { display: flex; flex-direction: column; gap: 20px; }
.or-contact-office-card { padding: 28px; background: var(--or-light-gray); border-radius: 14px; }
.or-contact-office-head { display: flex; align-items: center; gap: 12px; }
.or-contact-office-head > span { width: 40px; height: 40px; border-radius: 8px; background: var(--or-white); color: var(--or-navy); display: flex; align-items: center; justify-content: center; }
.or-contact-office-head h3 { font-size: 18px; }
.or-contact-address { margin-top: 14px; font-size: 15px; color: var(--or-text); line-height: 1.7; overflow-wrap: anywhere; }
.or-contact-address p { margin: 0; }
.or-contact-directions { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--or-red); font-weight: 700; font-size: 13px; letter-spacing: .04em; }
.or-contact-hours { flex: 1; }
.or-contact-hours-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.or-contact-hours-list div { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--or-border); gap: 16px; }
.or-contact-hours-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.or-contact-hours-list span { font-size: 14px; color: var(--or-text); font-weight: 500; }
.or-contact-hours-list strong { font-size: 14px; color: var(--or-navy); font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.or-contact-cta { background: var(--or-navy); padding: 100px 48px; position: relative; overflow: hidden; }
.or-contact-cta:before, .or-contact-cta:after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; }
.or-contact-cta:before { top: -100px; right: -50px; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-contact-cta:after { bottom: -100px; left: -50px; background: radial-gradient(circle, rgba(22,163,74,.09) 0%, transparent 70%); }
.or-contact-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.or-contact-cta-inner .or-section-title { font-size: 40px; margin-top: 0; }
.or-contact-cta-inner p { color: rgba(255,255,255,.75); font-size: 17px; margin: 16px 0 0; line-height: 1.7; }
.or-contact-cta-inner > div { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.or-contact-cta-inner .or-btn { padding: 16px 32px; font-size: 15px; }

/* Impact Page */
.or-impact-page { font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
.or-impact-breadcrumb-bar { background: var(--or-navy); padding: 16px 0; }
.or-impact-breadcrumb { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.or-impact-breadcrumb a { color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; transition: color .3s; }
.or-impact-breadcrumb a:hover { color: var(--or-white); }
.or-impact-breadcrumb span { color: rgba(255,255,255,.4); display: flex; }
.or-impact-breadcrumb strong { color: var(--or-white); font-size: 13px; font-weight: 600; }
.or-impact-eyebrow-dark { display: inline-flex; align-items: center; gap: 10px; background: rgba(22,163,74,.15); color: #86EFAC; padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--or-font-head); }
.or-impact-hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.or-impact-hero-bg { position: absolute; inset: -10% 0; z-index: 0; background-image: linear-gradient(135deg, rgba(0,30,64,.88) 0%, rgba(0,30,64,.7) 100%), var(--or-impact-hero-bg); background-size: cover; background-position: center; will-change: transform; }
.or-impact-hero-inner { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 100px; width: 100%; }
.or-impact-hero-title { font-size: 76px; color: var(--or-white); max-width: 1080px; margin-top: 28px; line-height: 1.05; }
.or-impact-word { display: inline-block; margin-right: .25em; }
.or-impact-hero-line { height: 4px; width: 120px; background: linear-gradient(90deg, var(--or-red), var(--or-green)); margin-top: 32px; border-radius: 4px; }
.or-impact-hero-description { font-size: 20px; color: rgba(255,255,255,.82); max-width: 720px; line-height: 1.7; margin: 32px 0 0; font-weight: 300; }
.or-impact-hero-buttons { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.or-impact-hero-buttons .or-btn { padding: 16px 32px; font-size: 15px; }
.or-impact-page .or-impact-stats { display: block; grid-template-columns: none; gap: 0; margin-top: 0; padding: 0; border: 0; border-radius: 0; background: var(--or-navy); position: relative; overflow: hidden; }
.or-impact-stats:before, .or-impact-stats:after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; }
.or-impact-stats:before { top: -100px; right: -50px; background: radial-gradient(circle, rgba(22,163,74,.15) 0%, transparent 70%); }
.or-impact-stats:after { bottom: -100px; left: -50px; background: radial-gradient(circle, rgba(220,38,38,.12) 0%, transparent 70%); }
.or-impact-stats .or-container { position: relative; z-index: 1; padding-top: 100px; padding-bottom: 100px; }
.or-impact-center { max-width: 720px; text-align: center; margin: 0 auto; }
.or-impact-center > p { color: rgba(255,255,255,.7); margin: 16px 0 0; line-height: 1.7; font-size: 17px; }
.or-impact-pillars .or-impact-center > p { color: var(--or-muted); margin-top: 18px; }
.or-impact-stats-grid { gap: 24px; margin-top: 64px; }
.or-impact-stat { text-align: center; padding: 32px 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; backdrop-filter: blur(12px); }
.or-impact-stat strong { display: block; font-size: 56px; color: var(--or-green); }
.or-impact-stat small { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-top: 14px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.or-impact-pillars { background: var(--or-white); }
.or-impact-pillar-list { margin-top: 80px; display: flex; flex-direction: column; gap: 100px; }
.or-impact-pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.or-impact-pillar.or-reverse { direction: rtl; }
.or-impact-pillar > * { direction: ltr; }
.or-impact-pillar-copy h3 { font-size: 38px; margin-top: 22px; }
.or-impact-pillar-copy > p { color: var(--or-text); font-size: 16px; line-height: 1.8; margin: 22px 0 0; }
.or-impact-points { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.or-impact-points > div { display: flex; align-items: flex-start; gap: 12px; }
.or-impact-points span { width: 24px; height: 24px; border-radius: 999px; background: var(--or-green); color: var(--or-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.or-impact-points p { font-size: 15px; color: var(--or-text); line-height: 1.5; margin: 0; }
.or-impact-pillar-image { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; will-change: transform; }
.or-impact-pillar-image img { width: 100%; height: 110%; object-fit: cover; display: block; will-change: transform; }
.or-impact-pillar-pill { position: absolute; bottom: 24px; left: 24px; right: 24px; padding: 20px 24px; background: rgba(0,30,64,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 12px; }
.or-impact-pillar-pill strong { display: block; font-size: 32px; color: var(--or-green); }
.or-impact-pillar-pill small { display: block; font-size: 12px; color: rgba(255,255,255,.75); margin-top: 4px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.or-impact-stories { position: relative; padding: 120px 48px; overflow: hidden; background-image: linear-gradient(135deg, rgba(0,30,64,.94) 0%, rgba(0,30,64,.88) 100%), var(--or-impact-stories-bg); background-size: cover; background-position: center; background-attachment: fixed; }
.or-impact-stories-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.or-impact-story-carousel { margin-top: 64px; }
.or-impact-story { display: none; grid-template-columns: auto 1fr; gap: 36px; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 16px; padding: 48px; }
.or-impact-story.is-active { display: grid; }
.or-impact-story > img { width: 160px; height: 160px; border-radius: 999px; object-fit: cover; border: 3px solid var(--or-green); }
.or-impact-story.is-text-only { grid-template-columns: 1fr; max-width: 920px; margin-left: auto; margin-right: auto; }
.or-impact-story.is-text-only > div { text-align: center; }
.or-impact-story.is-text-only .or-impact-quote { margin-left: auto; margin-right: auto; }
.or-impact-quote { color: var(--or-green); opacity: .6; display: block; }
.or-impact-story blockquote { font-size: 20px; color: var(--or-white); line-height: 1.7; margin: 14px 0 0; font-weight: 300; font-style: italic; }
.or-impact-story-meta { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.or-impact-story-meta h3 { font-size: 22px; color: var(--or-white); }
.or-impact-story-meta p { font-size: 14px; color: var(--or-green); margin: 4px 0 0; font-weight: 600; }
.or-impact-story-meta small { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; display: block; }
.or-impact-story-controls { margin-top: 32px; display: flex; justify-content: center; align-items: center; gap: 20px; }
.or-impact-story-controls > button { width: 44px; height: 44px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; color: var(--or-navy); }
.or-impact-story-controls > button:hover { background: var(--or-navy); color: var(--or-white); border-color: var(--or-navy); transform: translateY(-1px); }
.or-impact-story-controls > div { display: flex; gap: 8px; }
.or-impact-story-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--or-border); border: 0; cursor: pointer; transition: all .3s; padding: 0; }
.or-impact-story-dot.is-active { background: var(--or-red); width: 24px; }
.or-impact-gallery { background: var(--or-white); }
.or-impact-gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.or-impact-gallery-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.or-impact-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
.or-impact-gallery-item:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,30,64,.5) 100%); opacity: 0; transition: opacity .4s; }
.or-impact-gallery-item:hover:after { opacity: 1; }
.or-impact-commitments { background: var(--or-light-gray); }
.or-impact-commitment-grid { gap: 20px; margin-top: 64px; }
.or-impact-commitment { background: var(--or-white); border-radius: 14px; padding: 36px; border: 1px solid var(--or-border); transition: border-color .3s, box-shadow .3s, transform .3s; display: flex; align-items: flex-start; gap: 24px; }
.or-impact-commitment:hover { border-color: var(--or-green); box-shadow: 0 20px 40px -16px rgba(22,163,74,.18); transform: translateY(-3px); }
.or-impact-commitment > strong { font-size: 48px; color: rgba(220,38,38,.19); line-height: 1; flex-shrink: 0; }
.or-impact-commitment h3 { font-size: 22px; }
.or-impact-commitment p { color: var(--or-muted); font-size: 14px; line-height: 1.75; margin: 12px 0 0; }
.or-impact-cta { background: var(--or-navy); padding: 100px 48px; position: relative; overflow: hidden; }
.or-impact-cta:before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.15) 0%, transparent 70%); }
.or-impact-cta-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.or-impact-cta-inner h2 { font-size: 44px; }
.or-impact-cta-inner > p { color: rgba(255,255,255,.75); margin: 18px 0 0; line-height: 1.7; font-size: 18px; }
.or-impact-cta-inner > div:last-child { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.or-impact-cta-inner .or-btn { padding: 16px 32px; font-size: 15px; }

@media (max-width: 1120px) {
  .or-contact-office-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 968px) {
  .or-contact-hero, .or-impact-hero { min-height: auto; }
  .or-contact-hero-inner, .or-impact-hero-inner { padding-top: 120px; padding-bottom: 80px; }
  body.admin-bar .or-contact-hero-inner, body.admin-bar .or-impact-hero-inner { padding-top: calc(120px + var(--or-admin-offset, 0px)); }
  .or-contact-hero-title, .or-impact-hero-title { font-size: 42px; }
  .or-contact-methods-grid { grid-template-columns: repeat(2,1fr); }
  .or-contact-form-grid, .or-contact-office-grid { grid-template-columns: 1fr; gap: 40px; }
  .or-contact-form-row { grid-template-columns: 1fr; }
  .or-contact-cta { padding: 64px 20px; }
  .or-impact-stats-grid { grid-template-columns: repeat(2,1fr); }
  .or-impact-pillar { grid-template-columns: 1fr; gap: 40px; }
  .or-impact-pillar.or-reverse { direction: ltr; }
  .or-impact-stories, .or-impact-cta { padding: 64px 20px; }
  .or-impact-story { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .or-impact-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .or-impact-commitment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .or-contact-hero-title, .or-impact-hero-title { font-size: 34px; }
  .or-contact-methods-grid, .or-impact-gallery-grid { grid-template-columns: 1fr; }
  .or-impact-stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .or-impact-stat { padding: 24px 10px; }
  .or-impact-stat strong { font-size: 38px; }
  .or-impact-stat small { font-size: 11px; letter-spacing: .05em; }
  .or-contact-form-card { padding: 24px 20px; }
  .or-contact-card { padding: 24px; }
  .or-impact-story > img { width: 120px; height: 120px; }
  .or-impact-story blockquote { font-size: 17px; }
  .or-impact-commitment { padding: 24px; gap: 16px; }
}


/* Global Reach Page */
.or-reach-page { font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
.or-reach-hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.or-reach-hero-bg { position: absolute; inset: -10% 0; z-index: 0; background-image: linear-gradient(135deg, rgba(0,30,64,.85) 0%, rgba(0,30,64,.70) 100%), var(--or-reach-hero-bg); background-size: cover; background-position: center; will-change: transform; }
.or-reach-hero-inner { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 100px; width: 100%; }
.or-reach-hero-breadcrumb { margin-bottom: 32px; }
.or-reach-eyebrow-dark, .or-services-eyebrow-dark { display: inline-flex; align-items: center; gap: 10px; background: rgba(22,163,74,.15); color: #86efac; padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--or-font-head); }
.or-reach-hero-title { font-size: 72px; color: var(--or-white); max-width: 1000px; margin-top: 28px; }
.or-reach-word { display: inline-block; }
.or-reach-hero-description { font-size: 20px; color: rgba(255,255,255,.82); max-width: 720px; line-height: 1.7; margin: 28px 0 0; font-weight: 300; }
.or-reach-hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.or-reach-hero-buttons .or-btn { padding: 16px 32px; font-size: 15px; }
.or-reach-stats { background: var(--or-white); padding: 80px 0; border-bottom: 1px solid var(--or-border); }
.or-reach-stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 32px; }
.or-reach-stat { text-align: center; padding: 24px; border-right: 1px solid var(--or-border); }
.or-reach-stat:last-child { border-right: 0; }
.or-reach-stat .or-gsap-counter { display: block; font-size: 56px; }
.or-reach-stat-label { font-size: 13px; color: var(--or-muted); margin-top: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.or-reach-map { background: var(--or-light-gray); }
.or-reach-intro { max-width: 720px; }
.or-reach-intro .or-section-title { font-size: 44px; margin: 24px 0 0; }
.or-reach-intro p { color: var(--or-muted); margin: 18px 0 0; line-height: 1.7; font-size: 17px; }
.or-reach-world-map { position: relative; aspect-ratio: 16 / 9; background: var(--or-navy); border-radius: 16px; overflow: hidden; margin-top: 56px; }
.or-reach-world-map-dots { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle, rgba(255,255,255,.6) 1px, transparent 1.5px); background-size: 16px 16px; }
.or-reach-map-glows { position: absolute; inset: 0; opacity: .12; }
.or-reach-map-glows span { position: absolute; display: block; background: white; border-radius: 50%; filter: blur(40px); }
.or-reach-map-glows span:nth-child(1) { left: 44%; top: 45%; width: 10%; height: 30%; }
.or-reach-map-glows span:nth-child(2) { left: 44%; top: 25%; width: 12%; height: 12%; filter: blur(30px); }
.or-reach-map-glows span:nth-child(3) { left: 62%; top: 30%; width: 20%; height: 25%; filter: blur(45px); }
.or-reach-map-glows span:nth-child(4) { left: 15%; top: 30%; width: 16%; height: 45%; filter: blur(45px); }
.or-reach-map-glows span:nth-child(5) { left: 80%; top: 68%; width: 10%; height: 10%; filter: blur(30px); }
.or-reach-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.or-reach-line { stroke: var(--or-green); stroke-width: 1.5; stroke-dasharray: 6 4; opacity: .5; }
.or-reach-pin { position: absolute; top: var(--or-pin-y); left: var(--or-pin-x); transform: translate(-50%,-50%); z-index: 2; cursor: pointer; }
.or-reach-pin-dot { display: block; width: 14px; height: 14px; border-radius: 999px; background: var(--or-red); box-shadow: 0 0 0 4px rgba(220,38,38,.25), 0 4px 12px rgba(220,38,38,.4); position: relative; }
.or-reach-pin.is-primary .or-reach-pin-dot { background: var(--or-green); box-shadow: 0 0 0 6px rgba(22,163,74,.25), 0 4px 16px rgba(22,163,74,.5); width: 18px; height: 18px; }
.or-reach-pin-dot::after { content: ''; position: absolute; inset: -8px; border-radius: 999px; background: inherit; opacity: .3; animation: orReachRingPulse 2.4s ease-in-out infinite; }
@keyframes orReachRingPulse { 0%,100% { transform: scale(1); opacity: .3; } 50% { transform: scale(2); opacity: 0; } }
.or-reach-pin-label { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); background: var(--or-white); color: var(--or-navy); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,.2); letter-spacing: .04em; }
.or-reach-map-legend { position: absolute; bottom: 20px; right: 20px; padding: 12px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; display: flex; gap: 18px; backdrop-filter: blur(8px); z-index: 3; }
.or-reach-map-legend span { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,.8); font-weight: 600; }
.or-reach-map-legend i { width: 10px; height: 10px; border-radius: 999px; background: var(--or-red); display: block; }
.or-reach-map-legend .is-hq { background: var(--or-green); }
.or-reach-continents { background: var(--or-white); }
.or-reach-continents-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 20px; margin-top: 56px; }
.or-reach-continent-card { background: var(--or-white); border-radius: 14px; padding: 28px; border: 1px solid var(--or-border); transition: border-color .3s, box-shadow .3s; will-change: transform; }
.or-reach-continent-card:hover { border-color: var(--or-red); box-shadow: 0 16px 32px -12px rgba(0,30,64,.12); }
.or-reach-continent-tag { display: flex; align-items: center; gap: 10px; }
.or-reach-continent-tag i { width: 12px; height: 12px; border-radius: 999px; background: var(--or-continent-accent); }
.or-reach-continent-tag span { font-size: 11px; color: var(--or-muted); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.or-reach-continent-card h3 { font-size: 24px; margin: 8px 0 0; }
.or-reach-continent-count { margin-top: 16px; padding: 6px 12px; background: rgba(0,30,64,.05); background: color-mix(in srgb, var(--or-continent-accent) 10%, transparent); color: var(--or-continent-accent); font-size: 12px; font-weight: 700; border-radius: 999px; display: inline-flex; }
.or-reach-country-list { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--or-border); display: flex; flex-direction: column; gap: 8px; }
.or-reach-country-list span { font-size: 13px; color: var(--or-text); font-weight: 500; }
.or-reach-hubs { background: var(--or-light-gray); }
.or-reach-hubs-heading { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.or-reach-hub-buttons { display: flex; gap: 10px; }
.or-reach-hub-buttons button { width: 44px; height: 44px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); color: var(--or-navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--or-transition); }
.or-reach-hub-buttons button:hover { background: var(--or-navy); color: var(--or-white); border-color: var(--or-navy); }
.or-reach-hubs-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 16px 4px 24px; gap: 20px; margin-top: 48px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.or-reach-hubs-scroll::-webkit-scrollbar { display: none; }
.or-reach-hub-card { scroll-snap-align: start; flex-shrink: 0; width: 340px; background: var(--or-white); border-radius: 14px; padding: 28px; border: 1px solid var(--or-border); transition: border-color .3s; will-change: transform; }
.or-reach-hub-card:hover { border-color: var(--or-navy); }
.or-reach-hub-top { display: flex; justify-content: space-between; align-items: flex-start; }
.or-reach-flag { font-size: 48px; line-height: 1; display: inline-block; will-change: transform; }
.or-reach-hub-top small { background: var(--or-green); color: var(--or-white); font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase; }
.or-reach-hub-card h3 { font-size: 28px; margin: 18px 0 0; }
.or-reach-country { font-size: 14px; color: var(--or-muted); margin: 4px 0 0; font-weight: 500; }
.or-reach-role { font-size: 13px; color: var(--or-red); font-weight: 700; margin: 16px 0 0; text-transform: uppercase; letter-spacing: .08em; }
.or-reach-port { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--or-border); display: flex; align-items: center; gap: 10px; color: var(--or-muted); }
.or-reach-port span { font-size: 14px; color: var(--or-text); font-weight: 600; }
.or-reach-routes { background: var(--or-white); }
.or-reach-routes-table { margin-top: 48px; background: var(--or-white); border: 1px solid var(--or-border); border-radius: 12px; overflow: hidden; }
.or-reach-route-row { display: grid; grid-template-columns: 1fr 1fr 1.2fr 1fr .8fr; gap: 16px; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--or-border); transition: background .3s; }
.or-reach-route-row:last-child { border-bottom: 0; }
.or-reach-route-row:hover { background: var(--or-light-gray); }
.or-reach-route-row.is-header { background: var(--or-navy); color: var(--or-white); border-radius: 10px 10px 0 0; padding: 14px 20px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.or-reach-route-from, .or-reach-route-to { color: var(--or-navy); font-weight: 700; }
.or-reach-carriers { background: var(--or-light-gray); padding: 80px 0; text-align: center; }
.or-reach-carriers p { font-size: 12px; color: var(--or-muted); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin: 0; }
.or-reach-carriers .or-container > div { display: flex; justify-content: space-around; align-items: center; margin-top: 32px; gap: 32px; flex-wrap: wrap; }
.or-reach-carriers span { font-family: var(--or-font-head); font-weight: 800; font-size: 20px; color: var(--or-muted); letter-spacing: .02em; transition: var(--or-transition); filter: grayscale(100%); opacity: .55; }
.or-reach-carriers span:hover { color: var(--or-navy); opacity: 1; filter: grayscale(0); transform: scale(1.05); }
.or-reach-cta { background: var(--or-navy); padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.or-reach-cta .or-container { max-width: 896px; position: relative; z-index: 1; }
.or-reach-cta h2 { font-size: 42px; color: var(--or-white); margin: 0; }
.or-reach-cta p { color: rgba(255,255,255,.75); margin: 18px 0 0; line-height: 1.7; font-size: 17px; }
.or-reach-cta-buttons { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.or-reach-cta-buttons .or-btn { padding: 16px 32px; font-size: 15px; }
.or-reach-cta-orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; }
.or-reach-cta-orb.is-red { top: -100px; right: -100px; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-reach-cta-orb.is-green { bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(22,163,74,.13) 0%, transparent 70%); }

/* Services Page */
.or-services-page { font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
.or-services-hero { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; }
.or-services-hero-bg { position: absolute; inset: -10% 0; z-index: 0; background-image: linear-gradient(135deg, rgba(0,30,64,.85) 0%, rgba(0,30,64,.70) 100%), var(--or-services-hero-bg); background-size: cover; background-position: center; will-change: transform; }
.or-services-hero-inner { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 100px; width: 100%; }
.or-services-hero-breadcrumb { margin-bottom: 32px; }
.or-services-hero-title { font-size: 68px; color: var(--or-white); max-width: 1000px; margin-top: 28px; }
.or-services-word { display: inline-block; }
.or-services-hero-description { font-size: 19px; color: rgba(255,255,255,.82); max-width: 700px; line-height: 1.7; margin: 28px 0 0; font-weight: 300; }
.or-services-hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.or-services-hero-buttons .or-btn { padding: 16px 32px; font-size: 15px; }
.or-services-overview { background: var(--or-white); }
.or-services-intro { max-width: 720px; }
.or-services-intro .or-section-title { font-size: 44px; margin: 24px 0 0; }
.or-services-intro p { color: var(--or-muted); margin: 18px 0 0; line-height: 1.7; font-size: 17px; }
.or-services-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 56px; }
.or-services-overview-card { position: relative; background: var(--or-white); border-radius: 14px; padding: 32px; border: 1px solid var(--or-border); transition: border-color .3s, box-shadow .3s; will-change: transform; cursor: pointer; display: block; height: 100%; }
.or-services-overview-card:hover { border-color: var(--or-red); box-shadow: 0 20px 50px -16px rgba(0,30,64,.18); }
.or-services-overview-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: var(--or-green-light); color: var(--or-green); will-change: transform; }
.or-services-overview-icon svg { width: 22px; height: 22px; }
.or-services-overview-num { position: absolute; top: 20px; right: 28px; font-family: var(--or-font-head); font-weight: 800; font-size: 56px; line-height: 1; color: rgba(220,38,38,.19); transition: color .3s; }
.or-services-overview-card h3 { font-size: 22px; margin: 22px 0 0; }
.or-services-overview-card p { color: var(--or-muted); font-size: 14px; line-height: 1.7; margin: 12px 0 0; }
.or-services-overview-card strong { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--or-border); display: flex; align-items: center; justify-content: space-between; color: var(--or-navy); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.or-services-details { scroll-snap-type: y proximity; }
.or-services-detail { background: var(--or-light-gray); scroll-snap-align: start; scroll-margin-top: 40px; }
.or-services-detail.is-white { background: var(--or-white); }
.or-services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.or-services-detail.is-reverse .or-services-detail-grid { direction: rtl; }
.or-services-detail.is-reverse .or-services-detail-grid > * { direction: ltr; }
.or-services-detail-copy .or-section-title { font-size: 40px; margin: 22px 0 0; }
.or-services-detail-copy > p { color: var(--or-text); font-size: 16px; line-height: 1.8; margin: 20px 0 0; }
.or-services-benefits { margin-top: 24px; }
.or-services-benefits div { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--or-border); font-size: 15px; line-height: 1.5; }
.or-services-benefits div:last-child { border-bottom: 0; }
.or-services-benefits span { width: 24px; height: 24px; border-radius: 999px; background: var(--or-green); color: var(--or-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.or-services-image { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; }
.or-services-image img { width: 100%; height: 110%; object-fit: cover; will-change: transform; display: block; }
.or-services-image > span { position: absolute; top: 24px; left: 24px; width: 60px; height: 60px; border-radius: 12px; background: rgba(255,255,255,.95); color: var(--or-red); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.or-services-process { background: var(--or-navy); position: relative; overflow: hidden; }
.or-services-process-orb { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(220,38,38,.12) 0%, transparent 70%); }
.or-services-process-intro { max-width: 720px; text-align: center; margin: 0 auto; position: relative; z-index: 1; }
.or-services-process-intro .or-section-title { font-size: 44px; color: var(--or-white); margin: 24px 0 0; }
.or-services-process-intro p { color: rgba(255,255,255,.7); margin: 18px 0 0; line-height: 1.7; font-size: 17px; }
.or-services-process-wrap { position: relative; margin-top: 80px; z-index: 1; }
.or-services-process-line { position: absolute; left: 0; right: 0; top: 27px; height: 2px; background: linear-gradient(90deg,var(--or-red),var(--or-green)); border-radius: 2px; }
.or-services-process-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 24px; }
.or-services-step { position: relative; }
.or-services-step > strong { width: 56px; height: 56px; border-radius: 999px; background: var(--or-white); color: var(--or-red); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; font-family: var(--or-font-head); border: 4px solid var(--or-navy); position: relative; z-index: 1; }
.or-services-step h3 { font-size: 18px; color: var(--or-white); margin: 22px 0 0; }
.or-services-step p { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.65; margin: 10px 0 0; }
.or-services-cta { background: var(--or-light-gray); padding: 100px 0; }
.or-services-cta-card { max-width: 960px; margin: 0 auto; padding: 56px; background: var(--or-white); border-radius: 16px; text-align: center; border: 1px solid var(--or-border); position: relative; overflow: hidden; }
.or-services-cta-orb { position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(220,38,38,.08) 0%, transparent 70%); }
.or-services-cta-content { position: relative; z-index: 1; }
.or-services-cta-content h2 { font-size: 38px; margin: 24px 0 0; }
.or-services-cta-content p { color: var(--or-muted); margin: 16px auto 0; line-height: 1.7; font-size: 17px; max-width: 600px; }
.or-services-cta-buttons { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.or-services-cta-buttons .or-btn { padding: 16px 32px; font-size: 15px; }

@media (max-width: 968px) {
  .or-reach-hero-inner, .or-services-hero-inner { padding-top: 120px; padding-bottom: 80px; }
  .or-reach-hero-title, .or-services-hero-title { font-size: 42px; }
  .or-reach-intro .or-section-title, .or-services-intro .or-section-title, .or-services-process-intro .or-section-title { font-size: 32px; }
  .or-reach-stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
  .or-reach-stat:nth-child(2n) { border-right: 0; }
  .or-reach-stat:nth-child(-n+2) { border-bottom: 1px solid var(--or-border); }
  .or-reach-stat .or-gsap-counter { font-size: 46px; }
  .or-reach-world-map { aspect-ratio: 4 / 3; }
  .or-reach-pin-label { font-size: 9px; padding: 3px 8px; }
  .or-reach-continents-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .or-reach-hub-card { width: 280px; }
  .or-reach-route-row { grid-template-columns: 1fr 1fr; padding: 14px 16px; gap: 10px; font-size: 13px; }
  .or-reach-route-row.is-header { display: none; }
  .or-reach-route-row > div:nth-child(n+3) { font-size: 11px; color: var(--or-muted); }
  .or-services-overview-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .or-services-detail-grid { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .or-services-process-grid { grid-template-columns: 1fr; gap: 24px; }
  .or-services-process-line { display: none; }
}
@media (max-width: 560px) {
  .or-reach-hero-title, .or-services-hero-title { font-size: 34px; }
  .or-reach-continents-grid, .or-services-overview-grid { grid-template-columns: 1fr; }
  .or-reach-stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
  .or-reach-stat { padding: 18px 10px; }
  .or-reach-stat .or-gsap-counter { font-size: 40px; }
  .or-reach-map-legend { bottom: 12px; right: 12px; padding: 10px; gap: 12px; }
  .or-services-cta-card { padding: 40px 20px; }
}


/* 404 Page */
.or-not-found-page,
.or-not-found-page * { box-sizing: border-box; }
.or-not-found-page { font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow: hidden; min-height: 100vh; position: relative; }
.or-not-found-page a { text-decoration: none; }
.or-not-found-container { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 60px 48px 80px; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; }
.or-not-found-digits { display: flex; justify-content: center; align-items: center; gap: 18px; }
.or-not-found-digit { font-family: var(--or-font-head); font-weight: 900; line-height: 1; display: inline-block; will-change: transform; font-size: 260px; }
.or-not-found-four { color: var(--or-navy); }
.or-not-found-zero { color: transparent; position: relative; width: 220px; height: 260px; }
.or-not-found-zero::before { content: ''; position: absolute; inset: 12%; border: 8px solid var(--or-red); border-radius: 50%; background: transparent; }
.or-not-found-content { text-align: center; margin: 40px auto 0; max-width: 600px; }
.or-not-found-title { font-size: 48px; margin-top: 20px; }
.or-not-found-description { font-size: 18px; color: var(--or-muted); margin: 16px 0 0; line-height: 1.7; }
.or-not-found-search { position: relative; margin-top: 36px; }
.or-not-found-search-input { width: 100%; padding: 18px 60px 18px 56px; border-radius: 999px; border: 1.5px solid var(--or-border); font-size: 16px; font-family: var(--or-font-body); outline: none; transition: all .3s; background: var(--or-white); color: var(--or-navy); }
.or-not-found-search-input:focus { border-color: var(--or-red); box-shadow: 0 0 0 4px rgba(220,38,38,.1); }
.or-not-found-search-icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--or-muted); pointer-events: none; display: flex; }
.or-not-found-search-submit { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 999px; background: var(--or-red); color: var(--or-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.or-not-found-search-submit:hover { background: var(--or-red-dark); }
.or-not-found-actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.or-not-found-actions .or-btn { padding: 14px 28px; font-size: 14px; }
.or-not-found-links { margin-top: 64px; }
.or-not-found-links-heading { text-align: center; font-size: 12px; color: var(--or-muted); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin: 0 0 20px; }
.or-not-found-links-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; max-width: 900px; margin: 0 auto; }
.or-not-found-link { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--or-white); border: 1px solid var(--or-border); border-radius: 12px; transition: border-color .3s, box-shadow .3s; will-change: transform; color: var(--or-text); }
.or-not-found-link:hover { border-color: var(--or-red); box-shadow: 0 12px 30px -12px rgba(0,30,64,.12); }
.or-not-found-link-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--or-green-light); color: var(--or-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; will-change: transform; }
.or-not-found-link-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.or-not-found-link-copy strong { font-size: 15px; }
.or-not-found-link-copy small { font-size: 12px; color: var(--or-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.or-not-found-link-arrow { color: var(--or-muted); opacity: .5; will-change: transform; margin-left: auto; display: flex; }
.or-not-found-blob { position: absolute; border-radius: 50%; filter: blur(80px); will-change: transform; pointer-events: none; }
.or-not-found-blob-one { width: 400px; height: 400px; background: var(--or-red); opacity: .06; top: -100px; right: -100px; }
.or-not-found-blob-two { width: 500px; height: 500px; background: var(--or-green); opacity: .07; bottom: -150px; left: -150px; }
.or-not-found-blob-three { width: 300px; height: 300px; background: var(--or-navy); opacity: .05; top: 50%; left: 30%; }

/* v1.5.1 - 404 pages have a white background, so the fixed header stays solid and the large digits clear it. */
body.error404 .or-nav,
body.or-not-found-active .or-nav { background: rgba(255,255,255,.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--or-border); }
body.error404 .or-nav .or-logo-light,
body.or-not-found-active .or-nav .or-logo-light { display: none !important; }
body.error404 .or-nav .or-logo-dark,
body.or-not-found-active .or-nav .or-logo-dark { display: block !important; }
body.error404 .or-nav .or-brand,
body.or-not-found-active .or-nav .or-brand,
body.error404 .or-nav .or-nav-link,
body.or-not-found-active .or-nav .or-nav-link { color: var(--or-navy); }
body.error404 .or-nav .or-nav-link:hover,
body.or-not-found-active .or-nav .or-nav-link:hover { color: var(--or-red); }
body.error404 .or-nav .or-mobile-toggle span,
body.or-not-found-active .or-nav .or-mobile-toggle span { background: var(--or-navy); }
body.error404 .or-not-found-container,
body.or-not-found-active .or-not-found-container { padding-top: 124px; }
body.admin-bar.error404 .or-not-found-container,
body.admin-bar.or-not-found-active .or-not-found-container { padding-top: calc(124px + var(--or-admin-offset, 0px)); }

/* Search Results Page */
.or-search-page,
.or-search-page * { box-sizing: border-box; }
.or-search-page { min-height: 100vh; background: var(--or-white); color: var(--or-text); font-family: var(--or-font-body); overflow-x: hidden; }
.or-search-page a { text-decoration: none; }
.or-search-breadcrumb { background: var(--or-navy); padding: 16px 0; }
.or-search-hero { background: var(--or-light-gray); }
.or-search-hero-inner { padding-top: 80px; padding-bottom: 48px; }
.or-search-title { font-size: 48px; margin-top: 20px; }
.or-search-title span { color: var(--or-red); }
.or-search-bar { position: relative; max-width: 720px; margin-top: 28px; }
.or-search-input { width: 100%; padding: 18px 100px 18px 56px; border-radius: 999px; border: 1.5px solid var(--or-border); font-size: 16px; font-family: var(--or-font-body); outline: none; transition: all .3s; background: var(--or-white); color: var(--or-navy); }
.or-search-input:focus { border-color: var(--or-red); box-shadow: 0 0 0 4px rgba(220,38,38,.1); }
.or-search-bar-icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--or-muted); pointer-events: none; display: flex; }
.or-search-clear { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 999px; background: var(--or-light-gray); color: var(--or-muted); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.or-search-clear svg { width: 16px; height: 16px; }
.or-search-clear:hover { background: var(--or-border); color: var(--or-navy); }
.or-search-submit { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; background: var(--or-red); color: var(--or-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.or-search-submit:hover { background: var(--or-red-dark); }
.or-search-popular { margin-top: 28px; }
.or-search-popular > p { font-size: 12px; color: var(--or-muted); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 12px; }
.or-search-popular > div { display: flex; gap: 8px; flex-wrap: wrap; }
.or-search-pop-chip { padding: 7px 14px; border-radius: 999px; background: var(--or-light-gray); color: var(--or-navy); border: 1px solid transparent; font-size: 13px; font-weight: 500; transition: all .3s; font-family: var(--or-font-body); }
.or-search-pop-chip:hover { background: var(--or-white); border-color: var(--or-red); color: var(--or-red); transform: translateY(-1px); }
.or-search-results { background: var(--or-white); padding-bottom: 80px; }
.or-search-filter-strip { background: var(--or-white); border-bottom: 1px solid var(--or-border); position: sticky; top: 0; z-index: 50; }
.or-search-filters { padding: 20px 0; display: flex; gap: 10px; flex-wrap: wrap; }
.or-search-filter { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); color: var(--or-navy); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .3s; font-family: var(--or-font-body); letter-spacing: .02em; }
.or-search-filter svg { width: 16px; height: 16px; }
.or-search-filter:hover { border-color: var(--or-navy); }
.or-search-filter.is-active { background: var(--or-navy); color: var(--or-white); border-color: var(--or-navy); }
.or-search-filter span { background: rgba(0,0,0,.08); color: inherit; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.or-search-filter.is-active span { background: rgba(255,255,255,.2); }
.or-search-results-inner { padding-top: 48px; padding-bottom: 48px; }
.or-search-summary { font-size: 14px; color: var(--or-muted); font-weight: 500; margin: 0 0 24px; }
.or-search-summary strong { color: var(--or-navy); }
.or-search-cards { display: flex; flex-direction: column; gap: 16px; }
.or-search-card { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 24px; background: var(--or-white); border: 1px solid var(--or-border); border-radius: 14px; color: var(--or-text); transition: border-color .3s, box-shadow .3s; will-change: transform; }
.or-search-card.no-image { grid-template-columns: 1fr; }
.or-search-card:hover { border-color: var(--or-red); box-shadow: 0 16px 32px -12px rgba(0,30,64,.1); }
.or-search-card-image { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: var(--or-light-gray); display: block; }
.or-search-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.or-search-card-copy { display: block; }
.or-search-card-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.or-search-card-meta em { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.or-search-card-meta .type-product { background: var(--or-green-light); color: var(--or-green); }
.or-search-card-meta .type-page { background: rgba(0,30,64,.1); color: var(--or-navy); }
.or-search-card-meta .type-article { background: rgba(220,38,38,.1); color: var(--or-red); }
.or-search-card-meta small { font-size: 12px; color: var(--or-muted); font-weight: 500; }
.or-search-card-copy > strong { display: block; font-size: 22px; margin-top: 10px; }
.or-search-card-excerpt { display: block; color: var(--or-text); font-size: 14px; line-height: 1.7; margin-top: 8px; }
.or-search-card-view { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--or-red); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.or-search-card-view small { color: var(--or-muted); font-weight: 400; text-transform: lowercase; letter-spacing: 0; }
.or-search-card.is-hidden { display: none; }
.or-search-empty { text-align: center; padding: 80px 24px; background: var(--or-light-gray); border-radius: 14px; display: none; }
.or-search-empty.is-active { display: block; }
.or-search-empty-icon { width: 80px; height: 80px; border-radius: 999px; background: var(--or-white); color: var(--or-muted); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.or-search-empty h2 { font-size: 24px; margin-top: 24px; }
.or-search-empty p { color: var(--or-muted); margin: 12px auto 0; font-size: 16px; line-height: 1.6; max-width: 480px; }
.or-search-empty > div { margin-top: 24px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 968px) {
  .or-not-found-digits { gap: 10px; }
  .or-not-found-digit { font-size: 180px; }
  .or-not-found-zero { width: 154px; height: 180px; }
  .or-not-found-title { font-size: 32px; }
  .or-not-found-description { font-size: 16px; }
  .or-not-found-links-grid { grid-template-columns: 1fr; }
  .or-search-hero-inner { padding-top: 100px; padding-bottom: 40px; }
  .or-search-title { font-size: 36px; }
  .or-search-results-inner { padding-top: 40px; padding-bottom: 40px; }
  .or-search-card { grid-template-columns: 1fr; gap: 16px; }
  .or-search-card-image { aspect-ratio: 16/9; }
  .or-search-filters { overflow-x: auto; padding-bottom: 20px; flex-wrap: nowrap; }
  .or-search-filter { white-space: nowrap; }
  .or-search-input { padding: 16px 90px 16px 50px; font-size: 15px; }
  .or-search-bar-icon { left: 18px; }
}
@media (max-width: 560px) {
  .or-not-found-container { padding: 40px 20px 64px; }
  body.error404 .or-not-found-container, body.or-not-found-active .or-not-found-container { padding-top: 112px; }
  body.admin-bar.error404 .or-not-found-container, body.admin-bar.or-not-found-active .or-not-found-container { padding-top: calc(112px + var(--or-admin-offset, 0px)); }
  .or-not-found-digit { font-size: 120px; }
  .or-not-found-zero { width: 102px; height: 120px; }
  .or-not-found-zero::before { border-width: 5px; }
  .or-not-found-title { font-size: 26px; }
  .or-search-title { font-size: 28px; }
  .or-search-clear { right: 56px; }
  .or-search-submit { width: 40px; height: 40px; }
}


/* v1.6.0 - Privacy Policy, Terms, Our Process and FAQ pages */
body.or-solid-inner-active .or-nav { background: rgba(255,255,255,.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--or-border); }
body.or-solid-inner-active .or-nav .or-logo-light { display: none !important; }
body.or-solid-inner-active .or-nav .or-logo-dark { display: block !important; }
body.or-solid-inner-active .or-nav .or-brand,
body.or-solid-inner-active .or-nav .or-nav-link { color: var(--or-navy); }
body.or-solid-inner-active .or-nav .or-nav-link:hover { color: var(--or-red); }
body.or-solid-inner-active .or-nav .or-mobile-toggle span { background: var(--or-navy); }

/* Legal pages */
.or-legal-page { padding-top: 82px; font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
body.admin-bar .or-legal-page { padding-top: calc(82px + var(--or-admin-offset, 0px)); }
.or-legal-breadcrumb { background: var(--or-navy); padding: 16px 0; }
.or-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.or-breadcrumb-light a { color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; transition: color .3s; }
.or-breadcrumb-light a:hover { color: var(--or-white); }
.or-breadcrumb-light span { color: rgba(255,255,255,.4); display: flex; }
.or-breadcrumb-light strong { color: var(--or-white); font-size: 13px; font-weight: 600; }
.or-legal-hero { background: var(--or-light-gray); }
.or-legal-hero-inner { padding-top: 80px; padding-bottom: 60px; }
.or-legal-title { font-size: 52px; margin: 24px 0 0; max-width: 900px; }
.or-legal-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
.or-legal-meta span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--or-white); border-radius: 8px; border: 1px solid var(--or-border); font-size: 13px; color: var(--or-text); font-weight: 500; }
.or-legal-meta svg { width: 16px; height: 16px; color: var(--or-muted); }
.or-legal-meta .is-green svg { color: var(--or-green); }
.or-legal-meta strong { color: var(--or-navy); }
.or-legal-intro { font-size: 16px; color: var(--or-text); line-height: 1.75; margin: 24px 0 0; max-width: 760px; }
.or-legal-mobile-toc { background: var(--or-white); border-bottom: 1px solid var(--or-border); position: sticky; top: calc(82px + var(--or-admin-offset, 0px)); z-index: 50; display: none; }
.or-legal-mobile-toggle { width: 100%; padding: 12px 16px; border: 1px solid var(--or-border); border-radius: 8px; background: var(--or-light-gray); color: var(--or-navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--or-font-body); font-size: 14px; font-weight: 600; }
.or-legal-mobile-toggle span { display: inline-flex; align-items: center; gap: 10px; }
.or-legal-mobile-toggle > svg { transition: transform .3s; }
.or-legal-mobile-toggle[aria-expanded="true"] > svg { transform: rotate(180deg); }
.or-legal-mobile-menu { display: none; margin-top: 12px; padding: 12px; background: var(--or-white); border: 1px solid var(--or-border); border-radius: 8px; max-height: 360px; overflow-y: auto; }
.or-legal-mobile-menu.is-open { display: block; }
.or-legal-content { background: var(--or-white); padding-top: 64px; padding-bottom: 100px; }
.or-legal-grid { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 64px; }
.or-legal-sidebar { position: sticky; top: calc(108px + var(--or-admin-offset, 0px)); align-self: start; height: fit-content; }
.or-legal-sidebar-card { padding: 20px; background: var(--or-light-gray); border-radius: 12px; border: 1px solid var(--or-border); }
.or-legal-sidebar-card small { display: block; font-size: 11px; color: var(--or-muted); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; padding: 0 14px; }
.or-legal-toc-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 6px; color: var(--or-muted); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .25s; border: none; background: none; text-align: left; width: 100%; font-family: var(--or-font-body); line-height: 1.4; }
.or-legal-toc-link:hover { background: var(--or-white); color: var(--or-navy); }
.or-legal-toc-link.is-active { background: var(--or-navy); color: var(--or-white); font-weight: 600; }
.or-legal-toc-link.is-active::before { content: ''; display: block; width: 4px; height: 14px; background: var(--or-red); border-radius: 2px; flex-shrink: 0; }
.or-legal-block { scroll-margin-top: calc(106px + var(--or-admin-offset, 0px)); margin-bottom: 56px; }
.or-legal-block:last-child { margin-bottom: 0; }
.or-legal-block h2 { color: var(--or-navy); font-size: 26px; }
.or-legal-article { min-width: 0; max-width: 820px; }
.or-legal-copy { color: var(--or-text); font-size: 15px; line-height: 1.8; margin-top: 18px; }
.or-legal-copy p { margin: 0 0 20px; }
.or-legal-copy p:last-child { margin-bottom: 0; }
.or-legal-copy .or-legal-subheading { margin: 25px 0 10px; color: var(--or-navy); font: 700 16px/1.45 var(--or-font-body); }
.or-legal-copy ul { margin: 0 0 25px; padding-left: 23px; display: grid; gap: 9px; }
.or-legal-copy li { padding-left: 4px; }
.or-legal-copy li::marker { color: var(--or-red); }
.or-legal-cta { background: var(--or-navy); padding: 80px 48px; position: relative; overflow: hidden; }
.or-legal-cta-orb-one, .or-legal-cta-orb-two { position: absolute; width: 400px; height: 400px; border-radius: 50%; }
.or-legal-cta-orb-one { top: -100px; right: -100px; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-legal-cta-orb-two { bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(22,163,74,.12) 0%, transparent 70%); }
.or-legal-cta-inner { max-width: 800px; text-align: center; position: relative; z-index: 1; }
.or-legal-cta h2 { font-size: 32px; color: var(--or-white); }
.or-legal-cta p { color: rgba(255,255,255,.75); margin: 16px 0 0; line-height: 1.7; font-size: 16px; }
.or-legal-cta .or-btn { margin-top: 28px; padding: 14px 28px; }

/* Our Process Page */
.or-process-page { font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
.or-process-page-hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.or-process-page-hero-bg { position: absolute; inset: -10% 0; z-index: 0; background-image: linear-gradient(135deg, rgba(0,30,64,.86) 0%, rgba(0,30,64,.70) 100%), var(--or-process-hero-bg); background-size: cover; background-position: center; will-change: transform; }
.or-process-page-hero-inner { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 100px; width: 100%; }
.or-process-page-breadcrumb { margin-bottom: 32px; }
.or-process-page-eyebrow-dark { display: inline-flex; align-items: center; gap: 10px; background: rgba(22,163,74,.15); color: #86efac; padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--or-font-head); }
.or-process-page-hero-title { font-size: 68px; color: var(--or-white); max-width: 1000px; margin: 28px 0 0; }
.or-process-page-word { display: inline-block; }
.or-process-page-hero-description { font-size: 19px; color: rgba(255,255,255,.82); max-width: 700px; line-height: 1.7; margin: 28px 0 0; font-weight: 300; }
.or-process-page-hero-buttons { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.or-process-page-hero-buttons .or-btn { padding: 16px 32px; font-size: 15px; }
.or-process-page-overview { background: var(--or-white); border-bottom: 1px solid var(--or-border); }
.or-process-page-overview-strip { margin-top: 80px; position: relative; }
.or-process-page-overview-line { position: absolute; top: 30px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--or-red), var(--or-green)); }
.or-process-page-overview-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 24px; }
.or-process-page-overview-step { text-align: left; color: var(--or-navy); display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; }
.or-process-page-overview-step > span { width: 60px; height: 60px; border-radius: 999px; background: var(--or-white); border: 2px solid var(--or-red); color: var(--or-red); display: inline-flex; align-items: center; justify-content: center; font: 800 18px var(--or-font-head); }
.or-process-page-overview-step > i { display: flex; color: var(--or-green); margin-top: 24px; font-style: normal; }
.or-process-page-overview-step > i svg { width: 22px; height: 22px; }
.or-process-page-overview-step strong { font-size: 18px; margin-top: 16px; }
.or-process-page-overview-step small { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; padding: 4px 10px; background: var(--or-light-gray); color: var(--or-muted); font-size: 11px; font-weight: 600; border-radius: 999px; }
.or-process-page-overview-step small svg { width: 14px; height: 14px; }
.or-process-page-overview-step p { color: var(--or-muted); font-size: 13px; line-height: 1.65; margin: 14px 0 0; }
.or-process-page-detail { background: var(--or-light-gray); }
.or-process-page-detail.is-white { background: var(--or-white); }
.or-process-page-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.or-process-page-detail.is-reverse .or-process-page-detail-grid { direction: rtl; }
.or-process-page-detail.is-reverse .or-process-page-detail-grid > * { direction: ltr; }
.or-process-page-detail-copy .or-section-title { font-size: 40px; margin: 22px 0 0; }
.or-process-page-description { font-size: 15px; color: var(--or-text); line-height: 1.8; margin: 18px 0 0; }
.or-process-page-points { margin-top: 28px; }
.or-process-page-points > div { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--or-border); font-size: 15px; }
.or-process-page-points > div:last-child { border-bottom: 0; }
.or-process-page-points span { width: 24px; height: 24px; border-radius: 50%; background: var(--or-green); color: var(--or-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.or-process-page-image { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; }
.or-process-page-image img { width: 100%; height: 110%; object-fit: cover; display: block; will-change: transform; }
.or-process-page-image > span { position: absolute; top: 24px; left: 24px; width: 60px; height: 60px; border-radius: 12px; background: rgba(255,255,255,.95); color: var(--or-red); display: flex; align-items: center; justify-content: center; }
.or-process-page-quality { background: var(--or-white); }
.or-process-page-intro { max-width: 720px; text-align: center; margin: 0 auto; }
.or-process-page-intro .or-section-title { font-size: 44px; margin: 24px 0 0; }
.or-process-page-intro p { color: var(--or-muted); margin: 18px 0 0; line-height: 1.7; font-size: 17px; }
.or-process-page-checkpoints { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; margin-top: 64px; }
.or-process-page-checkpoint { background: var(--or-white); border-radius: 14px; padding: 28px; border: 1px solid var(--or-border); transition: all .3s; will-change: transform; }
.or-process-page-checkpoint:hover { border-color: var(--or-green); box-shadow: 0 16px 36px -16px rgba(22,163,74,.18); }
.or-process-page-checkpoint > span { width: 48px; height: 48px; border-radius: 12px; background: var(--or-green-light); color: var(--or-green); display: inline-flex; align-items: center; justify-content: center; }
.or-process-page-checkpoint > small { display: block; font-size: 11px; color: var(--or-green); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 18px; }
.or-process-page-checkpoint h3 { font-size: 20px; margin: 6px 0 0; }
.or-process-page-checkpoint > div { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--or-border); }
.or-process-page-checkpoint p { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; color: var(--or-text); font-size: 13px; font-weight: 500; }
.or-process-page-checkpoint i { width: 16px; height: 16px; border-radius: 999px; background: var(--or-green-light); color: var(--or-green); display: inline-flex; align-items: center; justify-content: center; font-style: normal; }
.or-process-page-checkpoint i svg { width: 10px; height: 10px; }
.or-process-page-timeline { background: var(--or-navy); position: relative; overflow: hidden; }
.or-process-page-orb-one, .or-process-page-orb-two { position: absolute; border-radius: 50%; width: 500px; height: 500px; }
.or-process-page-orb-one { top: -100px; right: -100px; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-process-page-orb-two { bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(22,163,74,.10) 0%, transparent 70%); }
.or-process-page-timeline-inner { max-width: 960px; position: relative; z-index: 1; }
.or-process-page-timeline-intro { text-align: center; max-width: 720px; margin: 0 auto; }
.or-process-page-timeline-intro .or-section-title { color: var(--or-white); font-size: 44px; margin: 24px 0 0; }
.or-process-page-timeline-intro p { color: rgba(255,255,255,.7); margin: 18px 0 0; line-height: 1.7; font-size: 17px; }
.or-process-page-weeks { margin-top: 56px; }
.or-process-page-week { display: grid; grid-template-columns: 115px minmax(0,1fr); gap: 28px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.or-process-page-week > span { color: var(--or-green); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.or-process-page-week h3 { color: var(--or-white); font-size: 20px; }
.or-process-page-week p { color: rgba(255,255,255,.65); font-size: 14px; margin: 8px 0 0; line-height: 1.65; }
.or-process-page-cta { background: var(--or-white); }
.or-process-page-cta-card { max-width: 960px; margin: 0 auto; padding: 56px; background: var(--or-light-gray); border-radius: 16px; text-align: center; border: 1px solid var(--or-border); position: relative; overflow: hidden; }
.or-process-page-cta-card:before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(220,38,38,.10) 0%, transparent 70%); }
.or-process-page-cta-card > * { position: relative; z-index: 1; }
.or-process-page-cta-card .or-section-title { font-size: 38px; margin: 24px 0 0; }
.or-process-page-cta-card p { color: var(--or-muted); margin: 16px auto 0; line-height: 1.7; font-size: 17px; max-width: 600px; }
.or-process-page-cta-card > div:last-child { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FAQ Page */
.or-faq-page { padding-top: 82px; font-family: var(--or-font-body); color: var(--or-text); background: var(--or-white); overflow-x: hidden; }
body.admin-bar .or-faq-page { padding-top: calc(82px + var(--or-admin-offset, 0px)); }
.or-faq-page-breadcrumb { background: var(--or-navy); padding: 16px 0; }
.or-faq-page-hero { background: var(--or-light-gray); }
.or-faq-page-hero-inner { padding-top: 100px; padding-bottom: 60px; }
.or-faq-page-title { font-size: 56px; margin: 24px 0 0; max-width: 900px; }
.or-faq-page-word { display: inline-block; }
.or-faq-page-description { font-size: 18px; color: var(--or-muted); max-width: 660px; line-height: 1.7; margin: 20px 0 0; }
.or-faq-page-search { display: block; position: relative; max-width: 640px; margin-top: 36px; }
.or-faq-page-search span { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--or-muted); pointer-events: none; display: flex; }
.or-faq-page-search input { width: 100%; padding: 18px 60px 18px 56px; border-radius: 999px; border: 1.5px solid var(--or-border); font-size: 16px; font-family: var(--or-font-body); outline: none; transition: all .3s; background: var(--or-white); color: var(--or-navy); }
.or-faq-page-search input:focus { border-color: var(--or-red); box-shadow: 0 0 0 4px rgba(220,38,38,.1); }
.or-faq-page-categories { background: var(--or-white); border-bottom: 1px solid var(--or-border); position: sticky; top: calc(82px + var(--or-admin-offset, 0px)); z-index: 50; }
.or-faq-page-category-scroll { padding: 20px 0; display: flex; gap: 10px; flex-wrap: wrap; }
.or-faq-page-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: var(--or-white); border: 1px solid var(--or-border); color: var(--or-navy); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .3s; font-family: var(--or-font-body); letter-spacing: .02em; will-change: transform; }
.or-faq-page-chip svg { width: 18px; height: 18px; }
.or-faq-page-chip:hover { border-color: var(--or-navy); }
.or-faq-page-chip.is-active { background: var(--or-navy); color: var(--or-white); border-color: var(--or-navy); }
.or-faq-page-list { background: var(--or-light-gray); padding-top: 64px; padding-bottom: 100px; }
.or-faq-page-list-inner { max-width: 880px; margin: 0 auto; }
.or-faq-page-summary { font-size: 14px; color: var(--or-muted); font-weight: 500; margin: 0 0 20px; }
.or-faq-page-items { display: flex; flex-direction: column; gap: 12px; }
.or-faq-page-item { background: var(--or-white); border-radius: 12px; border: 1px solid var(--or-border); overflow: hidden; transition: all .3s ease; }
.or-faq-page-item.is-open { border-color: var(--or-red); }
.or-faq-page-item.is-hidden { display: none; }
.or-faq-page-toggle { width: 100%; padding: 22px 24px; background: transparent; border: none; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--or-font-body); }
.or-faq-page-toggle span { font-size: 16px; font-weight: 600; color: var(--or-navy); line-height: 1.4; }
.or-faq-page-toggle i { width: 36px; height: 36px; border-radius: 999px; background: var(--or-light-gray); color: var(--or-navy); display: flex; align-items: center; justify-content: center; transition: all .3s; transform: rotate(0); flex-shrink: 0; font-style: normal; }
.or-faq-page-item.is-open .or-faq-page-toggle i { background: var(--or-red); color: var(--or-white); transform: rotate(45deg); }
.or-faq-page-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.or-faq-page-item.is-open .or-faq-page-answer { max-height: 600px; }
.or-faq-page-answer p { padding: 0 24px 22px; color: var(--or-text); font-size: 15px; line-height: 1.75; margin: 0; }
.or-faq-page-empty { display: none; text-align: center; padding: 80px 24px; background: var(--or-white); border-radius: 14px; }
.or-faq-page-empty.is-active { display: block; }
.or-faq-page-empty > span { width: 64px; height: 64px; border-radius: 999px; background: var(--or-light-gray); color: var(--or-muted); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.or-faq-page-empty h3 { font-size: 22px; margin: 20px 0 0; }
.or-faq-page-empty p { color: var(--or-muted); margin: 10px 0 0; font-size: 15px; }
.or-faq-page-empty .or-btn { margin-top: 24px; }
.or-faq-page-cta { background: var(--or-navy); padding: 100px 48px; position: relative; overflow: hidden; }
.or-faq-page-cta-orb-one, .or-faq-page-cta-orb-two { position: absolute; width: 500px; height: 500px; border-radius: 50%; }
.or-faq-page-cta-orb-one { top: -100px; right: -100px; background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%); }
.or-faq-page-cta-orb-two { bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(22,163,74,.12) 0%, transparent 70%); }
.or-faq-page-cta-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.or-faq-page-cta-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); color: var(--or-white); padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--or-font-head); }
.or-faq-page-cta .or-section-title { color: var(--or-white); font-size: 42px; margin: 24px 0 0; }
.or-faq-page-cta p { color: rgba(255,255,255,.75); margin: 16px 0 0; line-height: 1.7; font-size: 17px; }
.or-faq-page-cta-inner > div:last-child { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 968px) {
  .or-legal-page, .or-faq-page { padding-top: 84px; }
  body.admin-bar .or-legal-page, body.admin-bar .or-faq-page { padding-top: calc(84px + var(--or-admin-offset, 0px)); }
  .or-legal-hero-inner { padding-top: 48px; padding-bottom: 48px; }
  .or-legal-title { font-size: 36px; }
  .or-legal-mobile-toc { display: block; }
  .or-legal-mobile-toc .or-container { padding-top: 16px; padding-bottom: 16px; }
  .or-legal-grid { grid-template-columns: 1fr; gap: 0; }
  .or-legal-sidebar { display: none; }
  .or-legal-content { padding-top: 48px; padding-bottom: 64px; }
  .or-legal-cta { padding: 64px 20px; }
  .or-process-page-hero { min-height: auto; }
  .or-process-page-hero-inner { padding-top: 120px; padding-bottom: 80px; }
  body.admin-bar .or-process-page-hero-inner { padding-top: calc(120px + var(--or-admin-offset, 0px)); }
  .or-process-page-hero-title { font-size: 42px; }
  .or-process-page-overview-strip { margin-top: 48px; }
  .or-process-page-overview-line { display: none; }
  .or-process-page-overview-grid { grid-template-columns: 1fr; gap: 24px; }
  .or-process-page-overview-step { display: grid; grid-template-columns: 60px 1fr; gap: 0 18px; }
  .or-process-page-overview-step > span { grid-row: 1 / span 4; }
  .or-process-page-overview-step > i { margin-top: 0; }
  .or-process-page-overview-step strong { margin-top: 10px; }
  .or-process-page-overview-step small { margin-top: 10px; }
  .or-process-page-overview-step p { grid-column: 2; }
  .or-process-page-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .or-process-page-detail.is-reverse .or-process-page-detail-grid { direction: ltr; }
  .or-process-page-detail-copy .or-section-title,
  .or-process-page-intro .or-section-title,
  .or-process-page-timeline-intro .or-section-title { font-size: 32px; }
  .or-process-page-checkpoints { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .or-process-page-cta-card { padding: 40px 24px; }
  .or-process-page-cta-card .or-section-title { font-size: 32px; }
  .or-faq-page-hero-inner { padding-top: 64px; padding-bottom: 40px; }
  .or-faq-page-title { font-size: 36px; }
  .or-faq-page-category-scroll { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 20px; }
  .or-faq-page-chip { white-space: nowrap; }
  .or-faq-page-list { padding-top: 64px; padding-bottom: 64px; }
  .or-faq-page-cta { padding: 64px 20px; }
  .or-faq-page-cta .or-section-title { font-size: 32px; }
}
@media (max-width: 560px) {
  .or-legal-title, .or-faq-page-title { font-size: 28px; }
  .or-legal-cta h2 { font-size: 28px; }
  .or-process-page-hero-title { font-size: 34px; }
  .or-process-page-checkpoints { grid-template-columns: 1fr; }
  .or-process-page-week { grid-template-columns: 1fr; gap: 10px; }
  .or-faq-page-toggle { padding: 18px 16px; gap: 12px; }
  .or-faq-page-toggle span { font-size: 15px; }
  .or-faq-page-answer p { padding: 0 16px 18px; font-size: 14px; }
}

/* v1.6.1 - Single product white hero/header and corrected gallery proportions */
.or-single-product { padding-top: 82px; background: var(--or-white); }
.or-single-product .or-single-breadcrumb { margin-top: 0; }
.or-single-product .or-single-hero-grid > * { min-width: 0; }
.or-single-product .or-gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body.or-product-single-active .or-nav { background: rgba(255,255,255,.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--or-border); }
body.or-product-single-active .or-nav .or-logo-light { display: none !important; }
body.or-product-single-active .or-nav .or-logo-dark { display: block !important; }
body.or-product-single-active .or-nav .or-brand,
body.or-product-single-active .or-nav .or-nav-link { color: var(--or-navy); }
body.or-product-single-active .or-nav .or-nav-link:hover { color: var(--or-red); }
body.or-product-single-active .or-nav .or-mobile-toggle span { background: var(--or-navy); }
@media (min-width: 969px) {
  .or-single-product .or-single-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (min-width: 561px) and (max-width: 968px) {
  .or-single-product .or-gallery { width: 100%; max-width: 620px; margin-left: auto; margin-right: auto; }
}


/* v1.6.2 - Preserve two-column single-product quick specifications on phones */
@media (max-width: 560px) {
  .or-single-product .or-quick-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* v1.6.3 - legal readability and enhanced mobile footer */
@media (max-width: 968px) {
  .or-footer-bottom { grid-template-columns: 1fr; justify-items: center; gap: 18px; text-align: center; }
  .or-footer-copyright, .or-footer-socials, .or-footer-legal, .or-footer-credit { grid-column: auto; justify-self: center; }
  .or-footer-legal { justify-content: center; flex-wrap: wrap; }
  .or-legal-grid { gap: 34px; }
  .or-legal-copy { line-height: 1.78; }
}
@media (max-width: 560px) {
  .or-footer-inner { padding-top: 56px; padding-bottom: 28px; }
  .or-footer-bottom { margin-top: 40px; padding-top: 26px; gap: 17px; }
  .or-footer-legal { gap: 22px; }
  .or-footer-social { width: 40px; height: 40px; }
  .or-legal-content { padding-top: 46px; padding-bottom: 72px; }
  .or-legal-block { margin-bottom: 46px; }
  .or-legal-block h2 { font-size: 24px; line-height: 1.3; }
  .or-legal-copy { margin-top: 18px; font-size: 15px; line-height: 1.8; }
  .or-legal-copy p { margin-bottom: 24px; }
  .or-legal-copy ul { margin: 0 0 32px; gap: 11px; padding-left: 21px; }
  .or-legal-copy .or-legal-subheading { margin-top: 34px; margin-bottom: 10px; }
}

/* v1.6.6 refinements */
.or-legal-copy p { white-space: pre-line; }
.or-legal-copy p + p { margin-top: 22px; }
.or-legal-copy ul { display: block; }
@media (max-width: 560px) {
  .or-legal-copy { font-size: 15px; line-height: 1.75; }
  .or-legal-copy p { margin-bottom: 26px; white-space: pre-line; }
}
@media (max-width: 968px) {
  .or-about-highlights { align-items: center; }
  .or-highlight { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; column-gap: 12px; min-height: 48px; }
  .or-highlight strong { max-width: 100%; text-align: left; }
}
@media (max-width: 560px) {
  .or-highlight { column-gap: 10px; min-height: 44px; }
  .or-highlight strong { font-size: 14px; line-height: 1.28; }
}
@media (max-width: 560px) {
  .or-footer-inner { padding-top: 48px; padding-bottom: 24px; }
  .or-footer-bottom { margin-top: 34px; padding-top: 22px; gap: 12px; }
  .or-footer-bottom p { font-size: 12px; line-height: 1.55; }
  .or-footer-socials { gap: 8px; }
  .or-footer-social { width: 34px; height: 34px; }
  .or-footer-social svg { width: 15px; height: 15px; }
  .or-footer-legal { gap: 16px; }
  .or-footer-bottom .or-footer-link { font-size: 12px; padding: 2px 0; }
  .or-footer-credit { font-size: 12px; }
}


/* v1.6.7 - Client content corrections and FAQ/legal display fixes */
.or-legal-copy p { white-space: normal; }
.or-legal-copy ul { list-style: disc; display: grid; gap: 9px; margin: 0 0 28px; padding-left: 24px; }
.or-legal-copy li { line-height: 1.78; color: var(--or-text); }
.or-legal-copy .or-legal-subheading { display: block; margin: 28px 0 10px; color: var(--or-navy); font-weight: 700; font-size: 16px; line-height: 1.45; }
.or-faq-page-chip,
.or-faq-page-item { opacity: 1 !important; visibility: visible !important; }
@media (max-width: 968px) {
  .or-faq-page-categories { position: static; top: auto; z-index: 1; }
  .or-faq-page-category-scroll { padding: 14px 0; gap: 8px; }
  .or-faq-page-list { padding-top: 36px; }
  .or-faq-page-hero-inner { padding-top: 56px; padding-bottom: 36px; }
  .or-faq-page-search { margin-top: 26px; }
}
@media (max-width: 560px) {
  .or-faq-page-chip,
  .or-faq-page-item { transform: none !important; }
  .or-faq-page-category-scroll { padding-bottom: 14px; }
  .or-faq-page-list { padding-top: 32px; }
  .or-legal-copy ul { gap: 8px; margin-bottom: 30px; padding-left: 20px; }
  .or-legal-copy li { line-height: 1.7; }
}

/* v1.6.7 refinements */
.or-legal-copy { line-height: 1.82; }
.or-legal-copy p { margin: 0 0 24px !important; white-space: normal !important; }
.or-legal-copy .or-legal-subheading { display: block; margin: 34px 0 12px !important; color: var(--or-navy); font-weight: 700; font-size: 16px; line-height: 1.45; }
.or-legal-copy ul { list-style: disc outside !important; display: block !important; margin: 0 0 32px 0 !important; padding-left: 24px !important; }
.or-legal-copy li { display: list-item !important; margin: 0 0 10px !important; padding-left: 4px !important; color: var(--or-text); line-height: 1.75; }
.or-legal-copy li::marker { color: var(--or-red); }
.or-faq-page-chip, .or-faq-page-item { opacity: 1 !important; visibility: visible !important; }
.or-faq-page-category-scroll { min-height: 0; }
@media (max-width: 768px) {
  .or-faq-page-chip, .or-faq-page-item { transform: none !important; }
  .or-faq-page-categories { position: static !important; top: auto !important; }
  .or-faq-page-category-scroll { overflow-x: auto; flex-wrap: nowrap !important; padding-top: 14px !important; padding-bottom: 14px !important; gap: 8px !important; }
  .or-faq-page-list { padding-top: 28px !important; }
  .or-legal-copy { font-size: 15px; line-height: 1.76; }
  .or-legal-copy .or-legal-subheading { margin-top: 30px !important; }
  .or-legal-copy ul { padding-left: 20px !important; margin-bottom: 30px !important; }
}


/* About page identity block */
.or-about-identity { background: linear-gradient(180deg, #f8fafc 0%, var(--or-white) 100%); }
.or-about-brand-kicker { display: inline-flex; align-items: center; justify-content: center; padding: 8px 18px; border-radius: 999px; background: var(--or-navy); color: var(--or-white); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .22em; margin-bottom: 18px; }
.or-about-mv-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; margin-top: 56px; align-items: stretch; }
.or-about-statement-card { position: relative; overflow: hidden; background: var(--or-white); border: 1px solid var(--or-border); border-radius: 18px; padding: 38px; box-shadow: 0 18px 46px -30px rgba(0,30,64,.22); transition: border-color .3s, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.or-about-statement-card:hover { border-color: var(--or-red); transform: translateY(-4px); box-shadow: 0 24px 56px -34px rgba(0,30,64,.3); }
.or-about-statement-card:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--or-red), var(--or-green)); }
.or-about-statement-icon { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; color: var(--or-green); background: rgba(22,163,74,.1); margin-bottom: 22px; }
.or-about-statement-card small { display: block; color: var(--or-red); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.or-about-statement-card h3 { font-size: 26px; margin: 0 0 14px; }
.or-about-statement-card p, .or-about-statement-card div { color: var(--or-text); font-size: 15px; line-height: 1.8; margin: 0; }
.or-about-statement-card div p { margin: 0 0 14px; }
.or-about-statement-card div p:last-child { margin-bottom: 0; }
.or-about-core-values-block { margin-top: 68px; }
.or-about-core-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.or-about-core-heading span { display: inline-flex; color: var(--or-green); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.or-about-core-heading h3 { font-size: 34px; }
.or-about-core-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.or-about-core-card { background: var(--or-white); border: 1px solid var(--or-border); border-radius: 14px; padding: 22px; display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: flex-start; transition: border-color .3s, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.or-about-core-card:hover { border-color: rgba(220,38,38,.45); transform: translateY(-3px); box-shadow: 0 16px 34px -26px rgba(0,30,64,.28); }
.or-about-core-number { width: 42px; height: 42px; border-radius: 999px; background: var(--or-navy); color: var(--or-white); display: inline-flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.or-about-core-card h4 { font-size: 18px; margin: 0; }
.or-about-core-card p { color: var(--or-muted); font-size: 14px; line-height: 1.65; margin: 8px 0 0; }
.or-about-philosophy-card { margin-top: 64px; border-radius: 22px; padding: 48px; background: var(--or-navy); color: rgba(255,255,255,.8); position: relative; overflow: hidden; }
.or-about-philosophy-card:before { content: ''; position: absolute; inset: -80px auto auto -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(22,163,74,.16); filter: blur(10px); }
.or-about-philosophy-card:after { content: ''; position: absolute; right: -100px; bottom: -110px; width: 320px; height: 320px; border-radius: 50%; background: rgba(220,38,38,.15); filter: blur(16px); }
.or-about-philosophy-card > * { position: relative; z-index: 1; }
.or-about-philosophy-icon { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; color: var(--or-green); background: rgba(255,255,255,.08); margin-bottom: 18px; }
.or-about-philosophy-card h3 { color: var(--or-white); font-size: 34px; }
.or-about-philosophy-text { max-width: 880px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.85; margin-top: 18px; }
.or-about-philosophy-text p { margin: 0 0 18px; }
.or-about-philosophy-text p:last-child { margin-bottom: 0; color: var(--or-white); font-weight: 600; }
@media (max-width: 968px) {
  .or-about-mv-grid, .or-about-core-grid { grid-template-columns: 1fr; }
  .or-about-statement-card { padding: 30px; }
  .or-about-core-heading h3, .or-about-philosophy-card h3 { font-size: 28px; }
  .or-about-philosophy-card { padding: 34px 26px; border-radius: 18px; }
}
@media (max-width: 560px) {
  .or-about-brand-kicker { font-size: 11px; letter-spacing: .18em; }
  .or-about-mv-grid { margin-top: 42px; }
  .or-about-statement-card { padding: 26px 22px; }
  .or-about-statement-card h3 { font-size: 22px; }
  .or-about-statement-card p, .or-about-statement-card div { font-size: 14px; line-height: 1.75; }
  .or-about-core-card { grid-template-columns: 38px 1fr; gap: 13px; padding: 18px; }
  .or-about-core-number { width: 36px; height: 36px; font-size: 11px; }
  .or-about-core-card h4 { font-size: 16px; }
  .or-about-core-card p { font-size: 13px; line-height: 1.6; }
  .or-about-philosophy-text { font-size: 15px; line-height: 1.75; }
}

/* v1.6.14 - dark-mode browser logo handling and larger header logo */
@media (prefers-color-scheme: dark) {
  .or-nav.is-solid,
  body.or-solid-inner-active .or-nav,
  body.or-product-single-active .or-nav,
  body.error404 .or-nav,
  body.or-not-found-active .or-nav {
    background: rgba(0,30,64,.98) !important;
    border-bottom-color: rgba(255,255,255,.12) !important;
  }
  .or-nav .or-logo-light,
  .or-nav.is-solid .or-logo-light,
  body.or-solid-inner-active .or-nav .or-logo-light,
  body.or-product-single-active .or-nav .or-logo-light,
  body.error404 .or-nav .or-logo-light,
  body.or-not-found-active .or-nav .or-logo-light {
    display: block !important;
  }
  .or-nav .or-logo-dark,
  .or-nav.is-solid .or-logo-dark,
  body.or-solid-inner-active .or-nav .or-logo-dark,
  body.or-product-single-active .or-nav .or-logo-dark,
  body.error404 .or-nav .or-logo-dark,
  body.or-not-found-active .or-nav .or-logo-dark {
    display: none !important;
  }
  .or-nav.is-solid .or-brand,
  .or-nav.is-solid .or-nav-link,
  body.or-solid-inner-active .or-nav .or-brand,
  body.or-solid-inner-active .or-nav .or-nav-link,
  body.or-product-single-active .or-nav .or-brand,
  body.or-product-single-active .or-nav .or-nav-link,
  body.error404 .or-nav .or-brand,
  body.error404 .or-nav .or-nav-link,
  body.or-not-found-active .or-nav .or-brand,
  body.or-not-found-active .or-nav .or-nav-link {
    color: var(--or-white) !important;
  }
  .or-nav.is-solid .or-mobile-toggle span,
  body.or-solid-inner-active .or-nav .or-mobile-toggle span,
  body.or-product-single-active .or-nav .or-mobile-toggle span,
  body.error404 .or-nav .or-mobile-toggle span,
  body.or-not-found-active .or-nav .or-mobile-toggle span {
    background: var(--or-white) !important;
  }
}

/* v1.6.15 - Restore the original header appearance in dark-mode browsers; only swap the logo asset. */
@media (prefers-color-scheme: dark) {
  .or-nav.is-solid,
  body.error404 .or-nav,
  body.or-not-found-active .or-nav,
  body.or-solid-inner-active .or-nav,
  body.or-product-single-active .or-nav {
    background: rgba(255,255,255,.98) !important;
    border-bottom-color: var(--or-border) !important;
  }
  .or-nav .or-logo-light,
  .or-nav.is-solid .or-logo-light,
  body.error404 .or-nav .or-logo-light,
  body.or-not-found-active .or-nav .or-logo-light,
  body.or-solid-inner-active .or-nav .or-logo-light,
  body.or-product-single-active .or-nav .or-logo-light {
    display: block !important;
  }
  .or-nav .or-logo-dark,
  .or-nav.is-solid .or-logo-dark,
  body.error404 .or-nav .or-logo-dark,
  body.or-not-found-active .or-nav .or-logo-dark,
  body.or-solid-inner-active .or-nav .or-logo-dark,
  body.or-product-single-active .or-nav .or-logo-dark {
    display: none !important;
  }
  .or-nav.is-solid .or-brand,
  .or-nav.is-solid .or-nav-link,
  body.error404 .or-nav .or-brand,
  body.or-not-found-active .or-nav .or-brand,
  body.or-solid-inner-active .or-nav .or-brand,
  body.or-solid-inner-active .or-nav .or-nav-link,
  body.or-product-single-active .or-nav .or-brand,
  body.or-product-single-active .or-nav .or-nav-link {
    color: var(--or-navy) !important;
  }
  .or-nav.is-solid .or-mobile-toggle span,
  body.error404 .or-nav .or-mobile-toggle span,
  body.or-not-found-active .or-nav .or-mobile-toggle span,
  body.or-solid-inner-active .or-nav .or-mobile-toggle span,
  body.or-product-single-active .or-nav .or-mobile-toggle span {
    background: var(--or-navy) !important;
  }
}
.or-impact-pillar.no-image { grid-template-columns: 1fr !important; }
.or-impact-pillar.no-image .or-impact-pillar-copy { max-width: 820px; margin-left: auto; margin-right: auto; text-align: left; }
.or-impact-gallery.is-empty { display: none !important; }


/* v1.6.16 - In dark-mode browsers, keep the original dark logo on white/solid headers.
   The light logo is only used on transparent/dark hero headers. */
@media (prefers-color-scheme: dark) {
  .or-nav.is-solid .or-logo-light,
  body.error404 .or-nav .or-logo-light,
  body.or-not-found-active .or-nav .or-logo-light,
  body.or-solid-inner-active .or-nav .or-logo-light,
  body.or-product-single-active .or-nav .or-logo-light {
    display: none !important;
  }
  .or-nav.is-solid .or-logo-dark,
  body.error404 .or-nav .or-logo-dark,
  body.or-not-found-active .or-nav .or-logo-dark,
  body.or-solid-inner-active .or-nav .or-logo-dark,
  body.or-product-single-active .or-nav .or-logo-dark {
    display: block !important;
  }
}
