/* ============================================================
   KODLY — Main Stylesheet
   Author: Kodly Digital Agency
   Version: 1.0
   Structure:
   01. CSS Variables
   02. Base Reset
   03. Typography
   04. Buttons
   05. Utilities / Badges
   06. Navbar
   07. Dropdown Menu
   08. Mobile Menu
   09. Hero Section
   10. Dashboard Mockup
   11. Services Section
   12. About Section
   13. Industries Section
   14. Clients Slider
   15. Reviews Section
   16. CTA Section
   17. Footer
   18. Responsive
============================================================ */

/* ── 01. CSS Variables ── */
:root {
  --primary:      #2A2B77;
  --primary-light:#3d3ea0;
  --primary-dark: #1e1f57;
  --accent:       #4F50C8;
  --text-dark:    #0f1123;
  --text-body:    #3d4066;
  --text-muted:   #7b7fa8;
  --bg-white:     #ffffff;
  --bg-soft:      #f8f8fc;
  --bg-gray:      #f2f3f8;
  --border:       #e4e4f0;
  --shadow-sm:    0 1px 3px rgba(42,43,119,0.06), 0 1px 2px rgba(42,43,119,0.04);
  --shadow-md:    0 4px 16px rgba(42,43,119,0.10), 0 2px 6px rgba(42,43,119,0.06);
  --shadow-lg:    0 16px 48px rgba(42,43,119,0.14), 0 4px 16px rgba(42,43,119,0.08);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --footer-bg:    #030c30;
}

/* ── 02. Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none !important; }

/* ── 03. Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
p { color: var(--text-body); line-height: 1.7; }

/* ── 04. Buttons ── */
.btn-primary-brand {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.22s ease;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-primary-brand:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}
.btn-white:hover {
  background: var(--bg-soft);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}
.btn-outline-white:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Hero button large size */
.btn-hero-lg { font-size: 1rem; padding: 14px 30px; }
.btn-hero-lg-outline { font-size: 1rem; padding: 13px 30px; }

/* ── 05. Utilities / Badges ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42,43,119,0.07);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 13px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-badge--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.65;
}
.section-sub--no-bottom { margin-bottom: 0; }
.text-success-green { color: #22a06b; }

/* ── 06. Navbar ── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
#mainNav.nav-hidden { transform: translateY(-100%); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  text-decoration: none !important;
  display: flex;
  align-items: center;
}
.nav-logo__accent { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none !important;
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: rgba(42,43,119,0.06);
}
.nav-caret {
  font-size: 0.68rem;
  transition: transform 0.22s;
}
.nav-menu > li:hover .nav-caret { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.nav-contact__link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none !important;
  line-height: 1.4;
  transition: color 0.18s;
}
.nav-contact__link:hover { color: var(--primary); }
.nav-contact__link i { margin-right: 4px; }

/* ── 07. Dropdown Menu ── */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s cubic-bezier(0.16,1,0.3,1), visibility 0.22s;
  pointer-events: none;
  min-width: 230px;
}
.nav-dropdown--right { left: auto; right: 0; }

.nav-dropdown-inner {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  transform: translateY(-6px);
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1);
}

.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav-menu > li:hover .nav-dropdown-inner { transform: translateY(0); }

.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 9px;
  text-decoration: none !important;
  transition: background 0.16s;
  color: var(--text-dark);
}
.nav-dropdown__link:hover {
  background: var(--bg-soft);
  color: var(--primary);
}
.nav-dropdown__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.18s;
}
.nav-dropdown__link:hover .nav-dropdown__icon {
  background: var(--primary);
  color: #fff;
}
.nav-dropdown__label { font-size: 0.86rem; font-weight: 500; }

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* ── 08. Mobile Menu ── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-toggle:hover { background: var(--bg-soft); }

.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}
.mobile-toggle.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px 24px;
  z-index: 998;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  animation: slideDown 0.28s cubic-bezier(0.16,1,0.3,1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: block; }

.mobile-nav-item { border-bottom: 1px solid var(--border); }

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-link i { font-size: 0.75rem; transition: transform 0.25s; color: var(--text-muted); }
.mobile-nav-link.acc-open i { transform: rotate(180deg); }

.mobile-accordion { display: none; padding: 4px 0 12px; }
.mobile-accordion.open { display: block; }

.mobile-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.16s;
}
.mobile-sub-item:hover { background: var(--bg-soft); }
.mobile-sub-item i { color: var(--primary); font-size: 0.95rem; width: 18px; flex-shrink: 0; }
.mobile-sub-item__label { font-size: 0.86rem; font-weight: 500; color: var(--text-dark); }

.mobile-cta-wrap { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ── 09. Hero Section ── */
.hero {
  padding: 140px 0 90px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.hero-bg-orb1 {
  position: absolute;
  top: -120px; right: -160px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,43,119,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-orb2 {
  position: absolute;
  bottom: -80px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,80,200,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,43,119,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,43,119,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,43,119,0.07);
  border: 1px solid rgba(42,43,119,0.14);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.hero-title__accent { color: var(--primary); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item i { color: var(--primary); font-size: 0.9rem; }

/* ── 10. Dashboard Mockup ── */
.hero-visual { position: relative; height: 520px; }

.dash-main {
  position: absolute;
  top: 0; right: 0;
  width: 90%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatMain 5s ease-in-out infinite;
}
@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.dash-titlebar {
  background: var(--bg-soft);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dash-titlebar__label {
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot--red    { background: #ff5f57; }
.dash-dot--yellow { background: #febc2e; }
.dash-dot--green  { background: #28c840; }

.dash-body { padding: 16px; }

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.dash-header__title { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.dash-header__period {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.stat-card__label { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.stat-card__value { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
.stat-card__change { font-size: 0.68rem; color: #22a06b; font-weight: 600; margin-top: 2px; }

.mini-chart {
  height: 55px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 4px;
  margin-bottom: 14px;
}
.chart-bar { border-radius: 3px 3px 0 0; background: var(--primary); opacity: 0.15; flex: 1; }
.chart-bar--active { opacity: 1; }
.chart-bar--mid    { opacity: 0.5; }

.leads-list {}
.lead-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.lead-item:last-child { border-bottom: none; }

.lead-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.lead-avatar--purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.lead-avatar--green  { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }

.lead-info { flex: 1; min-width: 0; }
.lead-info__name   { font-size: 0.75rem; font-weight: 600; color: var(--text-dark); }
.lead-info__status { font-size: 0.65rem; color: var(--text-muted); }

.lead-badge { font-size: 0.63rem; font-weight: 600; padding: 2px 8px; border-radius: 50px; }
.lead-badge--new    { background: rgba(42,43,119,0.1);  color: var(--primary); }
.lead-badge--hot    { background: rgba(255,79,79,0.1);  color: #e53e3e; }
.lead-badge--closed { background: rgba(34,160,107,0.1); color: #22a06b; }

/* Inline bottom cards in dashboard */
.dash-bottom-cards { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.dash-bottom-card {
  flex: 1;
  min-width: 140px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
}
.dash-bottom-card__head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.dash-bottom-card__icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.dash-bottom-card__icon i { color: #fff; font-size: 0.65rem; }
.dash-bottom-card__title { font-size: 0.72rem; font-weight: 700; color: var(--text-dark); }
.dash-bottom-card__body  { font-size: 0.68rem; color: var(--text-muted); }

.ai-typing-wrap { display: flex; gap: 3px; margin-top: 5px; align-items: center; }
.ai-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  animation: typingDot 1.2s ease-in-out infinite;
}
.ai-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1); }
}

.appt-card__title { font-size: 0.72rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.appt-card__title i { color: var(--primary); margin-right: 4px; }
.appt-card__sub   { font-size: 0.68rem; color: var(--text-muted); }
.appt-card__slot {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  margin-top: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border);
}

/* ── 11. Services Section ── */
.services-section { padding: 96px 0; background: var(--bg-soft); }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.service-card:hover {
  border-color: rgba(42,43,119,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.25s;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.service-card__title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-card__desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.18s;
}
.service-card:hover .service-link { gap: 9px; }

/* ── 12. About Section ── */
.about-section { padding: 96px 0; background: #fff; }

.about-img-wrap { position: relative; border-radius: 20px; overflow: visible; padding-bottom: 24px; padding-right: 16px; }
.about-img-main {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-gray) 100%);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.about-dash-preview {
  width: 88%;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Analytics preview inside about */
.analytics-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.analytics-head__title { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); }
.analytics-head__period {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.analytics-stat {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px;
}
.analytics-stat--primary { background: var(--primary); border-color: var(--primary); }
.analytics-stat__label       { font-size: 0.65rem; color: var(--text-muted); }
.analytics-stat--primary .analytics-stat__label { color: rgba(255,255,255,0.7); }
.analytics-stat__value       { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.analytics-stat--primary .analytics-stat__value { color: #fff; }
.analytics-stat__value--green { color: #22a06b; }

.analytics-award {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.analytics-award i { color: var(--primary); font-size: 1.1rem; }
.analytics-award__title { font-size: 0.72rem; font-weight: 700; color: var(--text-dark); }
.analytics-award__sub   { font-size: 0.65rem; color: var(--text-muted); }

.analytics-body { padding: 16px; }

.about-exp-badge {
  position: absolute;
  top: -16px; right: -16px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-exp-badge__num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.about-exp-badge__lbl { font-size: 0.62rem; font-weight: 600; opacity: 0.8; text-align: center; line-height: 1.2; }

.about-stats-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-stats-badge__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.about-stats-badge__num { font-size: 1rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.about-stats-badge__lbl { font-size: 0.72rem; color: var(--text-muted); }

.about-content { padding-left: 20px; }
.about-content__heading { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--text-dark); letter-spacing: -0.03em; margin-bottom: 18px; }
.about-content__text    { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; }
.about-features-wrap    { margin: 24px 0 28px; }

.about-feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.about-feature__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(42,43,119,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature__title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin: 0 0 3px; }
.about-feature__desc  { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── 13. Industries Section ── */
.industries-section { padding: 96px 0; background: var(--bg-soft); }

.industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 13px 22px;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
}
.industry-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.industry-pill i { font-size: 1rem; color: var(--primary); transition: color 0.22s; flex-shrink: 0; }
.industry-pill:hover i { color: #fff; }
.industry-pill__label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); transition: color 0.22s; }
.industry-pill:hover .industry-pill__label { color: #fff; }

/* ── 14. Clients Slider ── */
.clients-section { padding: 80px 0; background: #fff; overflow: hidden; }
.clients-slider-wrap { padding-top: 36px; }

.slider-fade { position: relative; }
.slider-fade::before,
.slider-fade::after {
  content: '';
  position: absolute;
  top: 0;
  width: 130px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.slider-fade::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.slider-fade::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }

.slider-track {
  display: flex;
  gap: 64px;
  animation: scrollLeft 28s linear infinite;
  width: max-content;
  align-items: center;
}
.slider-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  opacity: 0.35;
  transition: opacity 0.25s;
  filter: grayscale(1);
  white-space: nowrap;
}
.client-logo:hover { opacity: 0.7; }
.client-logo__text { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text-dark); }

/* ── 15. Reviews Section ── */
.reviews-section { padding: 96px 0; background: var(--bg-soft); }

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars i { color: #f59e0b; font-size: 0.9rem; }

.review-text { font-size: 0.87rem; color: var(--text-body); line-height: 1.65; margin-bottom: 20px; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-avatar--purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.reviewer-avatar--green  { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.reviewer-avatar--pink   { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.reviewer-avatar--blue   { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.reviewer-avatar--orange { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.reviewer__name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.reviewer__biz  { font-size: 0.75rem; color: var(--text-muted); }

.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.google-badge__verified { color: #4285F4; margin-left: auto; }
.g-blue   { color: #4285F4; font-weight: 800; font-size: 0.85rem; }
.g-red    { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green  { color: #34A853; }

/* ── 16. CTA Section ── */
.cta-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 18px; }
.cta-section__sub   { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.cta-btn-wrap { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 17. Footer ── */
footer { background: var(--footer-bg); color: rgba(255,255,255,0.65); padding: 0; }

.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo-text__accent { color: rgba(79,80,200,0.9); }

.footer-desc {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
  max-width: 250px;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 9px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none !important;
  transition: all 0.22s;
}
.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links__link {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none !important;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
}
.footer-links__link:hover { color: #fff; padding-left: 4px; }

.footer-contact-item { display: flex; gap: 11px; margin-bottom: 15px; align-items: flex-start; }
.footer-contact-item i { color: rgba(79,80,200,0.9); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item__text { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom__copy { font-size: 0.79rem; color: rgba(255,255,255,0.32); margin: 0; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links__link {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.32);
  text-decoration: none !important;
  transition: color 0.18s;
}
.footer-bottom-links__link:hover { color: rgba(255,255,255,0.75); }

/* ── 18. Responsive ── */
@media (max-width: 1199px) {
  .about-content { padding-left: 0; }
}

@media (max-width: 991px) {
  .nav-menu, .nav-contact { display: none; }
  .mobile-toggle { display: flex; }
  .navbar-inner { padding: 0 20px; }
  .hero { padding: 110px 0 60px; }
  .hero-visual { height: auto; min-height: 340px; margin-top: 48px; }
  .dash-main { position: relative; width: 100%; right: auto; top: auto; }
  .about-img-wrap { margin-bottom: 48px; }
  .about-exp-badge { top: 12px; right: 12px; }
  .about-stats-badge { bottom: 12px; left: 12px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .industry-pill { padding: 11px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-top .row > div { margin-bottom: 36px; }
  .footer-top .row > div:last-child { margin-bottom: 0; }
  .navbar-inner { height: 72px; }
  .mobile-menu { top: 72px; }
}

@media (max-width: 480px) {
  .navbar-inner { padding: 0 16px; height: 68px; }
  .mobile-menu { top: 68px; }
  .hero-btns .btn-primary-brand,
  .hero-btns .btn-outline-brand { width: 100%; justify-content: center; }
}

[data-aos] { will-change: transform, opacity; }

/* ============================================================
   CONTACT PAGE STYLES
============================================================ */

/* ── Contact Hero ── */
.contact-hero {
  padding: 160px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.contact-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,43,119,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,43,119,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.contact-hero-orb {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,43,119,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-orb2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,80,200,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.contact-hero-title span { color: var(--primary); }
.contact-hero-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0;
}

/* ── Info Cards Strip ── */
.contact-info-strip {
  padding: 0;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(42,43,119,0.07);
  height: 100%;
  transition: all 0.25s;
}
.contact-info-card:hover {
  border-color: rgba(42,43,119,0.2);
  box-shadow: 0 8px 32px rgba(42,43,119,0.12);
  transform: translateY(-3px);
}
.contact-info-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(42,43,119,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.contact-info-card__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 3px;
}
.contact-info-card__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Main Contact Section ── */
.contact-main-section {
  padding: 80px 0 96px;
  background: var(--bg-soft);
}

/* ── Form ── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(42,43,119,0.07);
}
.contact-form-wrap h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.contact-form-wrap p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.cf-group { margin-bottom: 18px; }
.cf-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.cf-label span { color: var(--primary); }
.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,43,119,0.08);
  background: #fff;
}
.cf-input::placeholder,
.cf-textarea::placeholder { color: var(--text-muted); }
.cf-textarea { resize: vertical; min-height: 120px; }
.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b6b8a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.cf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.22s;
  margin-top: 8px;
}
.cf-submit:hover {
  background: var(--primary-dk, #1e1f5c);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,43,119,0.25);
}

/* ── Right Column ── */
.contact-side { display: flex; flex-direction: column; gap: 20px; }

.contact-steps-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(42,43,119,0.06);
}
.contact-steps-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.contact-step {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  position: relative;
}
.contact-step:last-child { padding-bottom: 0; }
.contact-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 44px;
  bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--primary), rgba(42,43,119,0.05));
}
.contact-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42,43,119,0.2);
  position: relative; z-index: 1;
}
.contact-step__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  padding-top: 8px;
}
.contact-step__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-social-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.contact-social-card::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.contact-social-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.contact-social-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.6;
}
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-social-link:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.contact-social-link i { font-size: 1rem; }

/* ── Benefits Section ── */
.contact-benefits-section {
  padding: 80px 0;
  background: #fff;
}
.contact-benefit-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s;
}
.contact-benefit-card:hover {
  background: #fff;
  border-color: rgba(42,43,119,0.2);
  box-shadow: 0 8px 28px rgba(42,43,119,0.09);
  transform: translateY(-4px);
}
.contact-benefit-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(42,43,119,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.25s;
}
.contact-benefit-card:hover .contact-benefit-card__icon {
  background: var(--primary);
  color: #fff;
}
.contact-benefit-card__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-benefit-card__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ ── */
.contact-faq-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .contact-form-wrap { padding: 28px 20px; }
  .contact-hero { padding: 130px 0 60px; }
}

/* ============================================================
   CONTACT PAGE — Inline style replacements
============================================================ */

/* Hero stat tiles */
.contact-stat-tile {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.contact-stat-tile--primary { background: var(--primary); }
.contact-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
}
.contact-stat-tile--primary .contact-stat-num { color: #fff; }
.contact-stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.contact-stat-tile--primary .contact-stat-lbl { color: rgba(255,255,255,0.7); }

/* Required asterisk */
.cf-required { color: var(--primary); }

/* Success message */
.cf-success {
  display: none;
  margin-top: 20px;
  background: rgba(34,160,107,0.08);
  border: 1px solid rgba(34,160,107,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  align-items: center;
  gap: 12px;
}
.cf-success.show { display: flex; }
.cf-success__icon {
  color: #22a06b;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cf-success__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}
.cf-success__sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Section title highlight */
.text-primary-color { color: var(--primary); }

/* FAQ intro text */
.faq-intro-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Map section */
.contact-map-section {
  height: 420px;
  background: var(--bg-soft);
}
.contact-map-section iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
}
