/* --- Root + Utilities --- */
:root{
  --bg: linear-gradient(to right, #a8fbe5, #c2f8de, #d6f6dd, #e6f3e1, #eff2ea);
  --card: #ffffff;
  --muted: #073a9b;
  --text: #073a9b;
  --accent: #073a9b;
  --accent-2: #0bf0a3;
  --accent-3: #00D382;
  --border: rgba(7,58,155,0.2);
  --glass: rgba(7,58,155,0.1);
  --shadow-lg: 0 20px 50px rgba(7,58,155,.25);
  --shadow-md: 0 12px 30px rgba(7,58,155,.15);
}

/* Full width container */
.container-fluid { padding: 0 !important; }
.full-width { width: 100vw; margin-left: calc(-50vw + 50%); }
.no-gutters { margin: 0; padding: 0 20px; }

.accent{ color: var(--accent-2); }
.text-muted{ color: var(--muted)!important; }

/* Resets that respect Bootstrap */
.section-title{
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after{
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}
.section-sub{
  color: var(--muted);
  margin-top: .25rem;
  text-align: center;
  font-size: 16px;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}
.section-alt{
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  background:
    radial-gradient(1200px 600px at 120% -10%, rgba(255,107,157,0.08), transparent 60%),
    radial-gradient(900px 400px at -10% 10%, rgba(156,39,176,0.1), transparent 60%);
}
.section-alt:nth-of-type(even){
  background: linear-gradient(to left, #e8eaec, #e5eef1, #e2f2f4, #e0f6f3, #e1f9ef);
}
.section-alt:nth-of-type(odd){
  background: rgb(241, 248, 248);
}

/* ===========================
   General Page Styling
=========================== */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.section-alt {
  padding: 5rem 0;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3;
}

.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ===========================
   Premium Hero Section
=========================== */
.founders-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(to right, #a8fbe5, #c2f8de, #d6f6dd, #e6f3e1, #eff2ea);
  overflow: hidden;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(7,58,155,0.1), transparent 60%),
              radial-gradient(circle at 80% 30%, rgba(11,240,163,0.1), transparent 60%);
  animation: pulse-bg 8s infinite alternate;
}

@keyframes pulse-bg {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title .accent {
  background: linear-gradient(90deg, #073a9b, #0bf0a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 1.2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta .btn {
  margin-right: 1rem;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
}

.btn-gradient {
  background: linear-gradient(90deg, #073a9b, #0bf0a3);
  color: white;
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-strip {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-strip .chip {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ===========================
   Hero Image + Floating Cards
=========================== */
.art-frame {
  position: relative;
  max-width: 500px;
  margin: auto;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.float-card i {
  color: #073a9b;
}

.fc-title {
  font-weight: 600;
  color: #073a9b;
  font-size: 0.9rem;
}

.fc-sub {
  color: #666;
  font-size: 0.8rem;
}

.fc-1 { top: 20%; left: -10%; }
.fc-2 { bottom: 15%; right: -10%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Aura ring */
.glow-ring{
  position:absolute; inset:-25%;
  background: radial-gradient(closest-side, rgba(255,107,157,.2), transparent 70%);
  filter: blur(30px);
  pointer-events:none;
}

/* --- Stats --- */
.stats-card{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9));
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  text-align:center;
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.stat-number{
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

/* --- Enhanced Feature cards --- */
.feature-card{
  background: linear-gradient(145deg, #ffffff 0%, #fef7f7 100%);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 32px;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
}

.feature-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card::after{
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(145deg, #ffffff 0%, #fef7f7 100%);
  border-radius: 22px;
  z-index: -1;
  transition: all 0.4s ease;
}

.feature-card:hover{
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255,107,157,.25), 0 10px 30px rgba(0,0,0,.1);
}

.feature-card:hover::before{
  opacity: 1;
}

.feature-card:hover .feature-icon{
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
  color: var(--accent);
  box-shadow: 0 8px 25px rgba(255,107,157,.3);
}

.feature-card:hover .feature-title{
  color: var(--accent);
}

.feature-icon{
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  font-size: 24px;
  margin: 0 0 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(255,107,157,.2);
}

.feature-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-text{
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* --- Enhanced Steps --- */
.steps-container{
  position: relative;
  padding: 60px 0;
}

.steps-container::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.step-card{
  height: 100%;
  background: linear-gradient(145deg, #ffffff 0%, #fef7f7 100%);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 32px 24px;
  color: var(--text);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  z-index: 2;
}

.step-card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.step-card::after{
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(145deg, #ffffff 0%, #fef7f7 100%);
  border-radius: 22px;
  z-index: -1;
}

.step-card:hover{
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255,107,157,.2);
}

.step-card:hover::before{
  opacity: 1;
}

.step-card:hover .step-number{
  background: #ffffff;
  color: var(--accent);
  transform: scale(1.1);
}

.step-number{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 24px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255,107,157,.3);
  position: relative;
  z-index: 3;
}

.step-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-text{
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* --- Testimonials Premium Slider --- */
.section-testimonials{ 
  background: linear-gradient(135deg, #FFF8FA 0%, #FCE4EC 100%);
  overflow: hidden;
}
.t-slider{
  position: relative;
  margin-top: 26px;
  width: 100%;
  overflow: hidden;
}
.t-track{
  display: flex;
  gap: 20px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.t-card{
  flex: 0 0 auto;
  width: 300px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255,107,157,.2);
}
.t-avatar{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-bottom: 10px;
  object-fit: cover;
}
.t-quote{
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
  margin: 8px 0 10px;
}
.t-name{ font-weight: 700; }
.t-gradient{
  position:absolute; top:0; bottom:0; width:120px; pointer-events:none;
  background: linear-gradient(to right, #FCE4EC, transparent);
  z-index: 1;
}
.t-gradient.right{ right:0; transform: scaleX(-1); }
.t-gradient.left{ left:0; }

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

.t-slider:hover .t-track{ animation-play-state: paused; }

/* --- Pricing --- */
.section-pricing .plan-card{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9));
  border:1px solid var(--border);
  border-radius: 22px;
  color: var(--text);
  height:100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.section-pricing .plan-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(255,107,157,.2);
}
.free-header{ background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.8)); }
.premium-header{ background: linear-gradient(135deg, var(--accent), var(--accent-2)); color:white; }
.bg-orange-gradient{ background: linear-gradient(135deg, #ff7a59, #ffb84d) !important; border-radius: 999px; }

/* --- FAQ --- */
.faq-accordion .accordion-item{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9));
  border-radius:16px !important; overflow:hidden;
  border:1px solid var(--border);
}
.faq-accordion .accordion-button{
  background: transparent; color: var(--text); font-weight:600;
}
.faq-accordion .accordion-button:not(.collapsed){
  box-shadow: inset 0 -1px 0 var(--border);
}

/* --- CTA --- */
.section-cta{
  padding: clamp(64px, 8vw, 120px) 0;
  color: white; text-align:center;
  background: linear-gradient(135deg, #FF6B9D 0%, #9C27B0 50%, #E040FB 100%);
  position: relative;
}
.section-cta::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(600px 300px at 80% 10%, rgba(255,255,255,.2), transparent 60%);
}
.cta-title{
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; letter-spacing: -0.02em; margin-bottom: 8px;
}
.cta-sub{ color: rgba(255,255,255,.9); margin-bottom: 18px; }

/* --- Animations on scroll --- */
.fade-up, .fade-left, .fade-right{
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1);
}
.fade-left{ transform: translateX(24px); }
.fade-right{ transform: translateX(-24px); }
.in-view.fade-up{ opacity:1; transform: translateY(0); }
.in-view.fade-left{ opacity:1; transform: translateX(0); }
.in-view.fade-right{ opacity:1; transform: translateX(0); }
.delay-1{ transition-delay: .12s; }
.delay-2{ transition-delay: .22s; }
.delay-3{ transition-delay: .32s; }

/* --- Responsiveness --- */
/* Full width sections */
.section-alt, .section-testimonials, .section-cta{
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.container{
  max-width: 1400px !important;
  padding: 0 20px;
}

@media (max-width: 991.98px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-left, .hero-right{
    order: 2;
  }
  .hero-copy{
    order: 1;
  }
  .hero-art{
    order: 3;
  }
  .hero-cta .btn{ width: 100%; }
  .art-frame{ border-radius: 22px; }
  .t-card{ 
    width: 280px;
    padding: 16px;
  }
  .t-avatar{
    width: 45px;
    height: 45px;
  }
  .t-quote{
    font-size: 0.85rem;
  }
  .steps-container::before{ display: none; }
}

@media (max-width: 575.98px){
  .hero-title{ font-size: clamp(30px, 9vw, 38px); }
  .hero-sub{ font-size: 15px; }
  .float-card{ display:none; }
  .floating-badge{ transform: scale(.95); }
  .hero-stats{ grid-template-columns: 1fr; }
  .feature-card, .step-card{
    padding: 24px;
  }
  .t-card{
    width: 250px;
    padding: 14px;
  }
  .t-avatar{
    width: 40px;
    height: 40px;
  }
  .t-quote{
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .t-name{
    font-size: 0.9rem;
  }
  .container{
    padding: 0 15px;
  }
}
