/* ===== TrovinaCare Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@700;800&display=swap');

:root {
  --primary: #6457F2;
  --primary-dark: #4f43d4;
  --primary-light: #8b80f5;
  --primary-xlight: #f0eeff;
  --white: #ffffff;
  --gray-50: #F8F9FA;
  --gray-100: #e9ecef;
  --gray-600: #6c757d;
  --dark: #0d0c1d;
  --text: #212529;
  --shadow-sm: 0 2px 12px rgba(100, 87, 242, 0.08);
  --shadow-md: 0 8px 32px rgba(100, 87, 242, 0.15);
  --shadow-lg: 0 20px 60px rgba(100, 87, 242, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(100,87,242,0.08);
  padding: 14px 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(100,87,242,0.1);
}

.navbar-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--dark);
}

.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-xs);
  transition: all 0.2s;
  font-size: 0.92rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-xlight);
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(100,87,242,0.35);
  letter-spacing: 0.01em;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(100,87,242,0.45);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(100,87,242,0.3);
}

.btn-white-custom {
  background: white;
  color: var(--primary);
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #0d0c1d 0%, #1a1740 50%, #0d0c1d 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100,87,242,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,87,242,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,87,242,0.2);
  border: 1px solid rgba(100,87,242,0.4);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #a59af5, #6457F2, #8b80f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(100,87,242,0.3);
  border: 1px solid rgba(100,87,242,0.2);
}

.hero-card-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero-card-float.card-left {
  left: -30px;
  bottom: 100px;
  animation-delay: 0.5s;
}

.hero-card-float.card-top {
  right: -20px;
  top: 60px;
  animation-delay: 1s;
}

.hero-card-float .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}

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

/* ===== TRUSTED SECTION ===== */
.trusted-section {
  padding: 50px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-600);
  opacity: 0.6;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.trusted-logo:hover { opacity: 1; }

/* ===== SECTION STYLES ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-xlight);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(100,87,242,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

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

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--gray-50);
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(100,87,242,0.4);
}

.step-connector {
  position: absolute;
  top: 72px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.3;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(100,87,242,0.15);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-xlight);
}

.author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.2;
}

.author-info .role {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ===== PRICING ===== */
.pricing-card {
  background: white;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--dark) 0%, #1a1740 100%);
  color: white;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.pricing-card:not(.featured):hover {
  border-color: rgba(100,87,242,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-plan-name {
  color: var(--primary-light);
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.pricing-period {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 24px;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-feature-list li {
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.featured .pricing-feature-list li {
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.pricing-feature-list li .check {
  color: #4ade80;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1740 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100,87,242,0.2) 0%, transparent 70%);
}

/* ===== SECURITY BADGES ===== */
.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-xlight);
  border: 1px solid rgba(100,87,242,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.security-badge i {
  font-size: 1.1rem;
  color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-brand span { color: var(--primary-light); }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.7;
}

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--primary);
  color: white;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1740 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(100,87,242,0.25) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
}

/* ===== API DOCS ===== */
.api-sidebar {
  position: sticky;
  top: 80px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
}

.api-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.api-sidebar a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  margin-bottom: 2px;
}

.api-sidebar a:hover, .api-sidebar a.active {
  background: var(--primary-xlight);
  color: var(--primary);
}

.code-block {
  background: #0d0c1d;
  border-radius: var(--radius-sm);
  padding: 24px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  overflow-x: auto;
  border: 1px solid rgba(100,87,242,0.2);
  position: relative;
  margin: 16px 0;
}

.code-block .method {
  color: #4ade80;
  font-weight: bold;
}

.code-block .endpoint {
  color: #a59af5;
}

.code-block .key { color: #f472b6; }
.code-block .value { color: #34d399; }
.code-block .string { color: #fbbf24; }
.code-block .comment { color: rgba(255,255,255,0.35); }

.endpoint-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.method-badge {
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.method-badge.post { background: rgba(74,222,128,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.method-badge.get { background: rgba(96,165,250,0.15); color: #60a5fa; border: 1px solid rgba(96,165,250,0.3); }
.method-badge.put { background: rgba(251,191,36,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.method-badge.delete { background: rgba(248,113,113,0.15); color: #f87171; border: 1px solid rgba(248,113,113,0.3); }

.api-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-xlight);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.comparison-table thead {
  background: var(--dark);
  color: white;
}

.comparison-table thead th {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.9rem;
}

.comparison-table tbody tr:nth-child(even) { background: var(--gray-50); }

.comparison-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}

.check-green { color: #4ade80; font-size: 1rem; }
.check-gray { color: var(--gray-100); font-size: 1rem; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: rgba(100,87,242,0.2);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  user-select: none;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  display: none;
}

.faq-answer.open { display: block; }

/* ===== CONTACT ===== */
.contact-info-card {
  background: linear-gradient(135deg, var(--dark), #1a1740);
  color: white;
  border-radius: var(--radius);
  padding: 48px 40px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(100,87,242,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.form-control, .form-select {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100,87,242,0.1);
}

.form-label {
  font-weight: 600;
  font-size: 0.87rem;
  margin-bottom: 6px;
  color: var(--dark);
}

/* ===== VALUE CARDS ===== */
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(100,87,242,0.15);
  transform: translateY(-4px);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-xlight), rgba(100,87,242,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
}

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-xlight), transparent);
  margin: 0;
}

/* ===== TOGGLE PRICING ===== */
.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.save-badge {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  background: linear-gradient(135deg, var(--primary-xlight), rgba(100,87,242,0.05));
  border: 2px dashed rgba(100,87,242,0.2);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-card-float { display: none; }
  .pricing-card.featured { transform: scale(1); }
  .step-connector { display: none; }
  .api-sidebar { position: static; }
}

@media (max-width: 767px) {
  .hero-stats { gap: 24px; }
  .trusted-logos { gap: 24px; }
}
