/* DARK FUTURISTIC SAAS THEME - NENTSOFTSA */
:root {
  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-tertiary: #1A2332;
  --bg-glass: rgba(17, 24, 39, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --accent-primary: #1DA1F2;
  --accent-light: #4FC3F7;
  --accent-dark: #0277BD;
  --accent-glow: rgba(29, 161, 242, 0.4);
  --silver: #C0C0C0;
  --silver-light: #E5E7EB;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --gradient-primary: linear-gradient(135deg, #0B0F19 0%, #1A2332 50%, #0B0F19 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-primary) 50%, var(--accent-light) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(29, 161, 242, 0.2) 0%, rgba(79, 195, 247, 0.4) 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(29, 161, 242, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(79, 195, 247, 0.06) 0%, transparent 50%);
  min-height: 100vh;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* UTILITY CLASSES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--silver-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--text-primary) !important;
  font-family: inherit;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(29, 161, 242, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), 0 8px 30px rgba(29, 161, 242, 0.4);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary) !important;
  border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: #fff !important;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: 0 0 50px var(--accent-glow), 0 0 80px var(--accent-glow); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

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

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

/* GLASSMORPHISM CARD */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(29, 161, 242, 0.3);
  box-shadow: var(--shadow-md), 0 0 30px rgba(29, 161, 242, 0.1);
  transform: translateY(-5px);
}

/* HERO SECTION */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease-in-out, transform 8s ease-out;
  will-change: transform, opacity;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1.1);
  transition: opacity 2s ease-in-out, transform 8s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(26, 35, 50, 0.7) 100%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(29, 161, 242, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(79, 195, 247, 0.06) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231DA1F2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(29, 161, 242, 0.1);
  border: 1px solid rgba(29, 161, 242, 0.3);
  border-radius: 50px;
  font-size: 14px;
  color: var(--accent-primary);
  margin-bottom: 24px;
  animation: pulse 3s infinite;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: glow 2s infinite;
}

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, var(--silver-light) 50%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-primary);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar-logo-img {
  height: 30px;
  width: auto;
  transition: var(--transition);
}

.navbar-logo-img:hover {
  opacity: 0.85;
}

.navbar.scrolled {
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.4s ease;
}

.navbar.scrolled .navbar-container {
  height: 76px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.navbar-logo:hover {
  opacity: 0.85;
}

.navbar-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-primary) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-link {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-glow);
}

.navbar-link:hover {
  color: #fff;
  background: transparent;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-link.active {
  color: #fff;
  background: transparent;
}

.navbar-link.active::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-glow);
}

.dropdown-toggle:hover {
  color: #fff;
  background: transparent;
}

.dropdown-toggle:hover::after {
  width: 100%;
}

.dropdown-toggle.active {
  color: #fff;
}

.dropdown-toggle.active::after {
  width: 100%;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  margin-top: 24px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 24px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(29, 161, 242, 0.15);
  color: #fff;
  transform: translateX(4px);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 0;
}

.dropdown-all {
  justify-content: center;
  color: var(--accent-light);
}

.dropdown-all:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.04);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}

.nav-auth-btn {
  padding: 12px 26px;
  font-size: 14px;
  border-radius: 30px;
  letter-spacing: 0.3px;
}

.btn-secondary.nav-auth-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: none;
  padding: 12px 8px;
}

.btn-secondary.nav-auth-btn:hover {
  color: #fff;
  box-shadow: none;
  transform: translateY(0);
}

.btn-primary.nav-auth-btn {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-light) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(29, 161, 242, 0.25);
}

.btn-primary.nav-auth-btn:hover {
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
  transition: var(--transition);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg, 16px);
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(29, 161, 242, 0.3);
}

.portfolio-card a {
  transition: color 0.3s;
}

.portfolio-card h3:hover a {
  color: var(--accent-primary);
}

.portfolio-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.portfolio-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.portfolio-tag {
  padding: 4px 12px;
  background: rgba(29, 161, 242, 0.1);
  color: var(--accent-primary);
  font-size: 12px;
  border-radius: 20px;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent-primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 56px;
  font-weight: 800;
  margin: 24px 0;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 32px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg, 16px);
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(29, 161, 242, 0.3);
}

.blog-card a {
  transition: color 0.3s;
}

.blog-card h2:hover a, .blog-card h3:hover a {
  color: var(--accent-primary);
}

.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.blog-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(29, 161, 242, 0.1);
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* CONTACT FORM */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-details h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-details a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--accent-primary);
}

.contact-form {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  border: none;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 74px;
  left: 0;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--border-color);
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--bg-secondary);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 32px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  transition: var(--transition);
}

.footer-logo-img:hover {
  opacity: 0.85;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin: 24px 0 32px;
  line-height: 1.8;
}

.footer-contact-info {
  margin: 24px 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact-info p {
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info i {
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-info a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-info a:hover {
  color: var(--accent-primary);
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-logo-inline {
  margin-bottom: 0;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-card.featured {
    transform: none;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  .navbar-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    gap: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
  }
  .navbar-nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .navbar-actions {
    margin-left: 12px;
  }
  .navbar-actions .nav-auth-btn {
    display: none;
  }
  .dropdown-menu {
    position: static;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .hero-content {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .section {
    padding: 60px 0;
  }
  .contact-form {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-bottom: 14px;
}

.entry-content a {
  color: var(--accent-primary);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* LOADING ANIMATION */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* TRUSTED BY STRIP */
.trusted-by {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
  text-align: center;
}
.trusted-by-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.trusted-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
}
.trusted-by-logos:hover {
  opacity: 0.8;
}
.trusted-logo {
  height: 30px;
  width: auto;
  fill: currentColor;
  color: var(--text-secondary);
}

/* ZIG-ZAG SECTIONS */
.zig-zag-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 140px;
}
.zig-zag-row:last-child {
  margin-bottom: 0;
}
.zig-zag-row:nth-child(even) {
  flex-direction: row-reverse;
}
.zig-zag-content {
  flex: 1;
}
.zig-zag-image {
  flex: 1;
  position: relative;
}
.zig-zag-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.zig-zag-image::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-lg);
  background: var(--gradient-glow);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
.zig-zag-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(29, 161, 242, 0.1);
  color: var(--accent-light);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(29, 161, 242, 0.2);
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}
.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}
.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}
.testimonial-title {
  font-size: 14px;
  color: var(--text-muted);
}

/* INLINE FORM */
.inline-lead-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: rgba(11, 15, 25, 0.5);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}
.inline-lead-form .form-group {
  margin-bottom: 16px;
}
.inline-lead-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .zig-zag-row, .zig-zag-row:nth-child(even) {
    flex-direction: column;
    gap: 40px;
  }
}

/* SCROLL TO TOP */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(29, 161, 242, 0.6), 0 0 15px var(--accent-glow);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* CONTACT PAGE */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(29, 161, 242, 0.05) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 60px;
  }
}

.contact-info, .contact-form {
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.contact-method:hover {
  background: rgba(29, 161, 242, 0.05);
  border-color: rgba(29, 161, 242, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(29, 161, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 161, 242, 0.2);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-method:hover .contact-icon {
  background: var(--accent-primary);
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
  transform: scale(1.1);
}

.contact-method:hover .contact-icon svg {
  stroke: #fff;
}

.contact-details h4 {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-details a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--accent-primary);
}

.contact-form {
  background: rgba(11, 15, 25, 0.6);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; color: white; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.whatsapp-btn:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }
.whatsapp-tooltip { position: absolute; right: 70px; background: #fff; color: #333; padding: 6px 12px; border-radius: 6px; font-size: 14px; font-weight: 600; opacity: 0; visibility: hidden; transition: opacity 0.3s, transform 0.3s; transform: translateX(10px); white-space: nowrap; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateX(0); }
