/* ==========================================
   KEEPTRACK — CSS Design System
   Color Palette:
   Navy:    #0f1c2e
   Orange:  #f59e0b (amber/gold - matches logo)
   Blue:    #1d4ed8
   Light:   #f8fafc
 ========================================== */

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

:root {
  --navy: #0f1c2e;
  --navy-mid: #1a2e45;
  --navy-light: #243b55;
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --orange-light: #fcd34d;
  --blue: #1d4ed8;
  --blue-light: #3b82f6;
  --green: #22c55e;
  --red: #ef4444;
  --white: #ffffff;
  --light: #f8fafc;
  --light-mid: #f1f5f9;
  --border: #e2e8f0;
  --text-dark: #0f172a;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.20);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ==========================================
   NAVBAR
 ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(15, 28, 46, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-circle-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--orange), 0 2px 10px rgba(245, 158, 11, 0.2);
  transition: var(--transition);
}

.logo-circle-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px var(--orange), 0 4px 15px rgba(245, 158, 11, 0.3);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
}

.logo-accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--light);
}

.dropdown-arrow {
  font-size: 0.6rem;
  margin-left: 1px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 180px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.775rem;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  color: var(--navy);
  background: var(--light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-login-btn {
  padding: 6px 14px;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.nav-login-btn:hover {
  background: var(--light);
  border-color: var(--navy);
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e45 100%);
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(15, 28, 46, 0.2);
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(15, 28, 46, 0.3);
  background: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: var(--transition);
}

/* ==========================================
   HERO
 ========================================== */
.hero {
  min-height: 85vh;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent);
  top: -80px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15), transparent);
  bottom: 0;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 28, 46, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 28, 46, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--navy);
  letter-spacing: -0.6px;
}

.hero-title-accent {
  color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 26px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  border: 1.8px solid var(--navy);
  transition: var(--transition);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.trust-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 1px;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  animation: slideUp 0.8s ease-out 0.3s both;
  transition: var(--transition);
}

.hero-main-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 130px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.float-top-right {
  top: -10px;
  right: -10px;
  animation-delay: -3s;
}

.float-bottom-left {
  bottom: -10px;
  left: -10px;
}

.float-icon {
  font-size: 1.1rem;
}

.float-val {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
}

.float-label {
  font-size: 0.6rem;
  color: var(--text-light);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 50px;
}

/* ==========================================
   TRUST BAR
 ========================================== */
.trust-bar {
  padding: 32px 0;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.trust-bar-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.partner-grid-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition);
}

.partner-grid-img:hover {
  opacity: 0.9;
  filter: grayscale(0);
}

/* ==========================================
   SECTION UTILITIES
 ========================================== */
.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 8px;
  background: rgba(245, 158, 11, 0.08);
  padding: 3px 8px;
  border-radius: 50px;
}

.section-label.light {
  background: rgba(245, 158, 11, 0.2);
  color: var(--orange-light);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.highlight {
  color: var(--orange);
}

/* ==========================================
   FEATURES TABS
 ========================================== */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.features-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  background: var(--light);
  padding: 4px;
  border-radius: var(--radius);
  display: inline-flex;
}

.tab-btn {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-mid);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
  color: var(--navy);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.feature-panel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-panel-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-panel-text p {
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.check {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.9rem;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  transition: var(--transition);
}

.btn-primary-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.feature-panel-visual {
  perspective: 1000px;
}

.panel-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.panel-img:hover {
  transform: scale(1.02) rotateY(-2deg);
}

/* ==========================================
   INDUSTRIES
 ========================================== */
.industries-section {
  padding: 80px 0;
  background: var(--light);
}

.industries-grid {
  display: grid;
  gap: 14px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.industry-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.industry-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.industry-card p {
  font-size: 0.775rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ==========================================
   ENTERPRISE DARK SECTION
 ========================================== */
.enterprise-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.enterprise-bg-globe {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.02) 50%, transparent 70%);
  border: 1px solid rgba(245, 158, 11, 0.06);
  pointer-events: none;
}

.enterprise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.enterprise-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.orange-text {
  color: var(--orange);
}

.enterprise-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.enterprise-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}

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

.e-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.e-lbl {
  font-size: 0.725rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  background: var(--orange);
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
}

.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 26px rgba(245, 158, 11, 0.45);
}

.e-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.e-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
}

.e-card:hover {
  background: rgba(245, 158, 11, 0.07);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
}

.e-card-icon {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.e-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.e-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ==========================================
   CTA BANNER
 ========================================== */
.cta-banner {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, #0f2a42 100%);
}

.cta-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.1);
  top: -100px;
  left: -100px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(29, 78, 216, 0.1);
  bottom: -100px;
  right: -100px;
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.cta-email-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}

.cta-email-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cta-email-input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.cta-submit-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.cta-submit-btn:hover {
  background: var(--orange-light);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 26px rgba(245, 158, 11, 0.45);
}

.cta-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   FOOTER
 ========================================== */
.footer {
  background: #070e19;
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
}

.footer-logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo span span {
  color: var(--orange);
}

.footer-tagline {
  font-size: 0.775rem;
  line-height: 1.6;
  max-width: 240px;
}

.brand-badge-img {
  width: 100%;
  max-width: 120px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.775rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.8rem;
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-left {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-left a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.725rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-left a:hover {
  color: var(--orange);
}

.footer-bottom-right p {
  font-size: 0.725rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   BACK TO TOP
 ========================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  border: none;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
}

/* ==========================================
   ANIMATIONS
 ========================================== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.75;
    transform: scale(1.1)
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ==========================================
   RESPONSIVE
 ========================================== */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }

  .feature-panel-layout {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .enterprise-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
    padding-right: 0;
    margin-right: 0;
  }

  .nav-login-btn {
    display: none;
  }

  .cta-form {
    flex-direction: column;
    max-width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .enterprise-stats {
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
  }

  .features-tabs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    justify-content: flex-start;
  }

  .hero-trust {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .hero-title {
    font-size: 2rem;
  }
}

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

/* Hero */
.contact-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.contact-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}

.contact-hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

/* Main layout */
.contact-main {
  padding: 80px 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: start;
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* Alerts */
.contact-alert {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-alert-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #15803d;
}

.contact-alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
}

/* Form rows & groups */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}

.cf-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.cf-required {
  color: var(--orange-dark);
}

.cf-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.cf-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.cf-input-error {
  border-color: var(--red);
}

.cf-input-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.cf-error-msg {
  font-size: 0.75rem;
  color: var(--red);
}

.cf-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cf-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.cf-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 13px 28px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-size: 0.925rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}

.cf-submit-btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 26px rgba(245, 158, 11, 0.45);
}

.cf-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.cf-submit-btn:hover .cf-btn-arrow {
  transform: translateX(4px);
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--orange);
  background: rgba(245, 158, 11, 0.03);
}

.ci-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.ci-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.ci-link {
  color: var(--orange-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.ci-link:hover {
  color: var(--orange);
  text-decoration: underline;
}

/* Trust badges */
.contact-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 4px;
}

.ctb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.ctb-icon {
  font-size: 1rem;
}

/* FAQ strip */
.contact-faq-strip {
  padding: 80px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--orange-light);
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--orange-dark);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  /* Buffer value for transition */
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1 1 calc(50% - 7px);
  }

  .contact-trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-info-card {
    flex: 1 1 100%;
  }
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-widget:hover {
  transform: translateY(-5px) scale(1.05);
}

.wa-text-bubble {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #075e54;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.whatsapp-widget:hover .wa-text-bubble {
  opacity: 1;
  transform: translateX(0);
}

.wa-icon-circle {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
}

.wa-icon-circle svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: 50%;
  opacity: 0.6;
  animation: wa-pulse-anim 2s infinite;
  z-index: -1;
}

@keyframes wa-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Industry Section */
.industry-section {
  padding: 100px 0;
  background: white;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.industry-card {
  background: #f8fafc;
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  background: white;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(12, 11, 67, 0.08);
  border-color: var(--orange-light);
}

.ind-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.ind-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.ind-text {
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: #0c0b43;
  background-image: radial-gradient(circle at top right, rgba(255, 102, 0, 0.1), transparent);
  color: white;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-stars {
  color: #ffcc00;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.test-quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.test-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h6 {
  margin: 0;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  color: var(--orange);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 15px;
  }

  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
  }

  .wa-text-bubble {
    display: none;
  }

  .wa-icon-circle {
    width: 50px;
    height: 50px;
  }

  .wa-icon-circle svg {
    width: 28px;
    height: 28px;
  }
}