/* ============================================================
   TRIPSIL — Features Page Styles (features.css)
   Styles specific to features.html only.
   ============================================================ */


/* ============================================================
   FEATURES HERO
   ============================================================ */
.feat-hero {
  padding: 40px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #F0F7FF 0%, #FAFEFF 35%, #F0FDF9 65%, #FFF8F0 100%);
}

/* Blobs — same keyframe as home (blobDrift defined in home.css,
   but redeclared here so features.css is self-contained) */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(88px);
  animation: featBlobDrift 10s ease-in-out infinite;
}

.blob1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(37,99,235,.20) 0%, rgba(14,165,233,.12) 50%, transparent 70%);
  top: -180px; right: -120px;
  animation-delay: 0s;
}
.blob2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(20,184,166,.18) 0%, rgba(14,165,233,.10) 50%, transparent 70%);
  bottom: -120px; left: -60px;
  animation-delay: 3.5s;
}
.blob3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,58,237,.13) 0%, rgba(236,72,153,.08) 50%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: 7s;
}
.blob4 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,.15) 0%, rgba(255,107,107,.10) 50%, transparent 70%);
  top: 10%; left: 10%;
  animation-delay: 2s;
}

@keyframes featBlobDrift {
  0%,  100% { transform: translate(0, 0) scale(1); }
  33%        { transform: translate(-18px, -26px) scale(1.05); }
  66%        { transform: translate(16px, 13px) scale(0.96); }
}

.feat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.065) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.feat-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(14,165,233,.12));
  border: 1px solid rgba(37,99,235,.2);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: featPulseGlow 3s ease-in-out infinite;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-hero);
  animation: featPulseDot 1.8s ease-in-out infinite;
}

@keyframes featPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.2); }
  50%       { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}

@keyframes featPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.6); }
}

.feat-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 22px;
}

.feat-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Quick-jump pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: white;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(37,99,235,.06);
  font-family: var(--font-body);
}

.hero-pill:hover,
.hero-pill.active {
  color: var(--primary);
  border-color: var(--primary-light);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.18);
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feat-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ============================================================
   ORBIT VISUAL
   ============================================================ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}

.feature-orbit {
  position: relative;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  border-radius: 50%;
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 48px rgba(37,99,235,.45);
  animation: orbitPulse 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes orbitPulse {
  0%,  100% { box-shadow: 0 12px 48px rgba(37,99,235,.45), 0 0 0 0 rgba(37,99,235,.2); }
  50%        { box-shadow: 0 16px 64px rgba(14,165,233,.55), 0 0 0 16px rgba(37,99,235,0); }
}

.orbit-center-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 1.2;
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(37,99,235,.18);
  animation: spinRing 30s linear infinite;
}

.orbit-ring-1 {
  width: 240px; height: 240px;
  margin-left: -120px; margin-top: -120px;
}

.orbit-ring-2 {
  width: 340px; height: 340px;
  margin-left: -170px; margin-top: -170px;
  animation-direction: reverse;
  animation-duration: 45s;
}

@keyframes spinRing {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orbit-icon {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 6px 24px rgba(15,23,42,.14);
  border: 1.5px solid rgba(255,255,255,.9);
  transition: transform var(--transition), box-shadow 0.3s;
  z-index: 5;
}

.orbit-icon:hover { box-shadow: 0 12px 40px rgba(37,99,235,.28); }

/* 8 positions on 360° */
.oi-1 { animation: oi1anim 5.0s ease-in-out infinite; }
.oi-2 { animation: oi2anim 5.5s ease-in-out infinite; }
.oi-3 { animation: oi3anim 4.8s ease-in-out infinite; }
.oi-4 { animation: oi4anim 5.2s ease-in-out infinite; }
.oi-5 { animation: oi5anim 6.0s ease-in-out infinite; }
.oi-6 { animation: oi6anim 5.3s ease-in-out infinite; }
.oi-7 { animation: oi7anim 4.9s ease-in-out infinite; }
.oi-8 { animation: oi8anim 5.7s ease-in-out infinite; }

@keyframes oi1anim { 0%,100% { transform:translate(-50%,-50%) translate(0,-140px) scale(1); }   50% { transform:translate(-50%,-50%) translate(0,-148px) scale(1.04); } }
@keyframes oi2anim { 0%,100% { transform:translate(-50%,-50%) translate(99px,-99px) scale(1); } 50% { transform:translate(-50%,-50%) translate(104px,-104px) scale(1.04); } }
@keyframes oi3anim { 0%,100% { transform:translate(-50%,-50%) translate(140px,0) scale(1); }   50% { transform:translate(-50%,-50%) translate(148px,0) scale(1.04); } }
@keyframes oi4anim { 0%,100% { transform:translate(-50%,-50%) translate(99px,99px) scale(1); } 50% { transform:translate(-50%,-50%) translate(104px,104px) scale(1.04); } }
@keyframes oi5anim { 0%,100% { transform:translate(-50%,-50%) translate(0,140px) scale(1); }   50% { transform:translate(-50%,-50%) translate(0,148px) scale(1.04); } }
@keyframes oi6anim { 0%,100% { transform:translate(-50%,-50%) translate(-99px,99px) scale(1); } 50% { transform:translate(-50%,-50%) translate(-104px,104px) scale(1.04); } }
@keyframes oi7anim { 0%,100% { transform:translate(-50%,-50%) translate(-140px,0) scale(1); }  50% { transform:translate(-50%,-50%) translate(-148px,0) scale(1.04); } }
@keyframes oi8anim { 0%,100% { transform:translate(-50%,-50%) translate(-99px,-99px) scale(1); } 50% { transform:translate(-50%,-50%) translate(-104px,-104px) scale(1.04); } }


/* ============================================================
   FEATURE OVERVIEW GRID
   ============================================================ */
.overview {
  background: linear-gradient(180deg, #F8FAFF 0%, #EFF7FF 50%, #F8FAFF 100%);
  position: relative;
  overflow: hidden;
}

.overview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-aurora);
}

.overview-header        { text-align: center; margin-bottom: 60px; }
.overview-header .section-desc { margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fg-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(37,99,235,.08);
  transition: transform var(--transition), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text);
}

.fg-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.fg-card:nth-child(1)::after { background: var(--grad-hero); }
.fg-card:nth-child(2)::after { background: var(--grad-tropical); }
.fg-card:nth-child(3)::after { background: var(--grad-cool); }
.fg-card:nth-child(4)::after { background: var(--grad-ocean); }
.fg-card:nth-child(5)::after { background: var(--grad-warm); }
.fg-card:nth-child(6)::after { background: var(--grad-sunset); }
.fg-card:nth-child(7)::after { background: var(--grad-aurora); }
.fg-card:nth-child(8)::after { background: var(--grad-cool); }

.fg-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.14);
}

.fg-card:hover::after { transform: scaleX(1); }

.fg-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.fg-card:hover .fg-icon { transform: scale(1.12) rotate(-6deg); }

.fg-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fg-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: .06em;
}

.fg-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.fg-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.fg-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
  transition: gap 0.2s;
}

.fg-card:hover .fg-link { gap: 10px; }


/* ============================================================
   DEEP-DIVE FEATURE STRIPS
   ============================================================ */
.deep-dives { background: white; }

.feature-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.feature-strip:last-child { border-bottom: none; }
.feature-strip:nth-child(even) {
  background: linear-gradient(180deg, #F8FAFF 0%, white 100%);
}

/* Per-strip accent glow */
.feature-strip::before {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}

.fs-1::before { width:400px;height:400px;background:radial-gradient(circle,rgba(37,99,235,.12),transparent 70%);top:-100px;right:-80px; }
.fs-2::before { width:400px;height:400px;background:radial-gradient(circle,rgba(20,184,166,.12),transparent 70%);top:-100px;left:-80px; }
.fs-3::before { width:360px;height:360px;background:radial-gradient(circle,rgba(124,58,237,.10),transparent 70%);top:-80px;right:-60px; }
.fs-4::before { width:400px;height:400px;background:radial-gradient(circle,rgba(14,165,233,.12),transparent 70%);top:-100px;left:-80px; }
.fs-5::before { width:360px;height:360px;background:radial-gradient(circle,rgba(236,72,153,.10),transparent 70%);top:-80px;right:-60px; }
.fs-6::before { width:400px;height:400px;background:radial-gradient(circle,rgba(245,158,11,.10),transparent 70%);top:-100px;left:-80px; }
.fs-7::before { width:360px;height:360px;background:radial-gradient(circle,rgba(20,184,166,.10),transparent 70%);top:-80px;right:-60px; }
.fs-8::before { width:400px;height:400px;background:radial-gradient(circle,rgba(79,70,229,.12),transparent 70%);top:-100px;left:-80px; }

.strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.strip-inner.reverse           { direction: rtl; }
.strip-inner.reverse > *       { direction: ltr; }

/* Image placeholder */
.strip-img-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  border: 1px dashed rgba(37,99,235,.25);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.sif-1 { background: linear-gradient(145deg,#EFF6FF 0%,#DBEAFE 50%,#EEF2FF 100%); }
.sif-2 { background: linear-gradient(145deg,#F0FDF4 0%,#DCFCE7 50%,#D1FAE5 100%); }
.sif-3 { background: linear-gradient(145deg,#F5F3FF 0%,#EDE9FE 50%,#E0E7FF 100%); }
.sif-4 { background: linear-gradient(145deg,#F0F9FF 0%,#E0F2FE 50%,#BAE6FD 100%); }
.sif-5 { background: linear-gradient(145deg,#FFF0F3 0%,#FCE7F3 50%,#FBCFE8 100%); }
.sif-6 { background: linear-gradient(145deg,#FFFBEB 0%,#FEF3C7 50%,#FDE68A 100%); }
.sif-7 { background: linear-gradient(145deg,#F0FDFA 0%,#CCFBF1 50%,#99F6E4 100%); }
.sif-8 { background: linear-gradient(145deg,#EEF2FF 0%,#E0E7FF 50%,#C7D2FE 100%); }

.strip-img-frame svg      { opacity: .4; }
.strip-img-frame .ph-label { font-size: 12px; opacity: .55; text-align: center; }

/* Strip floating badge */
.strip-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 10px 36px rgba(15,23,42,.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  animation: stripBadgeFloat 5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
}

.strip-badge.tl { top: -16px; left: -20px; animation-delay: .3s; }
.strip-badge.br { bottom: -16px; right: -20px; animation-delay: 2s; }

.sb-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes stripBadgeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-8px) scale(1.02); }
}

/* Strip copy */
.strip-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.strip-num::before {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 2px;
  flex-shrink: 0;
}

.sn-1::before { background: var(--grad-hero); }
.sn-2::before { background: var(--grad-tropical); }
.sn-3::before { background: var(--grad-cool); }
.sn-4::before { background: var(--grad-ocean); }
.sn-5::before { background: var(--grad-warm); }
.sn-6::before { background: var(--grad-sunset); }
.sn-7::before { background: var(--grad-aurora); }
.sn-8::before { background: var(--grad-cool); }

.strip-h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.8px;
  color: var(--dark);
  margin-bottom: 12px;
}

.strip-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.strip-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.strip-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.strip-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bc-1 { background: linear-gradient(135deg,#DBEAFE,#BAE6FD); }
.bc-2 { background: linear-gradient(135deg,#DCFCE7,#BBF7D0); }
.bc-3 { background: linear-gradient(135deg,#EDE9FE,#DDD6FE); }
.bc-4 { background: linear-gradient(135deg,#E0F2FE,#BAE6FD); }
.bc-5 { background: linear-gradient(135deg,#FCE7F3,#FBCFE8); }
.bc-6 { background: linear-gradient(135deg,#FEF3C7,#FDE68A); }
.bc-7 { background: linear-gradient(135deg,#CCFBF1,#99F6E4); }
.bc-8 { background: linear-gradient(135deg,#E0E7FF,#C7D2FE); }

.strip-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Per-strip gradient buttons */
.btn-strip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  color: white;
}

.btn-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-strip:hover { transform: translateY(-2px); }
.btn-strip:hover::before { opacity: 1; }

.bs-1 { background: var(--grad-hero);     box-shadow: 0 6px 22px rgba(37,99,235,.38); }
.bs-2 { background: var(--grad-tropical); box-shadow: 0 6px 22px rgba(20,184,166,.38); }
.bs-3 { background: var(--grad-cool);     box-shadow: 0 6px 22px rgba(124,58,237,.38); }
.bs-4 { background: var(--grad-ocean);    box-shadow: 0 6px 22px rgba(14,165,233,.38); }
.bs-5 { background: var(--grad-warm);     box-shadow: 0 6px 22px rgba(255,107,107,.38); }
.bs-6 { background: var(--grad-sunset);   box-shadow: 0 6px 22px rgba(245,158,11,.38); }
.bs-7 { background: var(--grad-aurora);   box-shadow: 0 6px 22px rgba(124,58,237,.38); }
.bs-8 { background: var(--grad-cool);     box-shadow: 0 6px 22px rgba(79,70,229,.38); }

.bs-1:hover { box-shadow: 0 12px 36px rgba(14,165,233,.5); }
.bs-2:hover { box-shadow: 0 12px 36px rgba(14,165,233,.5); }
.bs-3:hover { box-shadow: 0 12px 36px rgba(124,58,237,.5); }
.bs-4:hover { box-shadow: 0 12px 36px rgba(14,165,233,.5); }
.bs-5:hover { box-shadow: 0 12px 36px rgba(255,107,107,.5); }
.bs-6:hover { box-shadow: 0 12px 36px rgba(245,158,11,.5); }
.bs-7:hover { box-shadow: 0 12px 36px rgba(236,72,153,.5); }
.bs-8:hover { box-shadow: 0 12px 36px rgba(79,70,229,.5); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: all var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--primary);
  border-color: var(--primary-light);
  background: var(--primary-light);
}


/* ============================================================
   HOW IT CONNECTS
   ============================================================ */
.connects {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.connects::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(37,99,235,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(20,184,166,.17) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(124,58,237,.10) 0%, transparent 70%);
  pointer-events: none;
}

.connects-header        { text-align: center; margin-bottom: 60px; }
.connects-header .section-tag   { color: #93C5FD; }
.connects-header .section-tag::before { background: linear-gradient(90deg,#93C5FD,#7DD3FC); }
.connects-header .section-title { color: white; }
.connects-header .section-desc  { color: #94A3B8; margin: 0 auto; }

/* Flow diagram */
.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  margin-bottom: 52px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.flow-node {
  flex: 1;
  min-width: 120px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.flow-node:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(14,165,233,.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(37,99,235,.2);
}

.flow-node::after {
  content: '→';
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.2);
  font-size: 18px;
  z-index: 1;
}

.flow-node:last-child::after { display: none; }

.flow-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(14,165,233,.2));
}

.flow-label { font-size: 12px; font-weight: 700; color: white; line-height: 1.3; }
.flow-sub   { font-size: 11px; color: #64748B; margin-top: 4px; }

/* Stats row */
.connects-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cs-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}

.cs-card:nth-child(1)::before { background: var(--grad-hero); }
.cs-card:nth-child(2)::before { background: var(--grad-aurora); }
.cs-card:nth-child(3)::before { background: var(--grad-warm); }

.cs-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,99,235,.2);
}

.cs-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.cs-label {
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
}


/* ============================================================
   FEATURES — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .feat-hero-inner  { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .feat-hero-sub    { margin: 0 auto 32px; }
  .hero-pills       { justify-content: center; }
  .feat-hero-ctas   { justify-content: center; }
  .hero-visual      { order: -1; height: 300px; }
  .feature-orbit    { width: 280px; height: 280px; }
  .orbit-ring-1     { width: 190px; height: 190px; margin-left: -95px; margin-top: -95px; }
  .orbit-ring-2     { width: 266px; height: 266px; margin-left: -133px; margin-top: -133px; }
  .orbit-icon       { width: 40px; height: 40px; }
  .orbit-center     { width: 78px; height: 78px; }
  .feature-grid     { grid-template-columns: 1fr; }
  .strip-inner      { grid-template-columns: 1fr; gap: 40px; }
  .strip-inner.reverse { direction: ltr; }
  .strip-badge      { display: none; }
  .strip-img-frame  { height: 280px; }
  .connects-stats   { grid-template-columns: 1fr; }
  .flow             { flex-direction: column; }
  .flow-node::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -20px; transform: translateX(-50%); }
}

/* ============================================================
   TRIP MEMORIES REDESIGN (MATCHING SCREENSHOT)
   ============================================================ */
.memory-hero {
  padding: 120px 0 80px;
  background: white !important;
  position: relative;
  border-bottom: 2px solid #f1f5f9;
}

.memory-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.memory-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  color: #3B82F6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.memory-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #0F172A;
  max-width: 550px;
}

.memory-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 25px rgba(0,0,0,0.04);
  border: 1px solid #F1F5F9;
  transition: all 0.3s ease;
}

.m-card:hover { transform: translateX(10px); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

.m-card.blue {
  background: #0084FF;
  color: white;
  box-shadow: 0 15px 35px rgba(0,132,255,0.3);
  border: none;
}

.m-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-card-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Photo Strip */
.photo-strip {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 40px;
  overflow-x: auto;
  scrollbar-width: none; 
}

.photo-strip::-webkit-scrollbar { display: none; }

.p-thumb {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.p-thumb:hover {
  transform: translateY(-12px) scale(1.15) rotate(2deg);
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Responsive */
@media (max-width: 991px) {
  .memory-grid { grid-template-columns: 1fr; gap: 48px; }
  .memory-copy { text-align: left; }
  .memory-title { font-size: 34px; }
}

