/* ============================================
   Rewardsco Careers — Brand Styles
   Colors: #004257 (Dark Blue), #EF4136 (Red),
           #00ADAD (Teal), #FFBB22 (Yellow)
   Fonts: Montserrat (primary), Gantari (secondary)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Gantari:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --rc-dark-blue: #004257;
  --rc-red: #EF4136;
  --rc-teal: #00ADAD;
  --rc-yellow: #FFBB22;
  --rc-black: #000000;
  --rc-white: #FFFFFF;
  --rc-gray-50: #F7F9FA;
  --rc-gray-100: #EEF1F3;
  --rc-gray-200: #DCE2E6;
  --rc-gray-300: #B7C1C7;
  --rc-gray-500: #6B7A82;
  --rc-gray-700: #394248;
  --rc-gray-900: #0F1619;

  --rc-gradient-hero: linear-gradient(135deg, #004257 0%, #006279 55%, #00ADAD 100%);
  --rc-gradient-accent: linear-gradient(135deg, #EF4136 0%, #FFBB22 100%);

  --shadow-sm: 0 2px 6px rgba(0, 66, 87, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 66, 87, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 66, 87, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1240px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--rc-gray-900);
  background: var(--rc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--rc-red); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--rc-teal); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--rc-dark-blue);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { font-family: 'Gantari', 'Montserrat', sans-serif; font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--rc-dark-blue); color: var(--rc-white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--rc-white); }
.section-gray { background: var(--rc-gray-50); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--rc-red);
  display: inline-block;
}
.section-dark .eyebrow { color: var(--rc-yellow); }
.section-dark .eyebrow::before { background: var(--rc-yellow); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s var(--ease-out);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--rc-red);
  color: var(--rc-white);
  box-shadow: 0 10px 25px rgba(239, 65, 54, 0.35);
}
.btn-primary:hover {
  background: var(--rc-dark-blue);
  color: var(--rc-white);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 66, 87, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--rc-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: var(--rc-white); color: var(--rc-dark-blue); border-color: var(--rc-white); }
.btn-outline {
  background: transparent;
  color: var(--rc-dark-blue);
  border-color: var(--rc-dark-blue);
}
.btn-outline:hover { background: var(--rc-dark-blue); color: var(--rc-white); }
.btn-yellow {
  background: var(--rc-yellow);
  color: var(--rc-dark-blue);
}
.btn-yellow:hover { background: var(--rc-dark-blue); color: var(--rc-yellow); }

/* ============= Announcement bar ============= */
.announce {
  background: var(--rc-dark-blue);
  color: var(--rc-white);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  position: relative;
  z-index: 60;
}
.announce strong { color: var(--rc-yellow); margin-right: 6px; }
.announce a { color: var(--rc-yellow); font-weight: 700; margin-left: 6px; }
.announce a:hover { color: var(--rc-white); }

/* ============= Header / Navigation ============= */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rc-gray-100);
  transition: box-shadow .2s var(--ease-out);
}
.nav-wrap.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo .logo-mark {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-divider {
  width: 1px;
  height: 28px;
  background: var(--rc-gray-200);
  display: block;
}
.nav-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rc-teal);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  display: inline-block;
  color: var(--rc-gray-700);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all .2s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rc-red);
  background: var(--rc-gray-50);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--rc-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s var(--ease-out);
  list-style: none;
  border: 1px solid var(--rc-gray-100);
}
.nav-links li:hover .nav-dropdown,
.nav-links li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--rc-gray-700);
  font-size: 0.88rem;
}
.nav-dropdown a:hover { background: var(--rc-gray-50); color: var(--rc-red); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rc-dark-blue);
  transition: transform .25s var(--ease-out), opacity .25s var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============= Photo / Device System ============= */
/* Matches the main rewardsco.com cropped device-shape style.
   Many source photos have the shape baked in as a transparent WebP. */
.photo-device {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
}
.photo-device img.photo-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 66, 87, 0.25));
}
/* Triangle brand devices (red + teal) overlaid on top of the photo */
.brand-tri {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  width: 28%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}
.brand-tri.tri-tr { top: 5%; right: -8%; }
.brand-tri.tri-tl { top: 5%; left: -8%; }
.brand-tri.tri-br { bottom: 5%; right: -8%; }
.brand-tri.tri-bl { bottom: 5%; left: -8%; }
.brand-tri.tri-mid { top: 50%; right: -10%; transform: translateY(-50%); }

/* Fallback device-crop using clip-path for non-baked images */
.photo-device-frame {
  clip-path: polygon(30% 0%, 95% 0%, 100% 20%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 18%);
  border-radius: 18px;
  overflow: hidden;
}

/* Simple rounded photo used inside cards */
.photo-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* Image card overlay with brand devices */
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.image-card img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 42, 56, 0.75));
  pointer-events: none;
}
.image-card .image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
  z-index: 2;
}
.image-card .image-caption h4 { color: white; font-size: 1.25rem; margin-bottom: 4px; }
.image-card .image-caption p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

/* Decorative corner triangles (used on section hero) */
.corner-triangles {
  position: absolute;
  z-index: 2;
  width: 150px;
  height: auto;
  pointer-events: none;
}
.corner-triangles img { width: 100%; display: block; }
.corner-triangles .tri-stack { position: relative; }
.corner-triangles .tri-stack .tri-red {
  position: absolute;
  left: 30%;
  top: 0;
  width: 80%;
}

/* ============= Hero ============= */
.hero {
  position: relative;
  background: var(--rc-gradient-hero);
  color: var(--rc-white);
  overflow: hidden;
  padding: 140px 0 120px;
}
.hero.hero-photo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero.hero-photo .hero-content { padding-left: 24px; }
.hero.hero-photo .hero-photo-wrap {
  position: relative;
  padding-right: 24px;
}
.hero.hero-photo .hero-photo-wrap img.hero-person {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.3));
  margin-left: auto;
  display: block;
}
.hero.hero-photo .hero-photo-wrap .brand-tri {
  position: absolute;
  top: 8%;
  right: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero.hero-photo { grid-template-columns: 1fr; gap: 40px; }
  .hero.hero-photo .hero-photo-wrap { padding: 0 24px; }
  .hero.hero-photo .hero-photo-wrap img.hero-person { max-width: 380px; margin: 0 auto; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 187, 34, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(239, 65, 54, 0.22), transparent 45%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  right: -100px;
  top: -60px;
  width: 560px;
  height: 560px;
  opacity: 0.14;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero h1 {
  color: var(--rc-white);
  font-weight: 900;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--rc-yellow); }
.hero h1 .accent-red { color: var(--rc-red); }
.hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 640px;
  opacity: 0.94;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.92);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 900;
  color: var(--rc-yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

/* ============= Quick actions bar ============= */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--rc-white);
  position: relative;
  z-index: 3;
  margin-top: -60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quick-action {
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--rc-gray-900);
  transition: background .25s var(--ease-out);
  position: relative;
}
.quick-action + .quick-action::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--rc-gray-200);
}
.quick-action:hover { background: var(--rc-gray-50); color: var(--rc-dark-blue); }
.quick-action-icon {
  width: 52px;
  height: 52px;
  background: var(--rc-gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rc-red);
  transition: all .25s var(--ease-out);
}
.quick-action:hover .quick-action-icon { background: var(--rc-red); color: var(--rc-white); }
.quick-action h4 { color: var(--rc-dark-blue); font-size: 1.05rem; margin-bottom: 2px; }
.quick-action p { font-size: 0.85rem; color: var(--rc-gray-500); line-height: 1.4; }

/* ============= Section intro ============= */
.section-intro { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { font-size: 1.1rem; color: var(--rc-gray-700); }

/* ============= Pillars grid ============= */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pillar {
  background: var(--rc-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--rc-gray-100);
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--rc-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #004257 0%, #00ADAD 100%);
  color: var(--rc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar:nth-child(2) .pillar-icon { background: linear-gradient(135deg, #EF4136 0%, #FFBB22 100%); }
.pillar:nth-child(3) .pillar-icon { background: linear-gradient(135deg, #00ADAD 0%, #FFBB22 100%); }
.pillar:nth-child(4) .pillar-icon { background: linear-gradient(135deg, #EF4136 0%, #004257 100%); }
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--rc-gray-700); }

/* ============= Feature split ============= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-reverse .split-copy { order: 2; }

.split-visual {
  position: relative;
  aspect-ratio: 4/3;
}
.split-visual.has-photo {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  aspect-ratio: auto;
  min-height: 460px;
}
.split-visual .split-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 40px rgba(0, 66, 87, 0.22));
}
.split-visual .brand-tri {
  position: absolute;
  top: 6%;
  right: -8%;
  width: 32%;
  pointer-events: none;
  z-index: 2;
}
.split-reverse .split-visual .brand-tri { right: auto; left: -8%; }

.split-visual-legacy {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.split-visual-legacy .visual-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rc-gradient-hero);
  color: white;
}
.split-visual-legacy .badge-stat,
.split-visual .badge-stat {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--rc-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.split-visual .badge-stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--rc-red);
  font-weight: 900;
}
.split-visual .badge-stat span { font-size: 0.8rem; color: var(--rc-gray-700); }

.split ul.check-list { list-style: none; margin-top: 22px; }
.split ul.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--rc-gray-700);
  border-bottom: 1px solid var(--rc-gray-100);
}
.split ul.check-list li:last-child { border-bottom: 0; }
.split ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  background: var(--rc-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============= Values grid ============= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--rc-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--rc-gray-100);
  text-align: center;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
  background: var(--rc-dark-blue);
  color: var(--rc-white);
}
.value-card:hover h3 { color: var(--rc-yellow); }
.value-card:hover p { color: rgba(255,255,255,0.88); }
.value-card-num {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--rc-red);
  line-height: 1;
  margin-bottom: 10px;
  transition: color .3s var(--ease-out);
}
.value-card:hover .value-card-num { color: var(--rc-yellow); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; color: var(--rc-gray-700); }

/* ============= Job search page ============= */
.jobs-hero {
  background: var(--rc-dark-blue);
  color: var(--rc-white);
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}
.jobs-hero .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}
.jobs-hero .container { position: relative; z-index: 2; }
.jobs-hero .jobs-hero-tri {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 220px;
  z-index: 1;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
}
@media (max-width: 880px) {
  .jobs-hero .jobs-hero-tri { display: none; }
}

/* People photo band (imagery row at bottom of sections) */
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.photo-band .photo-band-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-band .photo-band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.photo-band .photo-band-item:hover img { transform: scale(1.06); }
.photo-band .photo-band-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,66,87,0.7));
}
.photo-band .photo-band-item .cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  z-index: 2;
}
@media (max-width: 720px) {
  .photo-band { grid-template-columns: 1fr; }
}
.jobs-hero::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 173, 173, 0.35), transparent 60%);
}
.jobs-hero h1 { color: white; }
.jobs-search-card {
  background: var(--rc-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  margin-top: -80px;
  position: relative;
  z-index: 5;
}
.jobs-search-form {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr auto;
  gap: 16px;
  align-items: end;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--rc-gray-500);
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Gantari', sans-serif;
  padding: 14px 16px;
  border: 1px solid var(--rc-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--rc-gray-900);
  background: var(--rc-white);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--rc-teal);
  box-shadow: 0 0 0 4px rgba(0, 173, 173, 0.15);
}

.jobs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 48px;
}
.jobs-filters {
  background: var(--rc-gray-50);
  border-radius: var(--radius-md);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 120px;
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--rc-dark-blue);
}
.filter-chip {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--rc-gray-700);
  cursor: pointer;
  user-select: none;
}
.filter-chip input { margin-right: 8px; accent-color: var(--rc-red); }
.filter-chip .count {
  float: right;
  background: var(--rc-gray-200);
  color: var(--rc-gray-700);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}

.jobs-results {}
.jobs-results-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.jobs-count { font-weight: 600; color: var(--rc-gray-700); }
.jobs-count strong { color: var(--rc-red); font-size: 1.25rem; margin-right: 4px; }

.job-card {
  background: var(--rc-white);
  border: 1px solid var(--rc-gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
  transition: all .25s var(--ease-out);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.job-card:hover {
  border-color: var(--rc-teal);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.job-card-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--rc-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--rc-red);
}
.job-card-content { flex: 1; }
.job-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.job-card .job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--rc-gray-500);
  margin-bottom: 12px;
}
.job-card .job-meta span { display: inline-flex; align-items: center; gap: 5px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.job-tag {
  background: var(--rc-gray-50);
  color: var(--rc-gray-700);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}
.job-tag.hot { background: rgba(239, 65, 54, 0.1); color: var(--rc-red); }
.job-tag.new { background: rgba(0, 173, 173, 0.12); color: var(--rc-teal); }

.job-card-cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.job-card-cta .btn { padding: 10px 18px; font-size: 0.78rem; white-space: nowrap; }
.job-card .salary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rc-dark-blue);
}

/* ============= Stories ============= */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}
.story-card {
  background: var(--rc-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease-out);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.story-header {
  padding: 28px 28px 20px;
  background: var(--rc-gradient-hero);
  color: var(--rc-white);
  position: relative;
}
.story-card:nth-child(2) .story-header { background: linear-gradient(135deg, #EF4136 0%, #FFBB22 100%); }
.story-card:nth-child(3) .story-header { background: linear-gradient(135deg, #00ADAD 0%, #004257 100%); }
.story-card:nth-child(4) .story-header { background: linear-gradient(135deg, #FFBB22 0%, #EF4136 100%); color: var(--rc-dark-blue); }
.story-card:nth-child(5) .story-header { background: linear-gradient(135deg, #004257 0%, #00ADAD 100%); }
.story-card:nth-child(6) .story-header { background: linear-gradient(135deg, #EF4136 0%, #004257 100%); }

.story-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--rc-white);
  margin-bottom: 18px;
  border: 3px solid rgba(255,255,255,0.5);
  overflow: hidden;
}
.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card {
  position: relative;
}
.story-card .story-photo-full {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.story-card.has-photo .story-header {
  padding-top: 24px;
}
/* Story card as a photo-forward card */
.story-photo-card {
  background: var(--rc-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease-out);
  position: relative;
}
.story-photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.story-photo-card .story-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.story-photo-card .story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.story-photo-card:hover .story-photo img { transform: scale(1.05); }
.story-photo-card .story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,42,56,0.85));
}
.story-photo-card .story-photo .corner-device {
  position: absolute;
  bottom: 16px;
  right: -12px;
  width: 60px;
  z-index: 3;
}
.story-photo-card .story-photo .identity {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: white;
  z-index: 3;
}
.story-photo-card .story-photo .identity h3 { color: white; font-size: 1.15rem; margin-bottom: 2px; }
.story-photo-card .story-photo .identity span { font-size: 0.85rem; opacity: 0.9; }
.story-photo-card .story-body { padding: 22px 24px 26px; }
.story-card:nth-child(4) .story-avatar { color: var(--rc-dark-blue); border-color: var(--rc-dark-blue); background: rgba(0, 66, 87, 0.15); }

.story-name { font-size: 1.25rem; font-weight: 800; color: inherit; margin-bottom: 4px; }
.story-role { font-size: 0.88rem; opacity: 0.88; }
.story-card:nth-child(4) .story-name { color: var(--rc-dark-blue); }

.story-body { padding: 22px 28px 28px; }
.story-quote {
  font-family: 'Gantari', sans-serif;
  font-size: 0.98rem;
  color: var(--rc-gray-700);
  line-height: 1.65;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  border-left: 3px solid var(--rc-red);
}
.story-progression {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--rc-gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--rc-gray-100);
}
.story-progression strong { color: var(--rc-dark-blue); }
.arrow { color: var(--rc-teal); font-weight: 900; }

/* ============= FAQ accordion ============= */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--rc-white);
  border: 1px solid var(--rc-gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s var(--ease-out);
}
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--rc-teal); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--rc-dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--rc-red); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rc-gray-50);
  color: var(--rc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all .25s var(--ease-out);
}
.faq-item.active .faq-icon { background: var(--rc-red); color: var(--rc-white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-a-inner {
  padding: 0 26px 26px;
  color: var(--rc-gray-700);
  font-family: 'Gantari', sans-serif;
  line-height: 1.7;
}

/* ============= CTA band ============= */
.cta-band {
  background: var(--rc-red);
  color: var(--rc-white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255, 187, 34, 0.3), transparent 25%),
    radial-gradient(circle at 85% 50%, rgba(0, 66, 87, 0.35), transparent 30%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--rc-white); margin-bottom: 14px; }
.cta-band p { font-size: 1.08rem; opacity: 0.95; max-width: 620px; margin: 0 auto 28px; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.8); }

/* ============= Footer ============= */
.footer {
  background: #002a38;
  color: rgba(255,255,255,0.82);
  padding: 72px 0 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-mark { height: 36px; width: auto; display: block; }
.footer-brand .nav-logo-divider { background: rgba(255,255,255,0.2); }
.footer-brand .nav-logo-sub { color: var(--rc-yellow); }
.footer-brand .nav-logo { gap: 14px; }

/* ============= Video / YouTube embed ============= */
.video-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
}
.video-feature iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-section {
  background: var(--rc-dark-blue);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 173, 173, 0.18), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(239, 65, 54, 0.18), transparent 35%);
  pointer-events: none;
}
.video-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.video-section h2 { color: white; }
.video-section .eyebrow { color: var(--rc-yellow); }
.video-section .eyebrow::before { background: var(--rc-yellow); }
.video-section p { color: rgba(255,255,255,0.86); font-size: 1.05rem; margin-top: 8px; }
.video-section .video-side-tri {
  position: absolute;
  left: -50px;
  bottom: -40px;
  width: 220px;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 880px) {
  .video-section .container { grid-template-columns: 1fr; gap: 32px; }
  .video-section .video-side-tri { display: none; }
}
.footer-brand p {
  margin: 16px 0 22px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 340px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-white);
  transition: all .25s var(--ease-out);
}
.footer-socials a:hover { background: var(--rc-red); transform: translateY(-3px); }

.footer h5 {
  color: var(--rc-white);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer ul a:hover { color: var(--rc-yellow); }

.footer-contact { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.72); }
.footer-contact strong { color: var(--rc-white); display: block; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); margin-left: 18px; }
.footer-bottom a:hover { color: var(--rc-yellow); }

/* ============= Culture / Timeline ============= */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rc-gray-200);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.timeline-dot {
  grid-column: 2;
  width: 46px;
  height: 46px;
  background: var(--rc-red);
  border-radius: 50%;
  justify-self: center;
  align-self: start;
  margin-top: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--rc-red);
  z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot { background: var(--rc-teal); box-shadow: 0 0 0 3px var(--rc-teal); }
.timeline-item:nth-child(3n) .timeline-dot { background: var(--rc-yellow); color: var(--rc-dark-blue); box-shadow: 0 0 0 3px var(--rc-yellow); }
.timeline-card {
  background: var(--rc-white);
  padding: 24px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(odd) .timeline-card { grid-column: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-card { grid-column: 3; }
.timeline-card h4 { color: var(--rc-dark-blue); margin-bottom: 6px; font-size: 1.1rem; }
.timeline-card p { color: var(--rc-gray-700); font-size: 0.92rem; }
.timeline-card small {
  display: block;
  color: var(--rc-red);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

/* ============= Page hero (inner pages) ============= */
.page-hero {
  background: var(--rc-dark-blue);
  color: var(--rc-white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero.with-photo {
  padding: 100px 0 110px;
}
.page-hero .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
}
.page-hero.with-photo::before,
.page-hero.with-photo::after { z-index: 1; }
.page-hero.with-photo .container { z-index: 2; }
.page-hero .hero-side-tri {
  position: absolute;
  right: -30px;
  top: 30px;
  width: 240px;
  z-index: 3;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}
@media (max-width: 880px) {
  .page-hero .hero-side-tri { display: none; }
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 173, 173, 0.28), transparent 70%);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 187, 34, 0.18), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 880px; }
.page-hero .eyebrow { color: var(--rc-yellow); }
.page-hero .eyebrow::before { background: var(--rc-yellow); }
.page-hero h1 { color: var(--rc-white); }
.page-hero p.lead { font-size: 1.15rem; opacity: 0.92; margin-top: 16px; max-width: 680px; }

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--rc-yellow); }
.breadcrumbs .sep { opacity: 0.5; }

/* ============= Facilities grid ============= */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.facility-card {
  background: var(--rc-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease-out);
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.facility-img {
  height: 190px;
  background: var(--rc-gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-white);
  position: relative;
  overflow: hidden;
}
.facility-img img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,66,87,0.0) 40%, rgba(0,66,87,0.55));
  pointer-events: none;
}
.facility-img > *:not(img):not(.facility-corner-tri) {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.facility-corner-tri {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 50px;
  z-index: 3;
  pointer-events: none;
}
.facility-card:nth-child(2) .facility-img { background: linear-gradient(135deg, #EF4136, #FFBB22); }
.facility-card:nth-child(3) .facility-img { background: linear-gradient(135deg, #00ADAD, #004257); }
.facility-card:nth-child(4) .facility-img { background: linear-gradient(135deg, #FFBB22, #00ADAD); }
.facility-card:nth-child(5) .facility-img { background: linear-gradient(135deg, #004257, #EF4136); }
.facility-card:nth-child(6) .facility-img { background: linear-gradient(135deg, #00ADAD, #FFBB22); }
.facility-body { padding: 22px 24px 26px; }
.facility-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.facility-body p { color: var(--rc-gray-700); font-size: 0.92rem; }

/* ============= Brands strip ============= */
.brands-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: center;
  padding: 36px 0;
}
.brand-chip {
  padding: 22px 18px;
  background: var(--rc-white);
  border: 1px solid var(--rc-gray-100);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--rc-dark-blue);
  transition: all .25s var(--ease-out);
  letter-spacing: -0.01em;
}
.brand-chip:hover { border-color: var(--rc-red); color: var(--rc-red); transform: translateY(-3px); }

/* ============= Contact form ============= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--rc-dark-blue);
  color: var(--rc-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 173, 173, 0.3), transparent 70%);
}
.contact-info-card h2 { color: var(--rc-white); margin-bottom: 16px; }
.contact-info-card > * { position: relative; z-index: 1; }
.contact-items { margin-top: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-yellow);
  flex-shrink: 0;
}
.contact-item h5 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin-bottom: 4px;
}
.contact-item p { color: rgba(255,255,255,0.88); font-size: 0.95rem; }

.form-card {
  background: var(--rc-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card h2 { margin-bottom: 8px; }
.form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-card .form-field { margin-bottom: 16px; }
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; }

/* ============= Quote feature ============= */
.quote-feature {
  background: var(--rc-gray-50);
  border-left: 4px solid var(--rc-red);
  padding: 32px 36px;
  border-radius: var(--radius-md);
  position: relative;
  margin: 48px 0;
}
.quote-feature::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 16px;
  font-family: 'Montserrat', serif;
  font-size: 6rem;
  color: var(--rc-red);
  line-height: 1;
  opacity: 0.25;
}
.quote-feature blockquote {
  font-family: 'Gantari', sans-serif;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--rc-gray-900);
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 500;
}
.quote-feature cite {
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--rc-dark-blue);
}
.quote-feature cite small {
  display: block;
  font-weight: 400;
  color: var(--rc-gray-500);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ============= Toast / notification ============= */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--rc-dark-blue);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 100;
  transform: translateY(200%);
  transition: transform .4s var(--ease-out);
  max-width: 380px;
}
.toast.show { transform: translateY(0); }
.toast-icon {
  width: 32px;
  height: 32px;
  background: var(--rc-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.toast-close { background: transparent; border: 0; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 1.3rem; margin-left: 6px; }

/* ============= Application modal ============= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 66, 87, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease-out);
  padding: 24px;
}
.modal-backdrop.show { opacity: 1; visibility: visible; }
.modal {
  background: var(--rc-white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s var(--ease-out);
}
.modal-backdrop.show .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--rc-gray-50);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--rc-gray-700);
}
.modal-close:hover { background: var(--rc-red); color: white; }

/* ============= Chat widget ============= */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
}
.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--rc-red);
  color: white;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(239, 65, 54, 0.5);
  transition: transform .2s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-toggle:hover { transform: scale(1.07); }
.chat-toggle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(239, 65, 54, 0.3);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0; }
}
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease-out);
  overflow: hidden;
}
.chat-box.show { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-head {
  background: var(--rc-gradient-hero);
  color: white;
  padding: 18px 20px;
}
.chat-head h4 { color: white; font-size: 1.05rem; margin-bottom: 2px; }
.chat-head small { opacity: 0.9; font-size: 0.8rem; }
.chat-body { padding: 18px 20px; font-size: 0.92rem; color: var(--rc-gray-700); line-height: 1.55; }
.chat-options { display: flex; flex-direction: column; gap: 8px; padding: 0 20px 20px; }
.chat-option {
  background: var(--rc-gray-50);
  border: 1px solid var(--rc-gray-100);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--rc-dark-blue);
  cursor: pointer;
  text-align: left;
  transition: all .2s var(--ease-out);
}
.chat-option:hover { background: var(--rc-red); color: white; border-color: var(--rc-red); }

/* ============= Animations ============= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============= Utilities ============= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }

/* ============= Responsive ============= */
@media (max-width: 1080px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding: 8px 10px; font-size: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 880px) {
  .section { padding: 72px 0; }
  .hero { padding: 96px 0 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .quick-actions { grid-template-columns: 1fr; margin-top: 0; border-radius: 0; }
  .quick-action + .quick-action::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-copy { order: 0; }
  .jobs-layout { grid-template-columns: 1fr; }
  .jobs-filters { position: static; }
  .jobs-search-form { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-card .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-dot { grid-column: 1; width: 38px; height: 38px; margin-top: 4px; }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card { grid-column: 2; text-align: left; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transform: translateX(-100%);
    transition: transform .3s var(--ease-out);
    align-items: stretch;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
  }
  .nav-cta { display: none; }

  .job-card { flex-direction: column; }
  .job-card-cta { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}

@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .section-intro p { font-size: 1rem; }
  .page-hero { padding: 64px 0 48px; }
}
