/* Mandel AI - Custom CSS */
:root {
  --accent: #ff6b35;
}

/* ===== KINETIC TEMPLATE GLOBAL OVERRIDES ===== */
/* tooplate-style.css sets: ul { position:fixed; left:0; width:10% } — reset all ul */
ul {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    padding-top: 0 !important;
    padding: 0;
    margin: 0;
}
/* Reset body background-image from tooplate-style.css */
body {
    background-color: #fff;
    color: #1a1a2e;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Reset section min-height and padding from tooplate-style.css */
section {
    min-height: auto;
    padding: 60px 40px;
}

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: #fff;
    border-bottom: 2px solid #ff6b35;
    padding: 0 20px;
}
.site-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.site-nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: #ff6b35;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.site-nav-logo span { color: #1a1a2e; }
.site-nav-logo:hover { text-decoration: none; color: #ff6b35; }
.site-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav-links li { margin: 0; padding: 0; }
.site-nav-links a {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.site-nav-links a:hover { color: #ff6b35; }
/* Push body down so content not hidden behind fixed nav */
body { padding-top: 64px; }
/* Override accent/primary colors */
.primary-button a,
.btn-primary,
.btn-accent {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
}
.primary-button a:hover,
.btn-primary:hover,
.btn-accent:hover {
  background-color: #e55a24;
  border-color: #e55a24;
  color: #fff;
}

/* Navigation */
.navbar-brand { font-weight: 700; color: #ff6b35 !important; font-size: 22px; }
.navbar-default .navbar-nav > li > a { color: #333; font-size: 14px; font-weight: 500; }
.navbar-default .navbar-nav > li > a:hover { color: #ff6b35; }
.navbar-default .navbar-nav > .active > a { color: #ff6b35 !important; }
.navbar-default { background-color: #fff; border-bottom: 2px solid #ff6b35; }

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}
.hero-section h1 { font-size: 48px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.hero-section h2 { font-size: 28px; font-weight: 300; color: #ff6b35; margin-bottom: 20px; }
.hero-section p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto 40px; }
.hero-cta { display: inline-block; background: #ff6b35; color: #fff; padding: 14px 40px; font-size: 16px; font-weight: 600; border-radius: 4px; text-decoration: none; margin: 0 10px 10px; }
.hero-cta:hover { background: #e55a24; color: #fff; text-decoration: none; }
.hero-cta-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.hero-cta-outline:hover { background: #fff; color: #1a1a2e; }

/* Sections */
.section-block { padding: 80px 0; }
.section-block.bg-light { background: #f8f9fa; }
.section-block.bg-dark { background: #1a1a2e; color: #fff; }
.section-title { font-size: 36px; font-weight: 700; margin-bottom: 14px; color: #1a1a2e; }
.section-title.light { color: #fff; }
.section-subtitle { font-size: 18px; color: #444; margin-bottom: 50px; }
.section-subtitle.light { color: rgba(255,255,255,0.75); }
.accent-bar { width: 60px; height: 4px; background: #ff6b35; margin: 0 auto 30px; }

/* Card grids */
.card-grid,
.team-grid,
.blog-grid,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.card-grid > *,
.team-grid > *,
.blog-grid > *,
.features-grid > * {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

/* Feature cards */
.feature-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 30px 25px;
  flex: 1;
  transition: box-shadow 0.3s ease;
}
.feature-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.feature-card .icon { font-size: 36px; color: #ff6b35; margin-bottom: 16px; }
.feature-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; }
.feature-card p { color: #444; font-size: 15px; flex: 1; }

/* Team cards */
.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  flex: 1;
  text-align: center;
  padding: 30px 20px;
}
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: #ff6b35; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 36px; color: #fff; font-weight: 700; }
.team-card h4 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.team-card .role { color: #ff6b35; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: #444; font-size: 14px; }

/* Blog cards */
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  display: flex;
  flex: 1;
}
.blog-card .blog-img { height: 180px; background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); display: flex; align-items: center; justify-content: center; }
.blog-card .blog-img i { font-size: 48px; color: #ff6b35; }
.blog-card .blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-meta { font-size: 13px; color: #444; margin-bottom: 10px; }
.blog-card h4 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.blog-card p { color: #444; font-size: 14px; flex: 1; }
.blog-card .read-more { color: #ff6b35; font-weight: 600; font-size: 14px; text-decoration: none; margin-top: 14px; }
.blog-card .read-more:hover { color: #e55a24; }

/* Pricing */
.pricing-card {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}
.pricing-card:hover { border-color: #ff6b35; box-shadow: 0 8px 30px rgba(255,107,53,0.15); }
.pricing-card.featured { border-color: #ff6b35; background: linear-gradient(135deg, #fff8f5 0%, #fff 100%); }
.pricing-card .badge-featured { background: #ff6b35; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; display: inline-block; }
.pricing-card h3 { font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.pricing-card .price { font-size: 42px; font-weight: 800; color: #1a1a2e; margin: 16px 0; }
.pricing-card .price span { font-size: 18px; font-weight: 400; color: #444; }
.pricing-card ul { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.pricing-card ul li { padding: 8px 0; color: #333; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.pricing-card ul li i { color: #ff6b35; margin-right: 8px; }
.pricing-btn { display: block; background: #ff6b35; color: #fff; padding: 12px 30px; border-radius: 6px; font-weight: 600; text-decoration: none; margin-top: 20px; font-size: 15px; }
.pricing-btn:hover { background: #e55a24; color: #fff; text-decoration: none; }
.pricing-btn.outline { background: transparent; border: 2px solid #ff6b35; color: #ff6b35; }
.pricing-btn.outline:hover { background: #ff6b35; color: #fff; }

/* Stats bar */
.stats-bar { background: #ff6b35; padding: 50px 0; color: #fff; text-align: center; }
.stat-item h3 { font-size: 42px; font-weight: 800; margin-bottom: 6px; }
.stat-item p { font-size: 15px; opacity: 0.9; }

/* Page header */
.page-header-block { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); padding: 70px 0 50px; color: #fff; text-align: center; margin-top: 70px; }
.page-header-block h1 { font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.page-header-block p { font-size: 18px; color: rgba(255,255,255,0.8); }
.page-header-block .breadcrumb { background: transparent; justify-content: center; display: flex; padding: 0; margin: 16px 0 0; }
.page-header-block .breadcrumb li { color: rgba(255,255,255,0.7); font-size: 14px; }
.page-header-block .breadcrumb li a { color: #ff6b35; }
.page-header-block .breadcrumb > li + li:before { color: rgba(255,255,255,0.5); }

/* Footer */
.site-footer { background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-logo { font-size: 24px; font-weight: 800; color: #ff6b35; margin-bottom: 14px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-heading { font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; }
.footer-links li a:hover { color: #ff6b35; }
.footer-contact-item { display: flex; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item i { color: #ff6b35; margin-right: 10px; margin-top: 3px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* Navbar top */
.site-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; background: rgba(255,255,255,0.97); border-bottom: 2px solid #ff6b35; }
.navbar-brand-text { font-size: 22px; font-weight: 800; color: #ff6b35 !important; letter-spacing: -0.5px; }
.navbar-brand-text span { color: #1a1a2e; }
body { padding-top: 70px; }

/* Misc */
.container-narrow { max-width: 720px; margin: 0 auto; }
.text-accent { color: #ff6b35; }
.bg-accent { background: #ff6b35; }
.divider { border-top: 1px solid #e8e8e8; margin: 40px 0; }
.section-tag { display: inline-block; background: rgba(255,107,53,0.1); color: #ff6b35; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.lead-text { font-size: 18px; color: #333; line-height: 1.7; }

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 16px 20px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-banner p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); flex: 1; min-width: 200px; }
#cookie-banner a { color: #ff6b35; text-decoration: underline; }
#cookie-banner .cookie-buttons { display: flex; gap: 10px; }
#cookie-accept { background: #ff6b35; color: #fff; border: none; padding: 8px 20px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; }
#cookie-accept:hover { background: #e55a24; }
#cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); padding: 8px 16px; border-radius: 4px; font-size: 14px; cursor: pointer; }
#cookie-decline:hover { border-color: rgba(255,255,255,0.6); }

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 32px; }
  .hero-section h2 { font-size: 20px; }
  .section-title { font-size: 26px; }
  .page-header-block h1 { font-size: 28px; }
  .page-header-block { margin-top: 56px; }
  body { padding-top: 56px; }
}

/* ===== KINETIC TEMPLATE OVERRIDE (tooplate-style.css conflict fix) ===== */
/* The kinetic template CSS sets html/body/section to height:100%/overflow:hidden
   which hides all content below the fold. Override it here. */
html, body {
  height: auto !important;
  overflow: visible !important;
  overflow-x: hidden !important;
}
section {
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  position: static !important;
}
.page {
  position: static !important;
  left: auto !important;
}
/* Override kinetic's global 500ms transition on everything */
html, body, section, .page, .ct {
  transition: none !important;
  -webkit-transition: none !important;
}

/* ============================================================
   Fix 3: Pricing badge overflow fix
   ============================================================ */
.pricing-card {
    overflow: visible !important;
}
.pricing-card .badge-featured {
    position: relative;
    z-index: 10;
}

/* ============================================================
   Fix 4: Custom (dark) pricing card — white text override
   ============================================================ */
.pricing-dark h3,
.pricing-dark p,
.pricing-dark .price,
.pricing-dark .price span,
.pricing-dark ul li {
    color: #ffffff !important;
}
.pricing-dark ul li i {
    color: #ff6b35 !important;
}
.pricing-dark ul li {
    border-bottom-color: rgba(255,255,255,0.1) !important;
}
