/* =============================================
   HOME PAGE — LAYER-BY-LAYER STYLES
   ============================================= */

/* ── L01b COURIER PARTNERS ───────────────────── */

.courier-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--color-gray-200);
  padding: 20px 0;
}

.courier-strip-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 18px;
}

.courier-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.courier-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.courier-logo:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .courier-strip-logos { gap: 24px; }
  .courier-logo { height: 22px; }
}

/* ── L02 PROOF STRIP ─────────────────────────── */

.proof-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--color-gray-200);
  padding: 32px 0;
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 36px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.proof-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-blue-dark);
  line-height: 1;
  margin-bottom: 5px;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--color-gray-200);
  flex-shrink: 0;
}

.iso-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 5px;
}

/* ── L03 PAIN ─────────────────────────────────── */

.pain-section {
  background: #f0f5ff;
  padding: 100px 0;
}

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

.pain-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #007aab;
  background: rgba(0, 188, 231, 0.12);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.pain-section h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #013387;
  margin-bottom: 16px;
}

.pain-h2-light {
  font-weight: 300;
}

.pain-h2-bold {
  font-weight: 800;
}

.pain-sub {
  color: #697285;
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pain-card {
  background: #ffffff;
  border: 1px solid rgba(1, 51, 135, 0.07);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 28px rgba(1, 51, 135, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(1, 51, 135, 0.12);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 188, 231, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0072b5;
  margin-bottom: 22px;
}

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #013387;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pain-card p {
  font-size: 0.95rem;
  color: #4b5568;
  line-height: 1.8;
}

/* ── L05 ORIGIN STORY ────────────────────────── */

.origin-section {
  padding: 96px 0;
  background: #ffffff;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.origin-copy .section-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--color-blue);
  margin-bottom: 16px;
  display: block;
}

.origin-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--color-charcoal);
}

.origin-text {
  font-size: 0.98rem;
  color: var(--color-gray-700);
  line-height: 1.9;
  margin-bottom: 16px;
}

.origin-moat {
  font-style: italic;
  color: var(--color-gray-500);
  border-left: 3px solid var(--color-cyan);
  padding-left: 16px;
  margin-top: 8px;
}

.origin-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.origin-from {
  font-size: 0.82rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.curfox-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(0.3);
}

.origin-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.origin-stat-card {
  background: var(--color-gray-100);
  border-radius: 20px;
  padding: 28px 22px;
  border: 1px solid var(--color-gray-200);
}

.origin-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-blue-dark);
  margin-bottom: 8px;
  line-height: 1;
}

.origin-stat-flag .origin-stat-value {
  font-size: 2.2rem;
}

.origin-stat-label {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  line-height: 1.55;
}

/* ── L06 SELLER STORY ────────────────────────── */

.seller-story-section {
  background: var(--color-gray-100);
  padding: 96px 0;
}

.seller-story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(33, 83, 192, 0.1);
  margin-top: 12px;
}

.seller-story-left {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-gray-200);
}

.seller-stars {
  color: #F5A623;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.seller-quote {
  font-size: 1.08rem;
  color: var(--color-charcoal);
  line-height: 1.85;
  margin-bottom: 32px;
  font-style: italic;
  quotes: none;
}

.seller-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seller-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.seller-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.seller-store {
  font-size: 0.82rem;
  color: var(--color-gray-500);
}

.seller-story-right {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-gray-100);
}

.seller-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}

.ba-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.ba-before .ba-label { color: #e55353; }
.ba-after  .ba-label { color: #21b97a; }

.ba-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-list li {
  font-size: 0.82rem;
  color: var(--color-gray-700);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.ba-before .ba-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #e55353;
  font-weight: 700;
}

.ba-after .ba-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #21b97a;
  font-weight: 700;
}

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  color: var(--color-gray-300);
}

.ba-result {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
  border-radius: 16px;
  padding: 18px 24px;
}

.ba-result-stat {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.ba-result-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.seller-logos-row {
  margin-top: 52px;
  text-align: center;
}

.sellers-trusted-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 24px;
}

.seller-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.seller-logo-strip img {
  height: 68px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 18px;
  border: 1px solid var(--color-gray-200);
  filter: grayscale(0.3);
}

/* ── L07 COMMUNITY ───────────────────────────── */

.community-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,17,43,0.88) 0%, rgba(13,31,60,0.82) 60%, rgba(11,26,48,0.90) 100%),
    url('../images/product/csr.jpg') center center / cover no-repeat;
}

.community-header {
  color: #ffffff;
}

.section-label-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 14px;
}

.community-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-copy-light {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.community-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 28px;
  transition: background 0.2s ease;
}

.community-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.community-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 180, 216, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

.community-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-cyan);
  margin-bottom: 10px;
}

.community-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.community-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
}

/* ── L08 AWARDS ──────────────────────────────── */

/* ── L08 AWARDS — redesigned ─────────────────── */
.awards-section-new {
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #07112b 0%, #0d1f3c 55%, #112248 100%);
  color: #fff;
}

/* header */
.awards-header-block {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.awards-header-block .section-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--color-cyan);
  margin-bottom: 14px;
  display: block;
}
.awards-header-block h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #ffffff;
}
.awards-header-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* trophy image */
.awards-trophy-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.awards-trophy-wrap img {
  width: 100%;
  max-width: 680px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.55));
}

/* stage photos grid */
.awards-stage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.awards-stage-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: default;
}
.awards-stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.awards-stage-card:hover img {
  transform: scale(1.06);
}
.awards-stage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,17,43,0.85) 0%, transparent 55%);
  pointer-events: none;
}
.awards-stage-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 14px 12px 12px;
}
.awards-stage-label-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  display: block;
}
.awards-stage-label-year {
  font-size: 0.65rem;
  color: var(--color-cyan);
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}

/* stat pills row */
.awards-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.awards-stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 10px 22px;
  backdrop-filter: blur(8px);
}
.awards-stat-pill-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.awards-stat-pill-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .awards-stage-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .awards-stage-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-stats-row  { gap: 8px; }
  .awards-stat-pill  { padding: 8px 16px; }
}

/* ── L09 VALUES ──────────────────────────────── */

.values-section {
  padding: 96px 0;
  position: relative;
  background:
    linear-gradient(rgba(243,245,249,0.82), rgba(243,245,249,0.82)),
    url('../images/team/team.jpg') center 30% / cover no-repeat;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid var(--color-gray-200);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  box-shadow: 0 20px 52px rgba(33, 83, 192, 0.1);
  transform: translateY(-3px);
}

.value-card-lead {
  background: linear-gradient(160deg, #003e7a 0%, #0072b5 100%);
  border-color: transparent;
  color: #ffffff;
}

.value-card-lead .value-num {
  color: rgba(255, 255, 255, 0.45);
}

.value-card-lead h3 {
  color: #ffffff;
}

.value-card-lead p {
  color: rgba(255, 255, 255, 0.78);
}

.value-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gray-300);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 12px;
  line-height: 1.35;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-gray-700);
  line-height: 1.85;
}

/* ── L10 CTA ──────────────────────────────────── */

.home-cta-section {
  background: linear-gradient(160deg, #003e7a 0%, #0072b5 48%, #00bce7 100%);
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
}

.home-cta-orb-1 {
  width: 500px;
  height: 500px;
  background: #00bce7;
  top: -150px;
  left: -150px;
}

.home-cta-orb-2 {
  width: 400px;
  height: 400px;
  background: #2153c0;
  bottom: -100px;
  right: -100px;
}

.cta-nl-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 72px;
  align-items: center;
}

.cta-nl-cta {
  text-align: center;
}

.cta-nl-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
}

.cta-nl-newsletter {
  text-align: center;
}

.cta-nl-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.home-cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.home-cta-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.home-cta-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  font-size: 1rem;
  font-weight: 700;
}

.home-cta-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
}

/* ── NEWSLETTER (inside CTA section, dark bg) ─── */

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.newsletter-copy {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.newsletter-field-row {
  display: flex;
  width: 100%;
  max-width: 420px;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  padding: 14px 24px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  background: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.newsletter-privacy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
}

.newsletter-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-success svg {
  flex-shrink: 0;
  color: #34d399;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1080px) {
  .origin-grid,
  .awards-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .origin-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .seller-story-card {
    grid-template-columns: 1fr;
  }

  .seller-story-left {
    border-right: none;
    border-bottom: 1px solid var(--color-gray-200);
  }
}

@media (max-width: 860px) {
  .pain-grid,
  .community-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .origin-stats {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    padding: 16px;
    border-bottom: 1px solid var(--color-gray-200);
  }

  .awards-credentials {
    grid-template-columns: 1fr;
  }

  .seller-before-after {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ba-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .cta-nl-grid {
    grid-template-columns: 1fr;
    gap: 52px 0;
  }

  .cta-nl-divider {
    width: 60px;
    height: 1px;
    align-self: auto;
    margin: 0 auto;
  }
}

@media (max-width: 580px) {
  .newsletter-field-row {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .pain-grid,
  .community-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .seller-story-left,
  .seller-story-right {
    padding: 32px 24px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HOW STOREMATE WORKS — VIDEO SECTION ──────── */

.hiw-section {
  padding: 96px 0;
  background: #ffffff;
}

.hiw-header {
  margin-bottom: 52px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* Each video card */
.hiw-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  background: #0a1628;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hiw-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(33,83,192,0.22);
}

.hiw-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hiw-card:hover .hiw-thumb {
  transform: scale(1.04);
}

/* Dark gradient overlay on lower portion */
.hiw-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.55) 0%,
    transparent 50%
  );
  pointer-events: none;
  transition: opacity 0.25s;
}

/* Play button — bottom right */
.hiw-play {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.hiw-card:hover .hiw-play {
  background: rgba(33,83,192,0.9);
  border-color: transparent;
  transform: scale(1.12);
}

/* Video modal overlay */
.hiw-modal {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(6,11,22,0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hiw-modal.hiw-open {
  opacity: 1;
  pointer-events: auto;
}

.hiw-modal-inner {
  position: relative;
  width: min(380px, 90vw);
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  background: #000;
}

.hiw-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hiw-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.hiw-modal-close:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 960px) {
  .hiw-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hiw-play { width: 36px; height: 36px; }
}

/* ── PRODUCT SHOWCASE ─────────────────────────── */

.product-showcase {
  padding: 96px 0 88px;
  background: var(--color-gray-100);
  overflow: hidden;
}

.ps-header {
  max-width: 600px;
  margin: 0 auto 44px;
  text-align: center;
}

.ps-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.ps-sub {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

.ps-frame-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.ps-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ps-tab {
  padding: 9px 22px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-500);
  background: #ffffff;
  border: 1.5px solid var(--color-gray-200);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ps-tab:hover {
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.ps-tab-active {
  color: #ffffff !important;
  background: var(--color-blue) !important;
  border-color: var(--color-blue) !important;
  box-shadow: 0 4px 16px rgba(33, 83, 192, 0.28);
}

.ps-screen {
  position: relative;
}

.ps-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(33, 83, 192, 0.22) 0%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.ps-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
  filter: drop-shadow(0 20px 60px rgba(33, 83, 192, 0.16));
}

@media (max-width: 640px) {
  .product-showcase { padding: 64px 0 56px; }
  .ps-tab { padding: 8px 16px; font-size: 0.8rem; }
}

/* ── COMMERCIAL VIDEO SECTION ─────────────────── */
.commercial-section {
  background: #ffffff;
  padding: 80px 0 88px;
  border-bottom: 1px solid var(--color-gray-200);
}

.commercial-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.commercial-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.commercial-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  margin-bottom: 14px;
}

.commercial-sub {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* video card */
.commercial-player {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--color-gray-200);
}

.commercial-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.commercial-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,17,43,0.22);
  transition: background 0.25s;
}
.commercial-player:hover .commercial-play-overlay {
  background: rgba(7,17,43,0.35);
}

/* play button */
.commercial-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.commercial-player:hover .commercial-play {
  background: var(--color-blue);
  border-color: transparent;
  transform: scale(1.1);
}

/* Modal — reuse existing hiw modal styles */

/* ── MOBILE APP SECTION ────────────────────────── */
.mobile-app-section {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

/* Background image card with corner radius */
.mobile-app-bg {
  border-radius: 28px;
  overflow: hidden;
  background: url('../images/screenshots/mobile/hero.png') right center / cover no-repeat;
  min-height: 260px;
  display: flex;
  align-items: center;
  position: relative;
}
.mobile-app-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 18, 60, 0.92) 0%,
    rgba(0, 18, 60, 0.78) 50%,
    rgba(0, 18, 60, 0.22) 100%
  );
  pointer-events: none;
}

.mobile-app-copy {
  padding: 40px 56px;
  max-width: 540px;
  position: relative;
  z-index: 1;
}
.mobile-app-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-app-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
  flex-shrink: 0;
  animation: ma-home-pulse 2s ease-in-out infinite;
}
@keyframes ma-home-pulse {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}
.mobile-app-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #ffffff;
}
.mobile-app-copy h2 span { color: var(--color-cyan); }
.mobile-app-copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
}
/* store buttons */
.mobile-app-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.mobile-app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.mobile-app-store-btn:hover { transform: translateY(-2px); }
.mobile-app-store-btn--dark {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.mobile-app-store-btn--dark:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.mobile-app-store-sub  { font-size: 0.62rem; opacity: 0.65; display: block; }
.mobile-app-store-name { font-size: 0.92rem; font-weight: 700; display: block; }
.mobile-app-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-app-learn:hover { color: #ffffff; }

@media (max-width: 640px) {
  .mobile-app-bg { border-radius: 20px; background-position: 80% center; }
  .mobile-app-copy { padding: 32px 28px; }
  .mobile-app-stores { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── PLATFORM SHOWCASE ─────────────────────────── */
.platform-section {
  padding: 96px 0 80px;
  background: var(--color-gray-100);
  overflow: hidden;
}
.platform-header {
  text-align: center;
  margin-bottom: 52px;
}
.platform-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 12px;
}
.platform-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}
.platform-header p {
  font-size: 1rem;
  color: var(--color-gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* featured screenshot */
.platform-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(33,83,192,0.06), 0 20px 60px rgba(33,83,192,0.12);
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.platform-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(33,83,192,0.08), 0 32px 80px rgba(33,83,192,0.18);
}
.platform-featured img {
  width: 100%;
  display: block;
}
.platform-featured-label {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(7,17,43,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

/* thumbnail row */
.platform-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.platform-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(33,83,192,0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.platform-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(33,83,192,0.18);
}
.platform-thumb img {
  width: 100%;
  display: block;
  transition: filter 0.2s;
}
.platform-thumb:hover img { filter: brightness(1.04); }
.platform-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,17,43,0.8), transparent);
  padding: 20px 12px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .platform-thumbs { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   HOME PAGE REDESIGN — VISUAL BALANCE OVERRIDES
   ═══════════════════════════════════════════════ */

/* ── HERO: photo background, centered copy ─────── */
.hero-section {
  text-align: center !important;
  padding: 80px 0 0 !important;
  background:
    linear-gradient(rgba(1,51,135,0.72), rgba(1,51,135,0.72)),
    url('../images/home-hero.jpg') center center / cover no-repeat !important;
}
.hero-section .container {
  display: block !important;
}
.hero-center {
  max-width: 700px !important;
  margin: 0 auto !important;
  padding-bottom: 64px !important;
}
.hero-headline { align-items: center !important; }
.hero-actions   { justify-content: center !important; }
.hero-screenshot-wrap { display: none !important; }

/* ── PAIN SECTION: dark + screenshot split ───── */
.pain-layout { display: block; }
.pain-screenshot-col { display: none; }

/* ── FEATURES: featured image above cards ────── */
.features-featured {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(33,83,192,0.1), 0 20px 60px rgba(33,83,192,0.08);
  position: relative;
}
.features-featured img {
  width: 100%;
  display: block;
}
.features-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(1,51,135,0.55), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 32px 36px;
}
.features-featured-caption {
  color: #fff;
}
.features-featured-caption h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.features-featured-caption p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-width: 360px;
}

/* ── ORIGIN STORY: product screenshot on right ─ */
.origin-screenshot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.origin-screenshot img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33,83,192,0.12), 0 20px 60px rgba(33,83,192,0.1);
  border: 1px solid rgba(33,83,192,0.08);
}
.origin-screenshot-label {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(7,17,43,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .hero-center { padding-bottom: 48px !important; }
  .pain-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   HOME REDESIGN v2 — REAL IMAGES + DIVERSITY
   ═══════════════════════════════════════════════ */


/* ── KEY FEATURE ROWS ──────────────────────────── */
.home-features-section { padding: 96px 0; background: #fff; }
.home-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 88px;
}
.home-feature-row:last-child { margin-bottom: 0; }
.home-feature-row--rev { direction: rtl; }
.home-feature-row--rev > * { direction: ltr; }

.hf-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(33,83,192,0.1), 0 20px 60px rgba(33,83,192,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hf-img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(33,83,192,0.15), 0 32px 80px rgba(33,83,192,0.12);
}
.hf-img-wrap img { width: 100%; display: block; }
.hf-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(7,17,43,0.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 6px 14px;
  font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.85); letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hf-eyebrow {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-blue); margin-bottom: 10px;
}
.hf-title {
  font-size: clamp(1.6rem,2.8vw,2.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--color-charcoal); line-height: 1.15;
  margin-bottom: 14px;
}
.hf-desc {
  font-size: 0.97rem; color: var(--color-gray-500);
  line-height: 1.8; margin-bottom: 20px; max-width: 440px;
}
.hf-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px; margin-bottom: 24px;
}
.hf-list li {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 0.9rem;
  color: var(--color-gray-700); line-height: 1.55;
}
.hf-list li::before {
  content: '';
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(33,83,192,0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232153c0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}
.hf-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--color-blue); text-decoration: none;
  transition: gap 0.2s;
}
.hf-link:hover { gap: 10px; }

/* ── REAL REVIEWS SECTION ──────────────────────── */
.reviews-section {
  padding: 88px 0;
  background: #f3f5f9;
}
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-eyebrow {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-blue); margin-bottom: 10px;
}
.reviews-header h2 {
  font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--color-charcoal); margin-bottom: 10px;
}
.reviews-header p { font-size: 0.97rem; color: var(--color-gray-500); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.review-card {
  background: #fff;
  border: 1px solid #e7ecf4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(33,83,192,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(33,83,192,0.1);
}
.review-card img { width: 100%; display: block; }
.review-card-label {
  padding: 10px 14px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--color-gray-500); letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid #f0f2f8;
  display: flex; align-items: center; gap: 6px;
}
.review-card-label::before {
  content: '⭐';
  font-size: 0.75rem;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
  .home-feature-row { grid-template-columns: 1fr; gap: 36px; }
  .home-feature-row--rev { direction: ltr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── WAYBILL BEFORE/AFTER COMPARISON ──────────── */
.hf-waybill-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}
.hf-waybill-before,
.hf-waybill-after {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.hf-waybill-before img,
.hf-waybill-after img {
  width: 100%;
  display: block;
}
.hf-waybill-before { opacity: 0.85; }
.hf-waybill-after   { box-shadow: 0 8px 32px rgba(33,83,192,0.18); }
.hf-waybill-label {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
}
.hf-waybill-label--bad  { background: rgba(192,57,43,0.85); }
.hf-waybill-label--good { background: rgba(33,83,192,0.85); }

@media (max-width: 600px) {
  .hf-waybill-compare { grid-template-columns: 1fr; }
}

/* ── COURIER SYNC TRANSFORMATION ──────────────── */
.hf-sync-transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.hf-sync-before,
.hf-sync-after {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.hf-sync-before {
  opacity: 0.8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.hf-sync-after {
  box-shadow: 0 8px 32px rgba(33,83,192,0.2);
}
.hf-sync-before img,
.hf-sync-after img {
  width: 100%;
  display: block;
}
.hf-sync-label {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
  z-index: 1;
}
.hf-sync-label--bad  { background: rgba(192,57,43,0.85); }
.hf-sync-label--good { background: rgba(33,83,192,0.85); }
.hf-sync-before-caption,
.hf-sync-after-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 12px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}
.hf-sync-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hf-sync-arrow-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(33,83,192,0.4);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hf-sync-transform { grid-template-columns: 1fr; }
  .hf-sync-arrow { transform: rotate(90deg); }
}

/* ── PODCAST SECTION (home page) ──────────────── */
.home-podcast {
  padding: 88px 0;
  background: linear-gradient(145deg, #07112b 0%, #0d1f3c 55%, #112248 100%);
  position: relative;
  overflow: hidden;
}
.home-podcast::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0,180,216,0.07), transparent 55%);
  pointer-events: none;
}
.home-podcast-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.home-podcast-copy { color: #fff; }
.home-podcast-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-podcast-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
  flex-shrink: 0;
  animation: pod-home-blink 2s ease-in-out infinite;
}
@keyframes pod-home-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.home-podcast-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
}
.home-podcast-copy h2 em { font-style: normal; color: var(--color-cyan); }
.home-podcast-copy p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 380px;
}
.home-podcast-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,180,216,0.35);
}
.home-podcast-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,180,216,0.45); }
/* 2x2 thumbnail grid */
.home-podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.home-podcast-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
}
.home-podcast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.home-podcast-thumb:hover img { transform: scale(1.05); }
.home-podcast-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  pointer-events: none;
}
.home-podcast-play {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(33,83,192,0.85);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.home-podcast-thumb:hover .home-podcast-play {
  background: var(--color-cyan);
  transform: scale(1.1);
}
.home-podcast-ep {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.65);
  color: var(--color-cyan);
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .home-podcast-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .home-podcast-grid { grid-template-columns: 1fr; }
}

/* =============================================
   MOBILE FIXES — comprehensive 600px and below
   ============================================= */

/* ── Container: tighter side padding on small screens ── */
@media (max-width: 480px) {
  .container { width: min(1280px, calc(100% - 24px)); }
}

/* ── Hero ── */
@media (max-width: 600px) {
  .hero-section { padding: 64px 0 56px !important; }
  .hero-center  { padding-bottom: 0 !important; }
  .hero-h1-light { font-size: 2rem !important; }
  .hero-h1-bold  { font-size: 2.2rem !important; }
  .hero-text     { font-size: 0.95rem; }
  .hero-note     { font-size: 0.78rem; }
}

/* ── Proof strip ── */
@media (max-width: 480px) {
  .proof-item { padding: 12px 8px; }
  .proof-number { font-size: 1.4rem; }
}

/* ── Courier logo strip ── */
@media (max-width: 600px) {
  .courier-strip { padding: 16px 0; }
  .courier-strip-logos { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .courier-logo { height: 22px; }
}
@media (max-width: 400px) {
  .courier-strip-logos { gap: 14px; }
  .courier-logo { height: 18px; }
}

/* ── Commercial video section ── */
@media (max-width: 600px) {
  .commercial-section { padding: 52px 0 60px; }
  .commercial-header { margin-bottom: 28px; }
  .commercial-play { width: 60px; height: 60px; }
}

/* ── Pain cards ── */
@media (max-width: 600px) {
  .pain-section { padding: 64px 0; }
  .pain-header  { margin-bottom: 36px; }
  .pain-card    { padding: 24px 20px; }
}

/* ── Key feature alternating rows ── */
@media (max-width: 600px) {
  .home-features-section { padding: 64px 0; }
  .home-feature-row { gap: 28px; }
  .hf-title  { font-size: 1.4rem; }
  .hf-desc   { font-size: 0.9rem; }
  .hf-list li { font-size: 0.85rem; }
  .hf-sync-arrow-circle { width: 30px; height: 30px; }
}

/* ── Mobile app section ── */
@media (max-width: 600px) {
  .mobile-app-copy h2 { font-size: 1.8rem !important; }
  .mobile-app-stores { gap: 8px; }
}

/* ── Origin section ── */
@media (max-width: 600px) {
  .origin-section { padding: 64px 0; }
  .origin-copy h2 { font-size: 1.8rem; }
  .origin-text    { font-size: 0.93rem; }
  .curfox-logo    { height: 24px !important; }
  .origin-logo-row { margin-top: 20px; }
}

/* ── Seller story ── */
@media (max-width: 600px) {
  .seller-story-section { padding: 64px 0; }
  .seller-quote  { font-size: 1rem; }
  .ba-result-stat { font-size: 2rem; }
}

/* ── Seller customer logo strip ── */
@media (max-width: 600px) {
  .seller-logo-strip { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .seller-logo-strip img { height: 44px; padding: 8px 10px; }
}

/* ── Reviews ── */
@media (max-width: 600px) {
  .reviews-section { padding: 64px 0; }
  .reviews-header h2 { font-size: 1.5rem; }
}

/* ── Community (Beyond the platform) ── */
@media (max-width: 600px) {
  .community-section { padding: 64px 0; }
  .community-grid { grid-template-columns: 1fr !important; }
  .community-card { padding: 28px 20px; }
  .community-header h2 { font-size: 1.8rem; }
}

/* ── Awards ── */
@media (max-width: 720px) {
  .awards-stage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .awards-section-new { padding: 64px 0; }
  .awards-stage-grid  { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
  .awards-stats-row   { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .awards-stat-pill   { padding: 12px 16px; }
  .awards-stat-pill-num { font-size: 1.1rem; }
  .awards-trophy-wrap { margin-bottom: 28px; }
}

/* ── CTA section ── */
@media (max-width: 600px) {
  .home-cta-section { padding: 72px 0; }
  .cta-nl-grid h2 { font-size: 1.9rem; }
}

/* ── General section heading sizes on mobile ── */
@media (max-width: 600px) {
  .section-header h2 { font-size: 1.7rem; }
  .section-copy      { font-size: 0.93rem; }
}
