:root {
  --primary: #0b1a33;
  --primary-mid: #122a52;
  --primary-light: #1a3a6b;
  --accent: #1d4ed8;
  --accent-hover: #1e40af;
  --accent-soft: #dbeafe;
  --accent-glow: rgba(29,78,216,0.15);
  --white: #ffffff;
  --off-white: #f8f9fb;
  --border: #e2e6ed;
  --border-light: #eef1f6;
  --text: #2d3748;
  --text-light: #5a6577;
  --text-muted: #8892a4;
  --gradient-hero: linear-gradient(135deg, #060e1f 0%, #0b1a33 40%, #132d5e 100%);
  --gradient-accent: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  --gradient-card: linear-gradient(135deg, #1d4ed8 0%, #6366f1 100%);
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--primary); }
h1 { font-size: 2.25rem; letter-spacing: -0.5px; }
h2 { font-size: 1.6rem; letter-spacing: -0.3px; }
h3 { font-size: 1.1rem; }
p { color: var(--text-light); }

@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
}

a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }

section { padding: 60px 0; }
@media (max-width: 768px) { section { padding: 40px 0; } }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin-bottom: 8px; }
.section-header p { max-width: 540px; margin: 0 auto; font-size: 0.95rem; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,230,237,0.7);
  padding: 0;
  z-index: 1050;
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.navbar .container { height: 60px; display: flex; align-items: center; }
.navbar-brand { font-weight: 700; font-size: 1.25rem; color: var(--primary) !important; letter-spacing: -0.5px; }
.navbar-brand span { color: var(--accent); }

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent) !important; background: var(--accent-soft); }
.navbar-toggler { border: 1px solid var(--border); padding: 4px 8px; border-radius: 6px; }
.navbar-toggler:focus { box-shadow: none; }

.dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 6px;
  margin-top: 4px;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
}
.dropdown-item { border-radius: 6px; padding: 8px 12px; transition: var(--transition); }
.dropdown-item:hover { background: var(--accent-soft); color: var(--accent); }

.nav-cta {
  background: var(--gradient-accent) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 7px 18px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  border: none !important;
}
.nav-cta:hover { opacity: 0.9; color: var(--white) !important; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary-custom:hover { box-shadow: 0 4px 16px var(--accent-glow); color: var(--white); transform: translateY(-1px); }

.btn-outline-custom {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
.btn-outline-custom:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-secondary-custom {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary-custom:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-xs); }

/* ===== HERO ===== */
.hero {
  background: var(--gradient-hero);
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: 30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero .overline {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero .overline::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gradient-accent);
  display: inline-block;
}

.hero h1 { color: var(--white); font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.hero h1 span {
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 480px; margin-bottom: 28px; line-height: 1.65; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 40px;
}
.hero-metric {
  padding: 16px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-metric:first-child { padding-left: 0; }
.hero-metric:last-child { border-right: none; }
.hero-metric h4 { color: var(--white); font-size: 1.5rem; font-weight: 700; margin-bottom: 2px; }
.hero-metric p { color: rgba(255,255,255,0.45); font-size: 0.75rem; margin: 0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-visual-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero-visual-card .bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 12px;
}
.hero-visual-card .bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .hero { padding: 96px 0 48px; text-align: center; }
  .hero h1 { font-size: 1.8rem; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero .overline { justify-content: center; }
  .hero-metrics { flex-wrap: wrap; justify-content: center; }
  .hero-metric { padding: 10px 16px; }
  .hero-metric h4 { font-size: 1.2rem; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 104px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,78,216,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); font-size: 2rem; position: relative; z-index: 2; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 520px; position: relative; z-index: 2; }
.page-hero .breadcrumb { position: relative; z-index: 2; margin-bottom: 10px; font-size: 0.82rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }

@media (max-width: 768px) {
  .page-hero { padding: 92px 0 32px; }
  .page-hero h1 { font-size: 1.5rem; }
}

/* ===== CARDS ===== */
.card-custom {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.card-custom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 10px 10px 0 0;
  opacity: 0;
  transition: var(--transition);
}
.card-custom:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-md); }
.card-custom:hover::before { opacity: 1; }

.card-icon {
  width: 42px; height: 42px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--accent);
  transition: var(--transition);
}
.card-custom:hover .card-icon { background: var(--gradient-accent); color: var(--white); }
.card-custom h3 { margin-bottom: 6px; font-size: 1rem; }
.card-custom p { font-size: 0.875rem; margin-bottom: 0; line-height: 1.55; }

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.feature-card:hover::after { transform: scaleX(1); }

.feature-card .icon-wrap {
  width: 44px; height: 44px;
  background: var(--gradient-card);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 4px 12px var(--accent-glow);
}
.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.875rem; line-height: 1.55; margin-bottom: 0; }

/* ===== STATS ===== */
.stats-section {
  background: var(--gradient-hero);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; padding: 12px 8px; position: relative; z-index: 2; }
.stat-item h2 { color: var(--white); font-size: 2.2rem; font-weight: 700; margin-bottom: 2px; }
.stat-item p { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
@media (max-width: 768px) { .stat-item h2 { font-size: 1.5rem; } }

/* ===== FORM ===== */
.form-section { background: var(--off-white); }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-label { font-weight: 600; color: var(--primary); margin-bottom: 4px; font-size: 0.85rem; }
textarea.form-control { min-height: 100px; resize: vertical; }

.form-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  margin-top: 12px;
}
.form-alert.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-alert.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ===== CTA ===== */
.cta-section {
  background: var(--gradient-hero);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; position: relative; z-index: 2; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 480px; margin: 0 auto 24px; position: relative; z-index: 2; }
.cta-section .btn-primary-custom { background: var(--white); color: var(--primary); position: relative; z-index: 2; }
.cta-section .btn-primary-custom:hover { background: var(--off-white); box-shadow: var(--shadow-md); }

/* ===== PROCESS ===== */
.process-step { text-align: center; padding: 16px 12px; position: relative; }
.step-number {
  width: 44px; height: 44px;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px var(--accent-glow);
}
.process-step h3 { margin-bottom: 6px; font-size: 1rem; }
.process-step p { font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 3rem;
  color: var(--accent-soft);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card .stars { color: #f59e0b; margin-bottom: 10px; font-size: 0.8rem; letter-spacing: 1px; }
.testimonial-card blockquote { font-style: italic; color: var(--text-light); margin-bottom: 16px; font-size: 0.9rem; line-height: 1.65; }
.testimonial-card .author { display: flex; align-items: center; gap: 10px; }
.testimonial-card .author-avatar {
  width: 36px; height: 36px;
  background: var(--gradient-accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: 0.78rem;
}
.testimonial-card .author-info h5 { font-size: 0.85rem; margin-bottom: 0; }
.testimonial-card .author-info p { font-size: 0.78rem; margin: 0; }

/* ===== FAQ ===== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 10px !important;
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:has(.accordion-button:not(.collapsed)) { border-color: var(--accent-soft); box-shadow: var(--shadow-xs); }
.accordion-button { font-weight: 600; color: var(--primary); padding: 16px 20px; font-size: 0.95rem; background: var(--white); }
.accordion-button:not(.collapsed) { background: var(--white); color: var(--accent); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { background-size: 0.85rem; }
.accordion-body { padding: 4px 20px 16px; color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTENT ===== */
.content-section { padding: 60px 0; }
.content-section:nth-child(even) { background: var(--off-white); }
.content-section h2 { margin-bottom: 14px; }
.content-section p { margin-bottom: 12px; font-size: 0.95rem; }
.content-section ul { list-style: none; padding: 0; }
.content-section ul li { padding: 5px 0 5px 24px; position: relative; color: var(--text-light); font-size: 0.9rem; }
.content-section ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--accent); font-size: 0.8rem;
}

/* ===== INFO BOX ===== */
.info-box {
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(219,234,254,0.5) 100%);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 16px 0;
}
.info-box h4 { font-size: 0.95rem; margin-bottom: 4px; }
.info-box p { margin: 0; font-size: 0.875rem; }

/* ===== BLOG ===== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent-soft); transform: translateY(-2px); }
.blog-card-img {
  height: 160px;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(11,26,51,0.3));
}
.blog-card-body { padding: 18px; }
.blog-card-body .badge-custom {
  background: var(--accent-soft); color: var(--accent);
  padding: 3px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 600;
  display: inline-block; margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 0.95rem; margin-bottom: 6px; }
.blog-card-body h3 a { color: var(--primary); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 0.825rem; margin-bottom: 10px; line-height: 1.5; }
.blog-card-body .meta { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-sm); }
.contact-info-card i { font-size: 1.4rem; color: var(--accent); margin-bottom: 10px; display: block; }
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.875rem; }

/* ===== TABLE ===== */
.table-custom { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.table-custom thead { background: var(--gradient-hero); color: var(--white); }
.table-custom thead th { padding: 12px 16px; font-weight: 600; font-size: 0.875rem; border: none; }
.table-custom tbody td { padding: 10px 16px; border-bottom: 1px solid var(--border-light); font-size: 0.875rem; color: var(--text-light); }
.table-custom tbody tr:hover { background: var(--off-white); }

/* ===== PRICING ===== */
.pricing-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.pricing-card.featured { border-color: var(--accent); border-width: 2px; position: relative; }
.pricing-card.featured::before {
  content: 'Popüler'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-accent); color: var(--white); padding: 2px 14px; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card h3 { margin-bottom: 4px; }
.pricing-card .price { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 14px 0; }
.pricing-card .price span { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.pricing-card ul { list-style: none; padding: 0; text-align: left; margin-bottom: 20px; }
.pricing-card ul li {
  padding: 7px 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px; color: var(--text-light); font-size: 0.85rem;
}
.pricing-card ul li i { color: #10b981; font-size: 0.8rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 44px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
footer .container { position: relative; z-index: 2; }
footer h5 { color: var(--white); font-size: 0.85rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 6px; }
footer ul li a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
footer ul li a:hover { color: var(--white); padding-left: 3px; }
footer p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

.footer-brand { font-size: 1.2rem; font-weight: 700; color: var(--white) !important; margin-bottom: 10px; display: inline-block; }
.footer-brand span { color: #60a5fa; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 0; margin-top: 28px; }
.footer-bottom p { margin: 0; font-size: 0.78rem; }

.social-links { display: flex; gap: 6px; }
.social-links a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ===== UTILITIES ===== */
.counter-number { display: inline-block; }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 38px; height: 38px;
  background: var(--gradient-accent);
  color: var(--white); border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition); z-index: 1000;
  box-shadow: 0 2px 8px var(--accent-glow);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 4px 14px var(--accent-glow); }

.fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.check-list { list-style: none; padding: 0; }
.check-list li { padding: 6px 0 6px 26px; position: relative; color: var(--text-light); font-size: 0.9rem; }
.check-list li::before {
  content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--accent); font-size: 0.85rem;
}

.bg-light-custom { background: var(--off-white); }
.text-accent { color: var(--accent) !important; }
.badge-accent { background: var(--gradient-accent); color: var(--white); padding: 3px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.divider { width: 40px; height: 3px; background: var(--gradient-accent); border-radius: 2px; margin: 10px 0; }
.icon-lg { font-size: 2rem; color: var(--accent); }
.rounded-custom { border-radius: 10px; }

.content-image { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.content-image img { width: 100%; height: 240px; object-fit: cover; }

.whatsapp-btn {
  position: fixed; bottom: 24px; left: 24px;
  width: 44px; height: 44px;
  background: #25d366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 1000;
  box-shadow: 0 2px 10px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.4); color: var(--white); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar .trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; color: var(--text-light); font-weight: 500;
}
.trust-bar .trust-item i {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.8rem;
}

/* ===== FEATURE ROW ===== */
.feature-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .fr-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
  transition: var(--transition);
}
.feature-row:hover .fr-icon { background: var(--gradient-accent); color: var(--white); box-shadow: 0 4px 12px var(--accent-glow); }
.feature-row h4 { font-size: 0.95rem; margin-bottom: 3px; }
.feature-row p { font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* ===== LOADING SPINNER ===== */
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
