/* ================================================
   Move by Mapkot — Modern UI Stylesheet
   ================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #9B1FBB;
  --primary-dark: #6D0F85;
  --primary-light: #F3E8FF;
  --accent: #C084FC;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --bg: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

p { color: var(--text-secondary); line-height: 1.7; margin: 0; }
a { text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

/* ================================================
   NAVBAR
   ================================================ */

#mainNav {
  padding: 16px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
}

#mainNav .navbar-brand img {
  border-radius: 8px;
}

#mainNav .navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

#mainNav .navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(155, 31, 187, 0.35);
  letter-spacing: 0.2px;
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(155, 31, 187, 0.45);
  color: #fff !important;
}

.btn-lg-custom {
  padding: 14px 30px;
  font-size: 1rem;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ================================================
   SECTION SHARED
   ================================================ */

.section-header {
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero-section {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(145deg, #1A0030 0%, #420060 35%, #7A1FA0 65%, #AB26AA 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,132,252,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content { padding-bottom: 24px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 22px;
}

.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(90deg, #F9A8D4, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section > .container > .row > .col-lg-6 > .hero-content > p,
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  max-height: 500px;
  width: auto;
  position: relative;
  z-index: 1;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  min-width: 190px;
  z-index: 2;
}

.hero-card-1 {
  bottom: 80px;
  left: -10px;
  animation: floatCard1 4s ease-in-out infinite;
}

.hero-card-2 {
  top: 80px;
  right: -10px;
  animation: floatCard2 4s ease-in-out infinite 2s;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-card .card-icon { font-size: 1.5rem; line-height: 1; }

.hero-card .card-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero-card .card-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ================================================
   TRUST BAR
   ================================================ */

.trust-bar {
  background: var(--bg-subtle);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
}

/* ================================================
   VALUE PROPS
   ================================================ */

.value-props {
  padding: 90px 0;
  background: var(--bg-subtle);
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  height: 100%;
  transition: all 0.3s;
  margin-bottom: 24px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ================================================
   HOW IT WORKS
   ================================================ */

.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}

.steps { padding: 10px 0; }

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step:last-child { margin-bottom: 0; }

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(155, 31, 187, 0.3);
}

.step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

.how-image {
  padding: 24px;
  background: linear-gradient(135deg, var(--primary-light), #EDE9FE);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ================================================
   FEATURES SECTION
   ================================================ */

.features-section {
  padding: 100px 0;
  background: var(--bg-subtle);
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  height: 100%;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.feature-icon-wrap.purple { background: #F3E8FF; }
.feature-icon-wrap.blue   { background: #EFF6FF; }
.feature-icon-wrap.green  { background: #F0FDF4; }
.feature-icon-wrap.orange { background: #FFF7ED; }

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ================================================
   PRICING SECTION
   ================================================ */

.pricing-section {
  padding: 100px 0;
  background: var(--bg);
}

.pricing-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  margin-bottom: 30px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(155,31,187,0.12);
  transform: translateY(-4px);
}

.pricing-featured {
  background: linear-gradient(155deg, #2D0050 0%, #6B0F9E 60%, #9B1FBB 100%);
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(107,15,158,0.4);
}

.pricing-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 28px 72px rgba(107,15,158,0.5);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F9A8D4, #C084FC);
  color: #1A0030;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 24px; }

.plan-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.pricing-featured .plan-name {
  color: rgba(255,255,255,0.6);
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  align-self: flex-start;
  margin-top: 8px;
}

.price-amount {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -3px;
}

.price-period {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1;
  margin-left: 4px;
  max-width: 80px;
}

.pricing-featured .price-currency,
.pricing-featured .price-amount { color: #fff; }

.pricing-featured .price-period { color: rgba(255,255,255,0.45); }

.plan-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.pricing-featured .plan-desc { color: rgba(255,255,255,0.6); }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.pricing-featured .pricing-divider { background: rgba(255,255,255,0.12); }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-featured .pricing-features li {
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(255,255,255,0.1);
}

.feature-unavailable { opacity: 0.35; }

.fi-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #DCFCE7;
  color: #15803D;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.fi-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--bg-subtle);
  color: var(--text-muted);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.pricing-featured .fi-check {
  background: rgba(110,231,183,0.2);
  color: #6EE7B7;
}

.pricing-featured .fi-cross {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.25);
}

.btn-outline-plan {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.25s;
  margin-top: auto;
}

.btn-outline-plan:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(155,31,187,0.3);
}

.btn-primary-plan {
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: all 0.25s;
  margin-top: auto;
}

.btn-primary-plan:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.pricing-note {
  margin-top: 48px;
  padding: 22px 32px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ================================================
   CUSTOM SOLUTIONS SECTION
   ================================================ */

.custom-solutions-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #0F0020 0%, #2D0050 50%, #1A0030 100%);
  position: relative;
  overflow: hidden;
}

.custom-solutions-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155,31,187,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.custom-solutions-box {
  position: relative;
  z-index: 1;
}

.custom-solutions-section .section-badge {
  background: rgba(243,232,255,0.1);
  color: #C084FC;
  border: 1px solid rgba(192,132,252,0.25);
}

.custom-solutions-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 16px 0 16px;
}

.custom-solutions-section > .container > .custom-solutions-box > .row > .col-lg-7 > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.custom-solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-solutions-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cs-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(155,31,187,0.25);
  border: 1px solid rgba(192,132,252,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.custom-solutions-list li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.custom-solutions-list li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.custom-solutions-cta {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs-cta-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.custom-solutions-cta h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.custom-solutions-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cs-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

/* Custom plan row inside pricing */

.pricing-custom-row {
  margin-top: 40px;
}

.pricing-custom-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  flex-wrap: wrap;
}

.pcc-left {
  flex: 1 1 260px;
}

.pcc-left .plan-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 10px;
}

.pcc-left p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.pcc-features {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcc-features span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.pricing-custom-card > .btn-primary-custom {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .custom-solutions-cta {
    margin-top: 40px;
  }

  .custom-solutions-section h2 {
    font-size: 1.75rem;
  }

  .pricing-custom-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .pricing-custom-card > .btn-primary-custom {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
  padding: 80px 0;
  background: var(--bg-subtle);
}

.cta-box {
  background: linear-gradient(145deg, #1A0030 0%, #420060 40%, #9B1FBB 100%);
  padding: 80px 48px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
  background: #0A0015;
  padding: 64px 0 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand img { border-radius: 8px; }

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal li a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-legal li a:hover { color: #fff; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  display: block;
}

.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 11px; }

.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-social img {
  width: 16px;
  height: 16px;
  filter: brightness(10) saturate(0);
  object-fit: contain;
}

/* ================================================
   BACK TO TOP
   ================================================ */

#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(155,31,187,0.4);
  transition: all 0.3s;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

#back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: #fff;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-section h1 { font-size: 2.4rem; }
  .hero-card { display: none; }

  .hero-image {
    margin-top: 48px;
    padding: 16px;
  }

  .how-image { margin-top: 48px; }

  .pricing-featured {
    transform: none;
    box-shadow: 0 16px 40px rgba(107,15,158,0.3);
  }

  .pricing-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .section-header h2 { font-size: 1.85rem; }

  .hero-stats {
    gap: 16px;
    padding: 16px 20px;
  }

  .stat-divider { display: none; }

  .cta-box {
    padding: 48px 24px;
  }

  .cta-box h2 {
    font-size: 1.75rem;
  }

  .navbar-collapse {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    border: 1px solid var(--border);
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg-custom {
    text-align: center;
    width: 100%;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-around;
  }
}
