/* ═══════════════════════════════════════════════════════════
   LOOP — Waitlist Landing Page Styles
   Colors: Orange #E86A10 · Blue #1A7AE8 · Teal #3D9E82
           Gold #F5C518 · Black #000 · White #FFF
   Fonts:  Barlow Condensed (headings)
           Inter (body)
           Quicksand (decorative)
   ═══════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input {
  font-family: inherit;
}

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#realMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Hide Leaflet controls & attribution for background use */
#realMap .leaflet-control-container {
  display: none;
}

#cityMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* subtle radial fade so center content pops */
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 70%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.hero-logo,
.careers-logo {
  height: 130px;
  margin: 0 auto -0.25rem;
}

.hero-tagline {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 2.5rem;
}

/* ── Waitlist Card ─────────────────────────────────────────── */
.waitlist-card {
  padding: 0;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #999;
  pointer-events: none;
}

/* ── Country Code Picker ──────────────────────────────────── */
.phone-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-picker {
  position: relative;
  flex-shrink: 0;
}

.country-picker-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0.6rem;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.country-picker-btn:hover {
  border-color: #bbb;
}

.country-picker--open .country-picker-btn {
  border-color: #E86A10;
  box-shadow: 0 0 0 3px rgba(232, 106, 16, 0.12);
}

.country-flag-img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.country-code-text {
  font-weight: 500;
  font-size: 0.9rem;
}

.country-chevron {
  width: 14px;
  height: 14px;
  color: #999;
  transition: transform 0.2s;
}

.country-picker--open .country-chevron {
  transform: rotate(180deg);
}

.country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 130px;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
  list-style: none;
  padding: 0.35rem 0;
  margin: 0;
}

.country-picker--open .country-dropdown {
  display: block;
}

.country-dropdown li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
}

.country-dropdown li:hover {
  background: #f5f5f5;
}

.country-dropdown li.active {
  background: rgba(232, 106, 16, 0.08);
  font-weight: 600;
}

.phone-input-row .form-input {
  padding-left: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  font-size: 1rem;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: #E86A10;
  box-shadow: 0 0 0 3px rgba(232, 106, 16, 0.12);
}

.form-input::placeholder {
  color: #aaa;
}

.btn-primary {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #E86A10;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: #d45e0e;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.toggle-link {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.15rem;
}

.toggle-link a {
  color: #1A7AE8;
  font-weight: 500;
  transition: color 0.2s;
}

.toggle-link a:hover {
  color: #1565c0;
  text-decoration: underline;
}

/* ── Success State ─────────────────────────────────────────── */
.waitlist-success {
  text-align: center;
  padding: 1rem 0;
}

.success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
}

.position-num {
  color: #E86A10;
}

.success-sub {
  font-size: 1rem;
  color: #666;
}

/* ── Store Badges ──────────────────────────────────────────── */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  background: #111;
  color: #fff;
  border-radius: 10px;
  transition: background 0.2s;
  cursor: default;
}

.store-badge:hover {
  background: #222;
}

.badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.badge-small {
  font-size: 0.6rem;
  letter-spacing: 0.03em;
  opacity: 0.8;
}

.badge-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
#how-it-works {
  padding: 6rem 1.5rem;
  background: #fff;
  text-align: center;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  color: #1a1a1a;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 240px;
  max-width: 280px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-icon--orange {
  background: rgba(232, 106, 16, 0.12);
  color: #E86A10;
}

.step-icon--blue {
  background: rgba(26, 122, 232, 0.12);
  color: #1A7AE8;
}

.step-icon--teal {
  background: rgba(61, 158, 130, 0.12);
  color: #3D9E82;
}

.step-icon--gold {
  background: rgba(245, 197, 24, 0.12);
  color: #F5C518;
}

.step-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════════════════════ */
#cta {
  padding: 5rem 1.5rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fdf6ef 100%);
}

.cta-sub {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 2.25rem;
  margin-top: -1.5rem;
}

#cta .waitlist-card {
  max-width: 440px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
#footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 1rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  height: 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  font-size: 0.88rem;
}

.footer-links a {
  color: #888;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 22px;
  height: 22px;
  color: #555;
  transition: color 0.2s;
}

.social-icon:hover {
  color: #E86A10;
}

.footer-copy {
  font-size: 0.75rem;
  color: #444;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-form .form-input {
  padding-left: 1rem;
  box-sizing: border-box;
}

.contact-form textarea.form-input {
  min-height: 120px;
  line-height: 1.6;
}

.contact-success {
  text-align: center;
  padding: 2rem 0;
}

/* ═══════════════════════════════════════════════════════════
   CAREERS
   ═══════════════════════════════════════════════════════════ */

/* ── Page Wrapper ─────────────────────────────────────────── */
.careers-page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

/* ── Map Background ──────────────────────────────────────── */
.careers-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ── Content Bubble ──────────────────────────────────────── */
.careers-bubble {
  position: relative;
  z-index: 3;
  max-width: 1050px;
  width: calc(100% - 3rem);
  margin: 0;
  padding: 0 3rem 2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.careers-logo-link {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.bubble-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.bubble-home-btn {
  color: #888;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.bubble-home-btn:hover {
  color: #E86A10;
  transform: scale(1.1);
}

/* Careers logo now inherits from .hero-logo and .careers-logo above */

.careers-split-layout {
  display: flex;
  gap: 4rem;
}

.careers-left-col {
  flex: 0 0 35%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.careers-right-col {
  flex: 1;
  min-width: 0;
  text-align: left;
  margin-top: 5.5rem;
}

.careers-contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  gap: 0.25rem;
}

.careers-contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.careers-contact-email {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #E86A10;
  transition: color 0.2s ease;
}

.careers-contact-email:hover {
  color: #d45e0e;
  text-decoration: underline;
}

.careers-go-home {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}

.careers-go-home:hover {
  color: #E86A10;
}

.careers-go-home span {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.careers-go-home:hover span {
  border-color: #E86A10;
}

.careers-badge {
  display: block;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border: 1.5px solid #E86A10;
  border-radius: 50px;
  color: #E86A10;
  margin-bottom: 1.5rem;
}

.careers-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1.05;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.careers-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  max-width: 560px;
}

/* ── Filter Pills ─────────────────────────────────────────── */
.careers-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.filter-pill {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill:hover {
  border-color: #aaa;
  color: #1a1a1a;
}

.filter-pill--active {
  background: #E86A10;
  border-color: #E86A10;
  color: #fff;
}

.filter-pill--active:hover {
  background: #d45e0e;
  border-color: #d45e0e;
  color: #fff;
}

/* ── Job Rows ─────────────────────────────────────────────── */
.jobs-list {
  display: flex;
  flex-direction: column;
}

.job-row {
  border-top: 1px solid rgba(232, 106, 16, 0.15);
}

.job-row:last-child {
  border-bottom: 1px solid rgba(232, 106, 16, 0.15);
}

.job-row {
  cursor: pointer;
  transition: background 0.2s;
}

.job-row:hover {
  background: rgba(232, 106, 16, 0.04);
}

.job-row-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  gap: 2rem;
  pointer-events: none;
}

.job-row-left {
  flex: 1;
}

.job-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.job-summary {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.job-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}

.job-tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.job-apply-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #E86A10;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: color 0.2s;
}

.job-row-header:hover .job-apply-link {
  color: #d45e0e;
}

.job-arrow {
  width: 20px;
  height: 20px;
}


/* ── Refined Application Flow ───────────────────────────────── */
.job-apply-area {
  margin-top: 2rem;
}

.application-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  animation: fadeInDetail 0.3s ease;
  max-width: 480px;
}

.btn-apply-option {
  flex: 1;
  padding: 0.7rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #E86A10;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-apply-option:hover {
  background: #d45e0e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 106, 16, 0.25);
}

.btn-apply-option--optional {
  background: #fff;
  color: #E86A10;
  border: 2px solid #E86A10;
}

.btn-apply-option--optional:hover {
  background: rgba(232, 106, 16, 0.05);
}

.btn-submit-final {
  margin-top: 0.5rem;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(232, 106, 16, 0.3);
}

.btn-submit-final:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.success-message {
  animation: fadeInDetail 0.4s ease forwards;
  background: rgba(232, 106, 16, 0.08);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #E86A10;
  text-align: center;
}

.file-list-display {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(232, 106, 16, 0.15);
}

.file-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #333;
}

.file-item-label {
  font-weight: 600;
  color: #E86A10;
  min-width: 90px;
}

.file-item-name {
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



/* ── Job Detail View ──────────────────────────────────────── */
.careers-detail {
  animation: fadeInDetail 0.25s ease;
}

@keyframes fadeInDetail {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #E86A10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.careers-back-btn:hover {
  color: #d45e0e;
}

.careers-back-btn svg {
  flex-shrink: 0;
}

.job-detail-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.job-section {
  margin-top: 1.5rem;
}

.job-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #E86A10;
  margin-bottom: 0.5rem;
}

.job-section p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.job-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E86A10;
}

.job-info-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
  flex-wrap: wrap;
}

.job-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.job-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E86A10;
}

.job-info-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
}

.job-apply-btn {
  display: block;
  margin-top: 1.75rem;
  text-align: center;
  max-width: 280px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-content {
    padding: 2rem 1.25rem;
    border-radius: 22px;
    margin: 0 1rem;
  }

  .hero-logo {
    height: 120px;
  }

  .hero-tagline {
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .waitlist-card {
    padding: 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .steps {
    gap: 2.25rem;
  }

  .step {
    max-width: 100%;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 200px;
    justify-content: center;
  }

  .success-title {
    font-size: 1.45rem;
  }

  .careers-split-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .careers-left-col {
    flex: none;
    max-width: 100%;
    position: static;
    align-items: center;
    text-align: center;
  }

  .careers-right-col {
    margin-top: 0;
  }

  .careers-contact-info {
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .careers-go-home {
    align-self: center;
    margin-top: 1rem;
  }

  .careers-bubble {
    width: calc(100% - 1.5rem);
    padding: 1.75rem 1.25rem 1.25rem;
    border-radius: 22px;
    margin: 1rem auto;
  }

  .careers-logo {
    height: 80px;
    margin-bottom: 1rem;
  }

  .careers-heading {
    font-size: 2.4rem;
  }

  .careers-subtitle {
    font-size: 0.95rem;
  }

  .careers-filters {
    margin-top: 0;
    margin-bottom: 1rem;
    gap: 0.4rem;
  }

  .filter-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

  .job-row-header {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }

  .job-apply-link {
    font-size: 1.15rem;
  }

  .job-title {
    font-size: 1.35rem;
  }

  .job-summary {
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
  }

  .job-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }

  .job-detail-title {
    font-size: 2rem;
  }

  .job-section p {
    font-size: 0.9rem;
  }

  .job-list li {
    font-size: 0.9rem;
  }

  .job-info-row {
    gap: 1.25rem;
  }

  .job-apply-btn {
    max-width: 100%;
  }

  .application-options {
    flex-direction: column;
  }

  .contact-form {
    gap: 1rem;
  }

  .contact-label {
    font-size: 0.8rem;
  }

  .contact-form .form-input {
    font-size: 0.95rem;
    padding: 0.8rem 0.9rem;
  }

  .contact-form textarea.form-input {
    min-height: 100px;
  }

  .footer-logo {
    height: 36px;
  }

  .footer-links {
    gap: 0.4rem 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .hero-logo {
    height: 100px;
  }

  .hero-tagline {
    font-size: 0.8rem;
  }

  .btn-primary {
    font-size: 1.05rem;
  }

  .country-code-text {
    font-size: 0.82rem;
  }

  .careers-bubble {
    width: calc(100% - 1rem);
    padding: 1.5rem 1rem 1rem;
    margin: 0.75rem auto;
  }

  .careers-heading {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .careers-subtitle {
    font-size: 0.88rem;
  }

  .job-title {
    font-size: 1.2rem;
  }

  .job-detail-title {
    font-size: 1.7rem;
  }

  .job-summary {
    font-size: 0.85rem;
  }

  .contact-form {
    gap: 0.85rem;
  }

  .contact-label {
    font-size: 0.75rem;
  }

  .contact-form .form-input {
    font-size: 0.9rem;
    padding: 0.7rem 0.8rem;
  }

  .contact-form textarea.form-input {
    min-height: 90px;
  }
}