/* MazicMinds – Light Theme Stylesheet
   Brand Colors from Logo:
   Navy Blue: #1a237e | Red: #DD0000 | White: #ffffff
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a237e;
  --primary-light: #283593;
  --primary-xlight: #e8eaf6;
  --primary-hover: #0d1757;
  --accent: #DD0000;
  --accent-light: #ff3333;
  --accent-xlight: #fff0f0;
  --white: #ffffff;
  --light: #f8faff;
  --light-2: #eef1fb;
  --light-3: #f0f4ff;
  --border: #dde3f3;
  --border-light: #eef0fa;
  --text-dark: #0f1c5e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --card-bg: #ffffff;
  --gradient: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  --gradient-red: linear-gradient(135deg, #DD0000 0%, #ff5252 100%);
  --gradient-herotext: linear-gradient(135deg, #1a237e 0%, #DD0000 100%);
  --shadow: 0 4px 20px rgba(26, 35, 126, 0.10);
  --shadow-md: 0 8px 32px rgba(26, 35, 126, 0.14);
  --shadow-lg: 0 20px 60px rgba(26, 35, 126, 0.16);
  --shadow-card: 0 2px 12px rgba(26, 35, 126, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-dark)
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #f0f4ff
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px
}

/* Utilities */
.section-py {
  padding: 90px 0
}

.gradient-text {
  background: var(--gradient-herotext);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.gradient-text-red {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-xlight);
  border: 1px solid rgba(26, 35, 126, 0.15);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark)
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.75
}

/* Buttons */
.btn-primary-custom {
  background: var(--gradient);
  border: none;
  color: var(--white);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(26, 35, 126, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26, 35, 126, 0.4);
  color: var(--white)
}

.btn-accent-custom {
  background: var(--gradient-red);
  border: none;
  color: var(--white);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(221, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-accent-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(221, 0, 0, 0.4);
  color: var(--white)
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 11px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 11px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px)
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease
}

.preloader-inner {
  text-align: center
}

.preloader-img {
  width: 160px;
  animation: pulse 1.2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .7;
    transform: scale(.95)
  }
}

/* Navbar */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 16px rgba(26, 35, 126, 0.07);
  transition: var(--transition)
}

.navbar-custom.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.12)
}

.navbar-logo {
  height: 54px;
  width: auto;
  object-fit: contain
}

.nav-link-custom {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: .88rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: var(--transition)
}

.nav-link-custom:hover {
  color: var(--primary) !important;
  background: var(--primary-xlight)
}

.nav-link-custom.active {
  color: var(--primary) !important;
  background: var(--primary-xlight);
  font-weight: 600
}

.navbar-toggler-custom {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
  transition: var(--transition)
}

.navbar-toggler-custom:hover {
  background: var(--primary-xlight)
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 45%, #fff5f5 100%)
}

.hero-blob-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 35, 126, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.hero-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(221, 0, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 35, 126, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .7
}

.hero-content {
  position: relative;
  z-index: 2
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-xlight);
  border: 1px solid rgba(26, 35, 126, 0.18);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInDown .8s ease
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text-dark);
  animation: fadeInUp .9s ease .1s both
}

.hero-title .red {
  color: var(--accent)
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp .9s ease .2s both
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp .9s ease .3s both
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeInUp .9s ease .4s both
}

.hero-stat-item .number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1
}

.hero-stat-item .number .red {
  color: var(--accent)
}

.hero-stat-item .label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px
}

/* Hero dashboard mockup */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease .2s both
}

.hero-dashboard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--gradient);
  border-radius: 0 0 4px 4px
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light)
}

.dash-dots {
  display: flex;
  gap: 6px
}

.dash-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block
}

.dash-dots span:nth-child(1) {
  background: #ff5f57
}

.dash-dots span:nth-child(2) {
  background: #FFBD2E
}

.dash-dots span:nth-child(3) {
  background: #28CA41
}

.dash-title {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500
}

.dash-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px
}

.dash-card {
  background: var(--light-3);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px;
  transition: var(--transition)
}

.dash-card:hover {
  border-color: var(--primary);
  background: var(--primary-xlight)
}

.dash-card .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  margin-bottom: 7px
}

.dash-card .value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark)
}

.dash-card .lbl {
  font-size: .68rem;
  color: var(--text-muted)
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 54px;
  margin-top: 10px
}

.mini-chart .bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--primary);
  opacity: .25;
  animation: growBar 1.5s ease both;
  transform-origin: bottom
}

.mini-chart .bar:nth-child(2) {
  opacity: .4;
  animation-delay: .1s
}

.mini-chart .bar:nth-child(3) {
  opacity: .55;
  animation-delay: .2s
}

.mini-chart .bar:nth-child(4) {
  opacity: .45;
  animation-delay: .3s
}

.mini-chart .bar:nth-child(5) {
  opacity: .85;
  animation-delay: .4s;
  background: var(--accent)
}

.mini-chart .bar:nth-child(6) {
  opacity: .5;
  animation-delay: .5s
}

@keyframes growBar {
  from {
    transform: scaleY(0)
  }

  to {
    transform: scaleY(1)
  }
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite
}

.float-card.top-left {
  top: -18px;
  left: -28px
}

.float-card.bottom-right {
  bottom: 28px;
  right: -28px;
  animation-delay: 1.5s
}

.float-card .fc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem
}

.float-card .fc-label {
  font-size: .65rem;
  color: var(--text-muted);
  font-weight: 500
}

.float-card .fc-value {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark)
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

/* Stats Strip */
#stats {
  background: var(--primary);
  padding: 48px 0
}

.stat-card {
  text-align: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15)
}

.stat-card:last-child {
  border-right: none
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1
}

.stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px
}

/* Features */
#features {
  background: var(--light)
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: var(--shadow-card)
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius) var(--radius) 0 0
}

.feature-card:hover {
  border-color: rgba(26, 35, 126, 0.25);
  transform: translateY(-7px);
  box-shadow: var(--shadow-md)
}

.feature-card:hover::before {
  opacity: 1;
  background: var(--gradient)
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px
}

.feature-card h5 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text-dark)
}

.feature-card p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0
}

.feature-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .75rem;
  transition: var(--transition);
  opacity: 0
}

.feature-card:hover .feature-arrow {
  opacity: 1;
  background: var(--primary);
  color: var(--white)
}

/* Color icon helpers */
.bg-navy {
  background: rgba(26, 35, 126, 0.1)
}

.bg-red {
  background: rgba(221, 0, 0, 0.1)
}

.bg-blue {
  background: rgba(21, 101, 192, 0.1)
}

.bg-green {
  background: rgba(27, 94, 32, 0.1)
}

.bg-orange {
  background: rgba(230, 81, 0, 0.1)
}

.bg-teal {
  background: rgba(0, 96, 100, 0.1)
}

.bg-purple {
  background: rgba(74, 20, 140, 0.1)
}

.bg-pink {
  background: rgba(136, 14, 79, 0.1)
}

.bg-cyan {
  background: rgba(0, 96, 100, 0.1)
}

.bg-indigo {
  background: rgba(26, 35, 126, 0.12)
}

.text-navy {
  color: var(--primary)
}

.text-red-c {
  color: var(--accent)
}

.text-blue-c {
  color: #1565C0
}

.text-green-c {
  color: #1B5E20
}

.text-orange-c {
  color: #E65100
}

.text-teal-c {
  color: #006064
}

.text-purple-c {
  color: #4A148C
}

.text-pink-c {
  color: #880E4F
}

.text-cyan-c {
  color: #006064
}

/* Why */
#why {
  background: var(--white)
}

.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start
}

.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--primary-xlight);
  border: 1px solid rgba(26, 35, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem
}

.why-item h6 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-dark)
}

.why-item p {
  font-size: .83rem;
  color: var(--text-muted);
  margin: 0
}

.why-big-card {
  background: var(--light-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow)
}

/* Pricing */
#pricing {
  background: var(--light)
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px
}

.pricing-toggle-wrap span {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-muted)
}

.pricing-toggle-wrap span.active-billing {
  color: var(--primary);
  font-weight: 700
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--primary);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: var(--transition)
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition)
}

.toggle-switch.yearly::after {
  left: 27px
}

.save-badge {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #15803d;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 600
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card)
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03)
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition)
}

.pricing-card.featured::before {
  opacity: 1
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px)
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gradient);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px
}

.plan-name {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px
}

.plan-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px
}

.plan-price sup {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super
}

.plan-price .period {
  font-size: .87rem;
  font-weight: 400;
  color: var(--text-muted)
}

.plan-desc {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 20px 0
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--text-body);
  margin-bottom: 10px
}

.plan-feature .check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: .68rem
}

.plan-feature .cross {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: circle;
  color: #ef4444;
  font-size: .68rem
}

.plan-feature.disabled {
  opacity: .45
}

/* Mobile Apps */
#mobile-apps {
  background: linear-gradient(135deg, #f0f4ff 0%, #fff5f5 100%);
  overflow: hidden;
  position: relative
}

.app-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px
}

.app-phone {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 32px;
  width: 185px;
  padding: 14px 11px;
  box-shadow: var(--shadow-lg)
}

.app-phone:first-child {
  transform: rotate(-6deg) translateY(20px);
  animation: float 4s ease-in-out infinite
}

.app-phone:last-child {
  transform: rotate(4deg) translateY(-10px);
  animation: float 4s ease-in-out infinite reverse;
  animation-delay: 2s
}

.phone-notch {
  width: 65px;
  height: 11px;
  background: var(--text-dark);
  border-radius: 10px;
  margin: 0 auto 11px;
  opacity: .1
}

.phone-screen {
  background: linear-gradient(160deg, #eef1fb, #f8faff);
  border-radius: 20px;
  padding: 11px;
  min-height: 270px;
  border: 1px solid var(--border-light)
}

.phone-header {
  font-size: .58rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 9px
}

.phone-stat {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 7px;
  margin-bottom: 5px;
  box-shadow: 0 1px 4px rgba(26, 35, 126, 0.05)
}

.phone-stat .ps-label {
  font-size: .48rem;
  color: var(--text-muted)
}

.phone-stat .ps-value {
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-dark)
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 12px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card)
}

.app-badge:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
  transform: translateX(4px)
}

.app-badge i {
  font-size: 1.35rem;
  color: var(--text-muted)
}

.app-badge .ab-label {
  font-size: .62rem;
  color: var(--text-muted)
}

.app-badge .ab-text {
  font-size: .83rem;
  font-weight: 700;
  color: var(--text-dark)
}

/* Integrations */
#integrations {
  background: var(--white)
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 20px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
  margin: 5px;
  color: var(--text-body);
  box-shadow: var(--shadow-card)
}

.integration-chip:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.integration-chip i {
  font-size: 1.3rem
}

/* Testimonials */
#testimonials {
  background: var(--light)
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card)
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: .12;
  line-height: 1
}

.testimonial-card:hover {
  border-color: rgba(26, 35, 126, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.stars {
  color: #f59e0b;
  font-size: .82rem;
  margin-bottom: 14px
}

.t-text {
  font-size: .87rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
  background: var(--primary-xlight);
  color: var(--primary);
  border: 2px solid rgba(26, 35, 126, 0.15)
}

.t-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-dark)
}

.t-role {
  font-size: .73rem;
  color: var(--text-muted)
}

/* CTA */
#cta {
  background: var(--gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px
}

#cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px
}

#cta p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.02rem;
  margin-bottom: 32px
}

/* Footer */
footer {
  background: var(--text-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 65px 0 28px
}

.footer-brand {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(10);
  margin-bottom: 14px
}

.footer-desc {
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 22px
}

.social-links {
  display: flex;
  gap: 9px
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: .88rem;
  transition: var(--transition)
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px)
}

.footer-heading {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-links li {
  margin-bottom: 9px
}

.footer-links a {
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px)
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 38px 0 22px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.4)
}

.footer-legal {
  display: flex;
  gap: 18px
}

.footer-legal a {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition)
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8)
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px
}

.footer-contact-item i {
  color: rgba(255, 255, 255, 0.7);
  font-size: .88rem;
  width: 16px
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.55rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .45);
  transition: var(--transition);
  cursor: pointer;
  animation: waBounce 2.5s ease-in-out infinite
}

.whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .6);
  color: var(--white)
}

@keyframes waBounce {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.07)
  }
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 66px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 13px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow)
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0)
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 95px;
  right: 26px;
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: var(--white);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 35, 126, .35);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px)
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0)
}

#backToTop:hover {
  background: var(--accent);
  transform: translateY(-3px)
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(36px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0)
}

/* Responsive */
@media(max-width:992px) {
  .pricing-card.featured {
    transform: none
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px)
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12)
  }

  .stat-card:last-child {
    border-bottom: none
  }
}

@media(max-width:768px) {
  .section-py {
    padding: 65px 0
  }

  .hero-title {
    font-size: 2.2rem
  }

  .hero-stats {
    gap: 22px
  }

  .hero-btns {
    flex-direction: column
  }

  .float-card {
    display: none
  }

  .app-phone {
    width: 140px
  }
}

@media(max-width:576px) {
  .navbar-logo {
    height: 42px
  }

  .pricing-card {
    padding: 28px 20px
  }

  .testimonial-card {
    padding: 26px 20px
  }
}