/* Linktora – Modern Landing Theme (light, minimal, subtle animations) */

:root {
  --brand: #0ea5e9;
  /* cyan-500 */
  --brand-2: #6366f1;
  /* indigo-500 */
  --brand-dark: #2563eb;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;

  --bg: #f7fafc;
  /* light bg */
  --bg-card: #ffffff;
  /* light surface */
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;

  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow: 0 6px 16px rgba(15, 23, 42, .06);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, .10);
  --transition: all .18s ease;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .25s ease, color .25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-space {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif
}

/* Navbar */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid var(--border);
  transition: background-color .25s ease, border-color .25s ease;
  opacity: 0;
  animation: fadeInDown .6s ease forwards
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

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

.navbar-brand {
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--brand-2) !important;
  transition: transform .3s ease
}

.navbar-brand:hover {
  transform: scale(1.05)
}

.nav-link {
  color: #334155 !important;
  border-radius: 10px;
  transition: all .3s ease
}

.nav-link:hover {
  background: #f1f5f9;
  color: var(--brand-2) !important;
  transform: translateY(-2px)
}

/* Hero - Professional Design */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(14, 165, 233, .15), transparent 40%), radial-gradient(1000px 500px at 110% 110%, rgba(99, 102, 241, .12), transparent 45%)
}

[data-theme="dark"] .hero-section {
  background: radial-gradient(1200px 600px at 10% -10%, rgba(14, 165, 233, .08), transparent 40%), radial-gradient(1000px 500px at 110% 110%, rgba(99, 102, 241, .06), transparent 45%)
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(139, 92, 246, .1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, .2);
  padding: .6rem 1.1rem;
  border-radius: 999px;
  color: var(--brand-2);
  font-weight: 600;
  font-size: .875rem;
  transition: all .3s ease;
  animation: scaleIn .6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, .1)
}

.hero-badge i {
  color: var(--brand-2);
  font-size: 1rem
}

.hero-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(99, 102, 241, .25);
  border-color: rgba(99, 102, 241, .3);
  background: linear-gradient(135deg, rgba(99, 102, 241, .15), rgba(139, 92, 246, .15))
}

[data-theme="dark"] .hero-badge {
  background: linear-gradient(135deg, rgba(99, 102, 241, .15), rgba(139, 92, 246, .15));
  border-color: rgba(129, 140, 248, .3);
  color: #a78bfa
}

[data-theme="dark"] .hero-badge i {
  color: #a78bfa
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin: .75rem 0 1.25rem;
  animation: fadeInUp .8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  letter-spacing: -.02em
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
  animation: fadeInUp .8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
  font-weight: 400
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulse 3s ease-in-out infinite;
  position: relative
}

/* Buttons */
.btn {
  border: none;
  border-radius: 12px;
  padding: .9rem 1.3rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.btn-lg {
  animation: fadeInUp .6s ease forwards;
  opacity: 0
}

.btn-lg:nth-of-type(1) {
  animation-delay: 0.5s
}

.btn-lg:nth-of-type(2) {
  animation-delay: 0.6s
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 165, 233, .22)
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(14, 165, 233, .4)
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px
}

.btn-ghost {
  background: #ffffff;
  border: 1px solid var(--border);
  color: #0f172a
}

.btn-ghost:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg)
}

.preview-card {
  backdrop-filter: saturate(140%) blur(6px);
  animation: scaleIn .8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0
}

.feature-card {
  padding: 2rem;
  text-align: center
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-2), var(--brand))
}

/* Stats */
.stats-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.stat-item {
  padding: 2rem 1rem;
  opacity: 0;
  animation: slideUp .6s ease forwards
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s
}

.stat-item:hover {
  transform: translateY(-4px);
  transition: transform .3s ease
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: .5rem;
  transition: all .3s ease
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  color: var(--brand)
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: .85rem;
  transition: color .3s ease
}

.stat-item:hover .stat-label {
  color: var(--text)
}

/* Pricing */
.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 2.25rem;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 1 !important;
  animation: scaleIn .6s ease forwards
}

.row .col-lg-4:nth-child(1) .pricing-card {
  animation-delay: 0.1s
}

.row .col-lg-4:nth-child(2) .pricing-card {
  animation-delay: 0.2s
}

.row .col-lg-4:nth-child(3) .pricing-card {
  animation-delay: 0.3s
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-2)
}

.pricing-card.featured {
  border-color: var(--brand-2);
  background: linear-gradient(180deg, var(--bg-card), var(--bg));
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite
}

.pricing-card.featured:hover {
  animation: none;
  transform: translateY(-8px) scale(1.02)
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 1
}

.pricing-badge-coming-soon {
  background: linear-gradient(135deg, var(--warning), #d97706) !important
}

.pricing-header {
  margin-bottom: 1.5rem;
  text-align: center
}

.pricing-header h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem
}

.pricing-price {
  font-family: "Space Grotesk";
  font-size: 2.6rem;
  color: var(--brand-2);
  font-weight: 800;
  line-height: 1
}

.pricing-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600
}

.pricing-beta-badge {
  display: flex;
  justify-content: center;
  margin-top: .5rem
}

.pricing-beta-badge .badge {
  font-size: .75rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .25rem
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0
}

.pricing-features li {
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  font-size: .95rem;
  color: var(--text)
}

.pricing-features li:last-child {
  border-bottom: none
}

.pricing-features i {
  font-size: .875rem
}

/* Comparison */
.comparison-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.comparison-table .table th {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff
}

/* Testimonials */
.testimonial-card {
  padding: 2rem
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.testimonial-text {
  color: var(--muted)
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  position: relative;
  padding: 5rem 0;
  opacity: 0;
  animation: fadeInUp .8s ease forwards;
  animation-delay: 0.2s
}

.cta-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 500px at -10% 0%, rgba(255, 255, 255, .12), transparent 40%);
  animation: pulse 3s ease-in-out infinite
}

.cta-content {
  position: relative;
  z-index: 1
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
  transition: transform .3s ease
}

.cta-section:hover h2 {
  transform: scale(1.02)
}

.cta-section .lead {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 2rem
}

.cta-section .btn-ghost {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all .3s ease
}

.cta-section .btn-ghost:hover {
  background: rgba(255, 255, 255, .25);
  color: #fff;
  transform: translateY(-2px) scale(1.05)
}

.cta-section .btn-primary:hover {
  transform: translateY(-2px) scale(1.05)
}

/* Footer - Professional Design */
.footer {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  color: var(--muted);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeInUp .8s ease forwards;
  animation-delay: 0.3s;
  position: relative;
  overflow: hidden
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2), transparent);
  opacity: .3
}

.footer h5,
.footer h6 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1.25rem;
  transition: color .3s ease;
  font-size: 1.1rem;
  letter-spacing: -.01em
}

.footer h5 i {
  color: var(--brand-2);
  margin-right: .5rem;
  font-size: 1.25rem
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  display: inline-block;
  padding: .25rem 0;
  font-size: .95rem
}

.footer a:hover {
  color: var(--brand-2);
  transform: translateX(4px);
  font-weight: 500
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  transition: width .3s ease;
  border-radius: 2px
}

.footer a:hover::after {
  width: 100%
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer ul li {
  margin-bottom: .75rem;
  opacity: 0;
  animation: fadeInUp .5s ease forwards
}

.footer ul li:nth-child(1) {
  animation-delay: 0.4s
}

.footer ul li:nth-child(2) {
  animation-delay: 0.5s
}

.footer ul li:nth-child(3) {
  animation-delay: 0.6s
}

.footer ul li:nth-child(4) {
  animation-delay: 0.7s
}

.footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0 1.5rem;
  opacity: .5
}

.footer .text-muted {
  color: var(--muted) !important;
  font-size: .9rem;
  line-height: 1.6
}

.footer .text-center {
  opacity: 0;
  animation: fadeInUp .5s ease forwards;
  animation-delay: 0.8s
}

[data-theme="dark"] .footer {
  background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  border-top-color: var(--border)
}

[data-theme="dark"] .footer::before {
  background: linear-gradient(90deg, transparent, #818cf8, transparent)
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.7
  }
}

.animate-fade-in-up {
  animation: fadeInUp .6s ease both
}

.animate-fade-in-left {
  animation: fadeInLeft .7s ease both
}

.animate-fade-in-right {
  animation: fadeInRight .7s ease both
}

.animate-fade-in {
  animation: fadeIn .8s ease both
}

.animate-slide-up {
  animation: slideUp .8s ease both
}

.animate-scale-in {
  animation: scaleIn .6s ease both
}

/* Stagger animations */
.animate-delay-1 {
  animation-delay: 0.1s
}

.animate-delay-2 {
  animation-delay: 0.2s
}

.animate-delay-3 {
  animation-delay: 0.3s
}

.animate-delay-4 {
  animation-delay: 0.4s
}

/* Section titles */
section h2,
section .h1 {
  opacity: 0;
  animation: fadeInUp .8s ease forwards
}

section p.lead {
  opacity: 0;
  animation: fadeInUp .8s ease forwards;
  animation-delay: 0.2s
}

/* Smooth scroll */
html {
  scroll-behavior: smooth
}

/* Responsive */
@media (max-width: 768px) {
  .btn {
    width: 100%;
    margin-bottom: .5rem
  }

  .hero-section {
    padding: 2rem 0;
    min-height: auto
  }

  .hero-title {
    font-size: 2rem !important
  }

  .hero-subtitle {
    font-size: 1rem
  }

  .feature-card {
    padding: 1.5rem
  }

  .pricing-card {
    padding: 1.5rem;
    margin-bottom: 1rem
  }

  .stats-section {
    padding: 2rem 0
  }

  .stat-item {
    padding: 1.5rem 1rem
  }

  .stat-number {
    font-size: 2rem
  }

  .step-card {
    padding: 1.5rem;
    margin-bottom: 1rem
  }

  .footer {
    padding: 2rem 0 1rem
  }

  .navbar {
    padding: .5rem 0
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .row.g-4 {
    margin-left: -.5rem;
    margin-right: -.5rem
  }

  .row.g-4>* {
    padding-left: .5rem;
    padding-right: .5rem
  }

  /* Features 2'li grid mobilde */
  .row.g-4>.col-lg-4.col-md-6.col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important
  }

  /* Steps 2'li grid mobilde */
  .row.g-4>.col-lg-4.col-md-6.col-6.step-card-wrapper {
    flex: 0 0 50% !important;
    max-width: 50% !important
  }

  .chips {
    justify-content: center
  }

  .chip {
    font-size: .85rem;
    padding: .4rem .6rem
  }

  .accordion-item {
    margin-bottom: .5rem
  }

  .accordion-button {
    font-size: .9rem;
    padding: .75rem
  }

  .cta-section {
    padding: 3rem 0
  }

  .cta-section h2 {
    font-size: 1.75rem
  }

  .cta-section .lead {
    font-size: 1rem
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem !important
  }

  .hero-subtitle {
    font-size: .95rem
  }

  .feature-card {
    padding: 1rem
  }

  .pricing-card {
    padding: 1rem
  }

  .pricing-price {
    font-size: 2rem
  }

  .stat-number {
    font-size: 1.75rem
  }

  .step-card {
    padding: 1rem
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem
  }

  .footer {
    padding: 1.5rem 0 .75rem
  }

  .footer h5,
  .footer h6 {
    font-size: 1rem
  }

  .footer ul li {
    font-size: .85rem
  }

  .btn-lg {
    padding: .75rem 1rem;
    font-size: .9rem
  }

  .navbar-brand {
    font-size: 1rem
  }

  .chip {
    font-size: .8rem;
    padding: .35rem .5rem
  }

  .accordion-button {
    font-size: .85rem;
    padding: .6rem
  }

  .cta-section {
    padding: 2rem 0
  }

  .cta-section h2 {
    font-size: 1.5rem
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: .9rem;
    padding: .5rem .85rem
  }

  .hero-title {
    font-size: 2.25rem !important;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem
  }

  .pricing-card {
    padding: 1.25rem
  }

  .pricing-price {
    font-size: 2rem
  }

  .pricing-header h5 {
    font-size: 1.35rem
  }

  .stat-item {
    padding: 1.25rem 1rem
  }

  .stat-number {
    font-size: 2rem
  }

  .stat-label {
    font-size: .85rem
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem
  }

  .step-card h5 {
    font-size: 1.2rem
  }

  .step-card p {
    font-size: 1rem
  }

  .footer {
    padding: 2rem 0 1rem
  }

  .footer h5,
  .footer h6 {
    font-size: 1.1rem;
    margin-bottom: 1rem
  }

  .footer ul li {
    font-size: .95rem;
    margin-bottom: .6rem
  }

  .btn {
    padding: .8rem 1.2rem;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .btn-lg {
    padding: .9rem 1.25rem;
    font-size: 1.1rem
  }

  .chip {
    font-size: .9rem;
    padding: .5rem .75rem
  }

  .accordion-button {
    font-size: 1rem;
    padding: .8rem
  }

  .cta-section {
    padding: 2.5rem 0
  }

  .cta-section h2 {
    font-size: 1.75rem
  }

  .cta-section .lead {
    font-size: 1.1rem
  }
}

/* Decorative hero shapes */
.hero-section .hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
  animation: float 6s ease-in-out infinite
}

.hero-section .hero-shape.one {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 60%);
  top: -120px;
  left: -80px;
  animation-delay: 0s
}

.hero-section .hero-shape.two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--brand-2) 0%, transparent 60%);
  bottom: -140px;
  right: -120px;
  animation-delay: 2s
}

/* Chips - Professional Design */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp .5s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  backdrop-filter: blur(10px)
}

.chip:nth-child(1) {
  animation-delay: 0.5s
}

.chip:nth-child(2) {
  animation-delay: 0.6s
}

.chip:nth-child(3) {
  animation-delay: 0.7s
}

.chip:nth-child(4) {
  animation-delay: 0.8s
}

.chip:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(99, 102, 241, .25);
  border-color: var(--brand-2);
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff
}

.chip:hover i {
  color: #fff !important;
  transform: scale(1.1)
}

.chip i {
  color: var(--brand-2);
  transition: all .3s ease;
  font-size: 1rem
}

[data-theme="dark"] .chip {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text)
}

[data-theme="dark"] .chip i {
  color: #818cf8
}

[data-theme="dark"] .chip:hover {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-color: var(--brand-2)
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: #334155;
  text-decoration: none;
  font-size: .85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  opacity: .85
}

.scroll-indicator .chev {
  width: 18px;
  height: 18px;
  border-bottom: 2px solid #94a3b8;
  border-right: 2px solid #94a3b8;
  transform: rotate(45deg);
  animation: chev 1.6s ease-in-out infinite
}

@keyframes chev {

  0%,
  100% {
    transform: translateY(0) rotate(45deg)
  }

  50% {
    transform: translateY(6px) rotate(45deg)
  }
}

/* Logos row */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  color: #64748b
}

.logo-row .logo {
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 1rem;
  opacity: .8
}

.logo-row .logo:hover {
  opacity: 1
}

/* Feature hover micro-interaction - Professional */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: slideUp .6s ease forwards;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left
}

.feature-card:hover::before {
  transform: scaleX(1)
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, .15);
  border-color: rgba(99, 102, 241, .3)
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(99, 102, 241, .4)
}

.feature-icon {
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff !important;
  position: relative;
  overflow: hidden
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
  opacity: 0;
  transition: opacity .3s ease
}

.feature-icon:hover::before {
  opacity: 1
}

.feature-icon i {
  color: #fff !important;
  font-size: 1.75rem;
  z-index: 1;
  position: relative
}

.feature-icon.success {
  background: linear-gradient(135deg, var(--success), #15803d)
}

.feature-icon.info {
  background: linear-gradient(135deg, var(--brand), var(--brand-2))
}

.feature-icon.warning {
  background: linear-gradient(135deg, var(--warning), #d97706)
}

.feature-icon.danger {
  background: linear-gradient(135deg, var(--danger), #dc2626)
}

.feature-icon.primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand))
}

.feature-card h5 {
  margin: 0 0 .75rem 0;
  font-weight: 700;
  color: var(--text);
  transition: color .3s ease;
  font-size: 1.15rem
}

.feature-card:hover h5 {
  color: var(--brand-2)
}

.feature-card p {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6
}

/* Gradient border utility */
.border-gradient {
  position: relative
}

.border-gradient:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #0f172a
}

.theme-toggle:hover {
  background: #f8fafc
}

/* Steps - Professional Design */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  font-weight: 800;
  margin-bottom: .75rem
}

.step h6 {
  margin: 0 0 .25rem 0
}

.step p {
  margin: 0;
  color: var(--muted)
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: slideUp .6s ease forwards;
  position: relative;
  overflow: hidden;
  height: 100%
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left
}

.step-card:hover::after {
  transform: scaleX(1)
}

.step-card:nth-child(1) {
  animation-delay: 0.1s
}

.step-card:nth-child(2) {
  animation-delay: 0.2s
}

.step-card:nth-child(3) {
  animation-delay: 0.3s
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, .2);
  border-color: rgba(99, 102, 241, .4)
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 32px rgba(99, 102, 241, .4)
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 16px rgba(99, 102, 241, .3)
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
  filter: blur(8px)
}

.step-card:hover .step-number::before {
  opacity: .5
}

.step-card h5 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color .3s ease;
  font-size: 1.25rem
}

.step-card:hover h5 {
  color: var(--brand-2)
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7
}

@media (max-width: 991px) {
  .steps {
    grid-template-columns: 1fr
  }
}

/* Light Theme - Explicit Overrides */
:root:not([data-theme="dark"]) {
  --bg: #f7fafc;
  --bg-card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
}

:root:not([data-theme="dark"]) body {
  background: var(--bg);
  color: var(--text)
}

:root:not([data-theme="dark"]) .navbar {
  background: #fff !important;
  border-bottom: 1px solid var(--border)
}

:root:not([data-theme="dark"]) .navbar-brand {
  color: var(--brand-2) !important
}

:root:not([data-theme="dark"]) .nav-link {
  color: #334155 !important
}

:root:not([data-theme="dark"]) .nav-link:hover {
  background: #f1f5f9;
  color: var(--brand-2) !important
}

:root:not([data-theme="dark"]) .btn-ghost {
  background: #ffffff;
  border: 1px solid var(--border);
  color: #0f172a
}

:root:not([data-theme="dark"]) .btn-ghost:hover {
  background: #f8fafc;
  color: #0f172a
}

:root:not([data-theme="dark"]) .card {
  background: var(--bg-card);
  border-color: var(--border)
}

:root:not([data-theme="dark"]) .text-muted {
  color: var(--muted) !important
}

:root:not([data-theme="dark"]) h1,
:root:not([data-theme="dark"]) h2,
:root:not([data-theme="dark"]) h3,
:root:not([data-theme="dark"]) h4,
:root:not([data-theme="dark"]) h5,
:root:not([data-theme="dark"]) h6 {
  color: var(--text)
}

/* Dark theme */
:root[data-theme="dark"] {
  --bg: #0b1220;
  /* dark bg */
  --bg-card: #0f172a;
  /* dark surface */
  --text: #e2e8f0;
  --muted: #a1a1aa;
  --border: #1f2937;
}

[data-theme="dark"] body {
  background: var(--bg);
  color: var(--text)
}

[data-theme="dark"] .navbar {
  background: #0b1220 !important;
  border-bottom: 1px solid var(--border)
}

[data-theme="dark"] .navbar-brand {
  color: var(--brand-2) !important
}

[data-theme="dark"] .nav-link {
  color: #cbd5e1 !important
}

[data-theme="dark"] .nav-link:hover {
  background: #111827;
  color: #fff !important
}

[data-theme="dark"] .btn-ghost {
  background: #0f172a;
  border: 1px solid var(--border);
  color: #e2e8f0
}

[data-theme="dark"] .btn-ghost:hover {
  background: #1e293b;
  color: #fff
}

[data-theme="dark"] .card {
  background: var(--bg-card);
  border-color: var(--border)
}

[data-theme="dark"] .feature-icon {
  box-shadow: none
}

[data-theme="dark"] .logo-row {
  color: #94a3b8
}

[data-theme="dark"] .scroll-indicator {
  color: #94a3b8
}

[data-theme="dark"] .scroll-indicator .chev {
  border-color: #94a3b8
}

/* Dark theme text + headings */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--text)
}

[data-theme="dark"] .text-dark {
  color: var(--text) !important
}

[data-theme="dark"] .text-muted {
  color: var(--muted) !important
}

/* Accordion animations */
.accordion-item {
  opacity: 0;
  animation: slideUp .5s ease forwards;
  transition: all .3s ease
}

.accordion-item:nth-child(1) {
  animation-delay: 0.1s
}

.accordion-item:nth-child(2) {
  animation-delay: 0.2s
}

.accordion-item:nth-child(3) {
  animation-delay: 0.3s
}

.accordion-item:nth-child(4) {
  animation-delay: 0.4s
}

.accordion-item:nth-child(5) {
  animation-delay: 0.5s
}

.accordion-button {
  transition: all .3s ease
}

.accordion-item:hover .accordion-button {
  transform: translateX(4px);
  color: var(--brand-2)
}

.accordion-collapse {
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1)
}

/* Dark theme bootstrap accordion overrides */
[data-theme="dark"] .accordion {
  --bs-accordion-bg: var(--bg-card);
  --bs-accordion-color: var(--text);
  --bs-accordion-border-color: var(--border);
  --bs-accordion-btn-color: var(--text);
  --bs-accordion-btn-bg: var(--bg-card);
  --bs-accordion-active-bg: rgba(99, 102, 241, .12);
  --bs-accordion-active-color: var(--text);
  --bs-accordion-btn-focus-border-color: var(--border);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(99, 102, 241, .25);
}

[data-theme="dark"] .accordion-item {
  background: var(--bg-card);
  border-color: var(--border)
}

[data-theme="dark"] .accordion-button {
  color: var(--text)
}

[data-theme="dark"] .accordion-body {
  color: var(--text)
}

/* Dark theme feature cards */
[data-theme="dark"] .feature-card h5 {
  color: var(--text)
}

[data-theme="dark"] .feature-card p {
  color: var(--muted)
}

[data-theme="dark"] .stats-section {
  background: var(--bg-card);
  border-color: var(--border)
}

[data-theme="dark"] .stat-label {
  color: var(--muted)
}

[data-theme="dark"] .step-card {
  background: var(--bg-card);
  border-color: var(--border)
}

[data-theme="dark"] .step-card h5 {
  color: var(--text)
}

[data-theme="dark"] .pricing-card {
  background: var(--bg-card);
  border-color: var(--border)
}

[data-theme="dark"] .pricing-card.featured {
  background: linear-gradient(180deg, var(--bg-card), var(--bg))
}

[data-theme="dark"] .pricing-header h5 {
  color: var(--text)
}

[data-theme="dark"] .pricing-features li {
  color: var(--text);
  border-color: var(--border)
}

[data-theme="dark"] .bg-light {
  background: var(--bg) !important
}

[data-theme="dark"] .cta-section .text-muted {
  color: rgba(255, 255, 255, .9) !important
}

/* Dark theme footer */
[data-theme="dark"] .footer {
  background: #0f172a;
  color: #cbd5e1;
  border-top-color: #1e293b
}

[data-theme="dark"] .footer h5,
[data-theme="dark"] .footer h6 {
  color: #fff
}

[data-theme="dark"] .footer a {
  color: #94a3b8
}

[data-theme="dark"] .footer a:hover {
  color: #e2e8f0
}

[data-theme="dark"] .footer .text-muted {
  color: #94a3b8 !important
}

[data-theme="dark"] .footer hr {
  border-color: #1e293b
}

/* Dark theme chips */
[data-theme="dark"] .chip {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0
}

[data-theme="dark"] .chip i {
  color: var(--brand-2)
}

/* Dark theme hero badge */
[data-theme="dark"] .hero-badge {
  background: #1e293bd9;
  border-color: var(--border);
  color: #e2e8f0
}

/* Dark theme navbar toggler */
[data-theme="dark"] .navbar-toggler {
  border-color: var(--border);
  color: #e2e8f0
}

[data-theme="dark"] .navbar-toggler-icon {
  filter: invert(1)
}

/* Phone Mockup Styles (CSS-only Frame) */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  perspective: 1000px;
  margin-top: -2rem;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: #1f2937;
  /* Frame color (dark gray/black) */
  border-radius: 55px;
  box-shadow:
    0 0 0 4px #374151,
    /* Outer dark rim */
    0 0 0 8px #1f2937,
    /* Main frame thickness */
    0 20px 40px rgba(0, 0, 0, 0.4);
  /* Drop shadow */
  transform: rotateY(-12deg) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  padding: 12px;
  /* Bezel thickness */
}

.phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  position: absolute;
  top: 12px;
  /* Match padding */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #000;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 30;
}

/* Speaker grill inside notch */
.phone-notch::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #333;
  border-radius: 4px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 44px;
  /* Slightly less than frame */
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.5rem 1.25rem 1.5rem;
  /* Top padding clears notch */
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  position: relative;
  z-index: 10;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

/* Dark Theme for Phone Mockup */
[data-theme="dark"] .phone-screen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="dark"] .profile-name {
  color: #f8fafc;
}

[data-theme="dark"] .profile-bio {
  color: #94a3b8;
}

[data-theme="dark"] .profile-link.custom-link {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}

[data-theme="dark"] .profile-link.custom-link:hover {
  border-color: #6366f1;
  background: #334155;
}

[data-theme="dark"] .profile-branding .text-dark {
  color: #e2e8f0 !important;
}

[data-theme="dark"] .profile-avatar {
  border-color: #1e293b;
}




.phone-screen::-webkit-scrollbar {
  display: none;
}

/* Profile Elements */
.profile-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.profile-name {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: #111827;
  letter-spacing: -0.02em;
}

.profile-bio {
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Mobile Responsiveness for Phone Mockup */
@media (max-width: 991px) {
  .phone-mockup-wrapper {
    margin-top: 3rem;
    margin-bottom: 2rem;
    transform: none;
    perspective: none;
  }

  .phone-mockup {
    transform: none;
    width: 280px;
    height: 560px;
    margin: 0 auto;
  }

  .phone-mockup:hover {
    transform: none;
  }
}

@media (max-width: 576px) {
  .phone-mockup {
    width: 260px;
    height: 520px;
    border-radius: 45px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .phone-screen {
    border-radius: 35px;
    padding-top: 3rem;
  }

  .phone-notch {
    width: 80px;
    height: 20px;
  }

  .profile-avatar {
    width: 72px;
    height: 72px;
  }

  .profile-name {
    font-size: 1.1rem;
  }

  .hero-section {
    overflow: hidden;
    /* Prevent horizontal scroll */
  }
}

.profile-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.profile-link.custom-link {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center content */
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
  overflow: hidden;
}

.profile-link.custom-link:hover {
  transform: scale(1.02) translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.2);
}

.profile-link.custom-link i {
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.profile-branding {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.8;
}

/* Responsiveness for Mockup */
@media (max-width: 991px) {
  .phone-mockup-wrapper {
    margin-top: 2rem;
    transform: none;
  }

  .phone-mockup {
    transform: none;
    width: 250px;
    height: 500px;
  }
}