/* ============================================================
   TRIPSIL — Home Page Styles (index.css)
   Styles specific to index.html only.
   ============================================================ */


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #F0F7FF 0%, #FAFEFF 35%, #F0FDF9 65%, #FFF8F0 100%);
}

/* Animated gradient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(88px);
  animation: blobDrift 10s ease-in-out infinite;
}

.blob1 {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(37, 99, 235, .22) 0%, rgba(14, 165, 233, .13) 50%, transparent 70%);
  top: -200px;
  right: -140px;
  animation-delay: 0s;
}

.blob2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(20, 184, 166, .18) 0%, rgba(14, 165, 233, .11) 50%, transparent 70%);
  bottom: -140px;
  left: -70px;
  animation-delay: 3.5s;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, .13) 0%, rgba(236, 72, 153, .09) 50%, transparent 70%);
  top: 32%;
  left: 38%;
  animation-delay: 7s;
}

.blob4 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, .16) 0%, rgba(255, 107, 107, .11) 50%, transparent 70%);
  top: 16%;
  left: 16%;
  animation-delay: 2s;
}

@keyframes blobDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-18px, -26px) scale(1.05);
  }

  66% {
    transform: translate(16px, 13px) scale(0.96);
  }
}

/* Dot grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, .07) 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%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0 20px;
}

/* Eyebrow */
.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: pulseGlow 3s ease-in-out infinite;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-hero);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {

  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 pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.6);
  }
}

/* H1 */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.store-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn, .store-btn-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  background: linear-gradient(180deg, #2D3748 0%, #000000 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  min-width: 180px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.store-btn:hover, .store-btn-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.35);
}

.store-btn::after, .store-btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
  transition: transform 0.6s;
  transform: translateX(-100%);
  pointer-events: none;
}

.store-btn:hover::after, .store-btn-cta:hover::after {
  transform: translateX(100%);
}

.store-btn-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-btn-icon path {
  fill: white !important;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-btn-text small {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.store-btn-text strong {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}




/* Social proof stat chip */
.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, .12);
  width: fit-content;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .08);
}

/* ============================================================
   AIO STRIP (Everything In One Place)
   ============================================================ */
.aio-strip {
  padding: 100px 0 80px;
  background: white;
  overflow: hidden;
  position: relative;
}

/* Subtle travel texture + vignette */
.aio-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(37, 99, 235, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.aio-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}



.aio-marquee {
  width: 100%;
  position: relative;
  z-index: 2;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.aio-track {
  display: flex;
  gap: 120px;
  width: max-content;
  animation: aioScroll 35s linear infinite;
}

.aio-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: -2px;
  transition: transform 0.3s;
}

.aio-item:hover {
  transform: scale(1.05);
}

.aio-item span {
  font-size: 0.9em;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

@keyframes aioScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .aio-strip {
    padding: 60px 0 40px;
  }
  .aio-header {
    margin-bottom: 32px;
  }
  .aio-item {
    font-size: 38px;
    gap: 12px;
  }
  .aio-track {
    gap: 60px;
  }
}



.stat-avatars {
  display: flex;
  align-items: center;
}

.stat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.stat-avatar:first-child {
  margin-left: 0;
  background: var(--grad-cool);
}

.stat-avatar:nth-child(2) {
  background: var(--grad-hero);
}

.stat-avatar:nth-child(3) {
  background: var(--grad-warm);
}

.stat-info strong {
  font-weight: 700;
  color: var(--dark);
  font-size: 13px;
}

.stat-info span {
  color: var(--text-muted);
  font-size: 13px;
}

.trust-line {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-line svg {
  color: #22C55E;
}

/* Phone mockup visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}


.phone-frame {
  width: 280px;
  height: 540px;
  /* border-radius: 36px;
  border: 2px solid rgba(255,255,255,.85);
  background: white;
  box-shadow: 0 40px 100px rgba(15,23,42,.2), 0 4px 16px rgba(37,99,235,.16), inset 0 1px 0 rgba(255,255,255,.9);
   */
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-frame.secondary {
  width: 240px;
  height: 460px;
  position: absolute;
  /* box-shadow: 0 24px 64px rgba(15, 23, 42, .14); */
  animation-delay: 2s;
}

.phone-frame.left {
  left: -20px;
  top: 30px;
  z-index: 0;
  animation-name: phoneFloatL;
}

.phone-frame.right {
  right: -20px;
  top: 40px;
  z-index: 0;
  animation-name: phoneFloatR;
}

.phone-frame.center {
  z-index: 2;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes phoneFloatL {

  0%,
  100% {
    transform: rotate(-6deg) translateY(0);
  }

  50% {
    transform: rotate(-6deg) translateY(-10px);
  }
}

@keyframes phoneFloatR {

  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }

  50% {
    transform: rotate(6deg) translateY(-10px);
  }
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--dark);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.img-ph {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(160deg, #EFF6FF 0%, #F0FEFF 50%, #EEF2FF 100%);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  font-family: var(--font-body);
}

.img-ph svg {
  opacity: .4;
}

.img-ph span {
  opacity: .55;
}

.hero-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.step-img {
  width: 100%;
  height: auto;
  display: block;
}




/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.pain::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, .1) 0%, transparent 70%);
  pointer-events: none;
}

.pain-header {
  text-align: center;
  margin-bottom: 60px;
}

.pain-header .section-tag {
  color: #93C5FD;
}

.pain-header .section-tag::before {
  background: linear-gradient(90deg, #93C5FD, #7DD3FC);
}

.pain-header .section-title {
  color: white;
}

.pain-header .section-desc {
  color: #94A3B8;
  margin: 0 auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.pain-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-hero);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pain-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(14, 165, 233, .35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, .22);
}

.pain-card:hover::before {
  transform: scaleX(1);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(37, 99, 235, .25), rgba(14, 165, 233, .2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}

.pain-transition {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .18), rgba(14, 165, 233, .12), rgba(20, 184, 166, .10));
  border: 1px solid rgba(14, 165, 233, .25);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.pain-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(20, 184, 166, .06));
}

.pain-transition p {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  color: white;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.pain-transition span {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonials */
.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), background 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:nth-child(1)::after {
  background: var(--grad-hero);
}

.testimonial-card:nth-child(2)::after {
  background: var(--grad-tropical);
}

.testimonial-card:nth-child(3)::after {
  background: var(--grad-warm);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.testi-label {
  font-size: 11px;
  color: #94A3B8;
}


/* ============================================================
   FEATURES BENTO GRID
   ============================================================ */
.features {
  background: linear-gradient(180deg, #F8FAFF 0%, #EFF7FF 50%, #F8FAFF 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-aurora);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header .section-desc {
  margin: 0 auto;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(37, 99, 235, .08);
  transition: transform var(--transition), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:nth-child(1)::after,
.feature-card:nth-child(8)::after {
  background: var(--grad-hero);
}

.feature-card:nth-child(2)::after {
  background: var(--grad-tropical);
}

.feature-card:nth-child(3)::after {
  background: var(--grad-cool);
}

.feature-card:nth-child(4)::after {
  background: var(--grad-ocean);
}

.feature-card:nth-child(5)::after {
  background: var(--grad-warm);
}

.feature-card:nth-child(6)::after {
  background: var(--grad-sunset);
}

.feature-card:nth-child(7)::after {
  background: var(--grad-aurora);
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, .15);
  border-color: rgba(37, 99, 235, .14);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-6deg);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-img-ph {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  background: linear-gradient(135deg, #EFF6FF, #EEF2FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  border: 1px dashed rgba(37, 99, 235, .25);
  font-family: var(--font-body);
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw {
  background: white;
  position: relative;
  overflow: hidden;
}

.hiw::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-aurora);
}

.hiw-header {
  text-align: center;
  margin-bottom: 64px;
}

.hiw-header .section-desc {
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 64px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.step:hover {
  transform: translateY(-12px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}


.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-hero);
  color: white;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  margin-bottom: 24px;
  margin-top: -68px; /* Lift above card */
  border: 4px solid white;
}


.step:hover .step-num {
  transform: scale(1.14);
  box-shadow: 0 12px 40px rgba(14, 165, 233, .52);
}

.step-img-frame {
  width: 100%;
  margin: 10px 0 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.step:hover .step-img-frame {
  transform: scale(1.02);
}


.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}


.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   USE CASES
   ============================================================ */
.usecases {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAFEFF 0%, #F0F7FF 100%);
  position: relative;
  overflow: hidden;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.usecase-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-light);
  height: 100%;
}

.usecase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}

.usecase-img-frame {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.usecase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.usecase-card:hover .usecase-img {
  transform: scale(1.1);
}

.usecase-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.usecase-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.usecase-sub {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.usecase-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}


.usecase-card:hover::before {
  opacity: 1;
}

.usecase-card:hover::after {
  transform: scaleX(1);
}

.usecase-emoji-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.usecase-card:hover .usecase-emoji-wrap {
  transform: scale(1.12) rotate(-6deg);
}

.uc-blue {
  background: linear-gradient(135deg, #DBEAFE, #BAE6FD);
  box-shadow: 0 4px 16px rgba(37, 99, 235, .2);
}

.uc-green {
  background: linear-gradient(135deg, #CCFBF1, #A7F3D0);
  box-shadow: 0 4px 16px rgba(20, 184, 166, .2);
}

.uc-pink {
  background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
  box-shadow: 0 4px 16px rgba(236, 72, 153, .2);
}

.uc-orange {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  box-shadow: 0 4px 16px rgba(245, 158, 11, .2);
}

.usecase-body {
  position: relative;
  z-index: 1;
}

.usecase-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.usecase-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.usecase-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(37, 99, 235, .17) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(20, 184, 166, .12) 0%, transparent 60%);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-header .section-tag {
  color: #93C5FD;
}

.faq-header .section-tag::before {
  background: linear-gradient(90deg, #93C5FD, #7DD3FC);
}

.faq-header .section-title {
  color: white;
}

.faq-header .section-desc {
  color: #94A3B8;
  margin: 0 auto;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
  border-color: rgba(14, 165, 233, .4);
  box-shadow: 0 8px 32px rgba(37, 99, 235, .22);
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-q span {
  font-size: 15px;
  font-weight: 600;
  color: white;
  flex: 1;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.faq-item.open .faq-toggle {
  background: var(--grad-hero);
  transform: rotate(45deg);
}

.faq-item.open .faq-toggle svg {
  stroke: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: #94A3B8;
  line-height: 1.7;
}


/* ============================================================
   HOME — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .store-btns {
    justify-content: center;
  }

  .hero-stat {
    margin: 0 auto;
  }

  .trust-line {
    justify-content: center;
  }

  .hero-visual {
    height: 480px;
    order: -1;
  }


  .phone-frame.left,
  .phone-frame.right {
    display: none;
  }

  .phone-frame.center {
    width: 240px;
    height: 480px;
  }


  .pain-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-strip {
    grid-template-columns: 1fr;
  }

  .features-bento {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    grid-column: span 1;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   TRAVEL MEMORIES SECTION
   ============================================================ */
.memories {
  padding: 120px 0 60px;
  background: #fdfdfd;
  overflow: hidden;
}

.memories-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.section-tag-pill {
  display: inline-block;
  padding: 8px 18px;
  background: #EBF5FF;
  color: #3B82F6;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.memories-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #1A202C;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.memories-p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

/* Floating Cards */
.memories-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.m-card:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.m-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-light-blue {
  background: #EFF6FF;
}

.active-card {
  background: #0081FF;
  color: white;
  z-index: 2;
}

/* Juggling Animation */
.juggle-1 { animation: juggle1 8s ease-in-out infinite; }
.juggle-2 { animation: juggle2 9s ease-in-out infinite; animation-delay: 1s; }
.juggle-3 { animation: juggle3 7s ease-in-out infinite; animation-delay: 0.5s; }
.juggle-4 { animation: juggle4 10s ease-in-out infinite; animation-delay: 1.5s; }

@keyframes juggle1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(1deg); }
  66% { transform: translate(-5px, 10px) rotate(-1deg); }
}

@keyframes juggle2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-12px, 8px) rotate(-1.5deg); }
  66% { transform: translate(8px, -12px) rotate(1deg); }
}

@keyframes juggle3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, 5px) rotate(2deg); }
  66% { transform: translate(-10px, -8px) rotate(-1.5deg); }
}

@keyframes juggle4 {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(-8px, -20px) scale(1.05); }
}


.active-card .m-info h3 {
  color: white;
}

.m-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #4A5568;
}

/* Gallery Arc Scroller */
.memories-gallery {
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.gallery-arc {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: max-content;
  padding: 40px 0;
  animation: aioScroll 40s linear infinite;
}

.g-item {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}


.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-item:hover {
  transform: translateY(-20px) scale(1.1);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
  z-index: 5;
}

/* Infinite loop duplication for arc scroll */
.g-item:nth-child(even) { transform: translateY(-15px); }
.g-item:nth-child(odd) { transform: translateY(15px); }


@media (max-width: 1024px) {
  .memories-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .memories-p {
    margin: 0 auto;
  }
  .memories-cards {
    max-width: 500px;
    margin: 0 auto;
  }
  .gallery-arc {
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
    justify-content: center;
  }
  .g-item {
    width: 80px;
    height: 80px;
    transform: none !important;
  }
}
/* ============================================================
   MARQUEE SECTION (Built for every kind of trip)
   ============================================================ */
.marquee-section {
  padding: 140px 0;
  background: #020617;
  position: relative;
  overflow: hidden;
}

.marquee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}

.marquee-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cpath d=\"M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm17-41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM58 89c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM46 14c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54 54c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM80 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM40 43c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z\" fill=\"%232563eb\" fill-opacity=\"0.08\" fill-rule=\"evenodd\"/%3E%3C/svg%3E");
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}


.marquee-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 64px;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: aioScroll 45s linear infinite;
  position: relative;
  z-index: 2;
}

.marquee-pill {
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #F8FAFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.marquee-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}



/* ============================================================
   NEW FEATURES SHOWCASE (Trendy Sequential Layout)
   ============================================================ */
.features {
  padding: 140px 0;
  background: #FFFFFF !important;
  position: relative;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.feat-row.reverse {
  /* Using order instead of direction for cleaner layout */
}

.feat-row.reverse .feat-content {
  order: 2;
}

.feat-row.reverse .feat-image-wrap {
  order: 1;
}

.feat-image-wrap {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.06);
  background: var(--grad-hero);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat-row:hover .feat-image-wrap {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 50px 120px rgba(0,0,0,0.12);
}

.feat-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  border-radius: 24px;
}

.feat-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feat-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feat-num::after {
  content: '';
  height: 2px;
  width: 50px;
  background: var(--grad-hero);
}

.feat-content h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.feat-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
}

.feat-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .feat-row {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .feat-row.reverse .feat-content,
  .feat-row.reverse .feat-image-wrap {
    order: unset;
  }
  .feat-num {
    justify-content: center;
  }
  .feat-list li {
    justify-content: center;
  }
  .features-container {
    gap: 100px;
  }
}


.feat-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  padding: 40px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}


/* ============================================================
   PREMIUM TRAVEL MOTION ELEMENTS
   ============================================================ */
.motion-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.travel-particle {
  position: absolute;
  opacity: 0.15;
  filter: blur(1px);
  animation: float-particle 20s linear infinite;
}

.tp-1 { top: 15%; left: 10%; color: var(--primary); animation-duration: 25s; }
.tp-2 { top: 45%; right: 8%; color: var(--accent); animation-duration: 35s; animation-delay: -5s; }
.tp-3 { top: 75%; left: 5%; color: var(--secondary); animation-duration: 40s; animation-delay: -10s; }
.tp-4 { top: 90%; right: 15%; color: var(--primary); animation-duration: 30s; animation-delay: -15s; }

@keyframes float-particle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Subtle Plane Streak */
.plane-streak {
  position: fixed;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.2), transparent);
  z-index: 1;
  pointer-events: none;
  transform: rotate(-15deg);
  animation: plane-pass 15s ease-in-out infinite;
}

@keyframes plane-pass {
  0% { left: -150px; top: 10%; opacity: 0; }
  10% { opacity: 1; }
  50% { opacity: 1; }
  90% { opacity: 0; }
  100% { left: 110%; top: 40%; opacity: 0; }
}

/* Glint Effect on Interactive Tags */
.section-tag, .section-tag-pill {
  position: relative;
  overflow: hidden;
}

.section-tag::after, .section-tag-pill::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 55%
  );
  animation: shine-tag 6s infinite;
  transform: rotate(30deg);
}

@keyframes shine-tag {
  0% { transform: translateX(-100%) rotate(30deg); }
  20% { transform: translateX(100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

/* Subtle Section Parallax */
.reveal {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.reveal.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Floating Map Pin Micro-Animations */
.m-card:hover .m-icon {
  animation: pin-bounce 0.8s ease infinite alternate;
}

@keyframes pin-bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

/* ============================================================
   ADVANCED TRAVEL MOTION ELEMENTS
   ============================================================ */
.scroll-plane {
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  opacity: 0.2;
  color: var(--primary);
  z-index: 1000;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.2));
  transition: transform 0.3s ease-out;
}

/* Background Map Path */
.map-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.map-path svg {
  width: 100%;
  height: 100%;
  stroke-dasharray: 8 8;
  animation: dash-move 30s linear infinite;
}

@keyframes dash-move {
  to { stroke-dashoffset: -1000; }
}

/* Floating Compass Needle */
.background-compass {
  position: absolute;
  bottom: 100px;
  left: 50px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  animation: spin-compass 60s linear infinite;
  z-index: 0;
  pointer-events: none;
}


@keyframes spin-compass {
  to { transform: rotate(360deg); }
}

/* Scroll-based Airplane Rotation */
.plane-rotating {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   FEATURE VIDEO STYLING
   ============================================================ */
.feat-image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
}

@media (max-width: 768px) {
  .feat-image-wrap {
    aspect-ratio: 9/16 !important;
  }
}


/* ============================================================
   CLEAN PHONE-FOCUS FEATURE STYLING
   ============================================================ */
.features .feat-image-wrap {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  aspect-ratio: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features .feat-screenshot {
  max-width: 320px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 44px !important;
  box-shadow: 0 50px 120px rgba(0,0,0,0.12) !important;
  background: #000; /* Mirror black for phone frame */
  border: 12px solid #1a1a1a;
  outline: 6px solid #2a2a2a;
}

.features .feat-placeholder {
  max-width: 320px !important;
  width: 100% !important;
  height: 600px !important;
  aspect-ratio: 9/19 !important;
  border-radius: 44px !important;
  background: linear-gradient(180deg, #F8FAFF 0%, #EFF6FF 100%) !important;
  border: 12px solid #1a1a1a;
  outline: 6px solid #2a2a2a;
  color: var(--primary) !important;
}

@media (max-width: 768px) {
  .features .feat-screenshot, .features .feat-placeholder {
    max-width: 280px !important;
  }
}


/* ============================================================
   CLEAN, BORDERLESS PRODUCT FOCUS
   ============================================================ */
.features .feat-screenshot, .features .feat-placeholder {
  border: none !important;
  outline: none !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1) !important;
  border-radius: 40px !important;
}


/* ============================================================
   FLOATING FEATURE CARDS (Smart Timeline)
   ============================================================ */
.feat-image-wrap {
  position: relative;
  overflow: visible !important; /* Allow cards to float outside */
}

.floating-feat-card {
  position: absolute;
  padding: 12px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  animation: float-card 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-feat-card svg {
  color: var(--primary);
  flex-shrink: 0;
}

.ffc-1 { top: 10%; left: -60px; animation-delay: 0s; }
.ffc-2 { top: 60%; right: -80px; animation-delay: -1.5s; }
.ffc-3 { bottom: 15%; left: -40px; animation-delay: -3s; }
.ffc-4 { top: -20px; right: 20px; animation-delay: -4.5s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@media (max-width: 1024px) {
  .floating-feat-card {
    display: none; /* Hide on small screens to avoid clutter */
  }
}

/* ============================================================
   SYNERGY SECTION (How it Connects)
   ============================================================ */
.synergy {
  padding: 100px 0;
  background: var(--bg);
}

.synergy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.synergy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.synergy-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.synergy-card:hover {
  transform: translateY(-10px);
}

.syn-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.synergy-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.synergy-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .synergy-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FINAL CTA & MARQUEE
   ============================================================ */
.final-cta {
  padding: 120px 0 0;
  position: relative;
  background: var(--dark);
  overflow: hidden;
  color: white;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 40px;
  background: rgba(255,255,255,0.03);
  padding: 30px 0;
  margin-bottom: 80px;
  transform: rotate(-1deg);
  width: 110%;
  margin-left: -5%;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  min-width: 100%;
  animation: scroll-marquee 40s linear infinite;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  opacity: 0.15;
  color: white;
  white-space: nowrap;
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.final-cta .cta-final-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.final-cta h3 {
  font-size: 42px;
  font-family: var(--font-display);
  margin-bottom: 20px;
  font-weight: 800;
}

.final-cta p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.final-cta .cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
