:root {
  /* Light theme */
  --bg-gradient-1: linear-gradient(145deg, #f0f5ff, #e6edff);
  --bg-gradient-2: linear-gradient(145deg, #e0e8ff, #d6e0ff);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(255, 255, 255, 0.6);
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-accent: #4f46e5;
  --accent-1: #4f46e5;
  --accent-2: #7c3aed;
  --accent-gradient: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --glass: rgba(255, 255, 255, 0.2);
  --glass-2: rgba(255, 255, 255, 0.15);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --transition: all 0.3s ease;
}

.dark {
  /* Dark theme */
  --bg-gradient-1: linear-gradient(145deg, #0f172a, #1e293b);
  --bg-gradient-2: linear-gradient(145deg, #1e293b, #0f172a);
  --card-bg: rgba(15, 23, 42, 0.7);
  --card-border: rgba(99, 102, 241, 0.15);
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-accent: #818cf8;
  --accent-1: #6366f1;
  --accent-2: #8b5cf6;
  --accent-gradient: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --glass: rgba(15, 23, 42, 0.5);
  --glass-2: rgba(30, 41, 59, 0.4);
  --neon-glow: 0 0 15px rgba(99, 102, 241, 0.7), 0 0 30px rgba(99, 102, 241, 0.5);
  --support-color: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient-1);
  color: var(--text-primary);
  min-height: 100vh;
  transition: background 0.6s ease, color 0.3s ease;
  overflow-x: hidden;
  position: relative;
}

/* Particle container */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Glass effect */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.glass-2 {
  background: var(--glass-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Container */
.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-1);
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
}

/* Layout */
section {
  padding: 2rem 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
}

.hamburger .line {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--text-primary);
  margin: 6px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* Support Button */
.support-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--support-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
  margin-right: 1rem;
  font-size: .8rem;
}

.support-btn:hover {
  background: rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.support-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: 0.5s;
}

.support-btn:hover:before {
  left: 100%;
}

.support-btn i {
  font-size: 1.1rem;
}

/* Ultimate Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--neon-glow);
  animation: pulse 3s infinite ease-in-out;
}

.logo-icon:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  top: -30px;
  left: -40px;
  transition: all 0.6s;
}

.logo:hover .logo-icon:before {
  left: 60px;
}

.logo-icon .shield {
  position: absolute;
  font-size: 1.6rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--neon-glow);
}

.logo-text .tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: -2px;
  letter-spacing: 1.5px;
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
}

nav ul li a:hover {
  color: var(--text-primary);
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

nav ul li a:hover:after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.theme-toggle:hover {
  transform: rotate(15deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  /* padding-bottom: 8rem; */
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-tag span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.stat-card:nth-child(1) .icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.stat-card:nth-child(2) .icon {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

.stat-card:nth-child(3) .icon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.stat-card:nth-child(4) .icon {
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-1);
}

.stat-card .value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-card .label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.dashboard-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transform: rotate3d(0.5, 1, 0, 15deg);
  transition: transform 0.5s ease;
}

.dashboard-card:hover {
  transform: rotate3d(0.2, 0.5, 0, 8deg);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.status-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 12px;
  background: var(--glass-2);
}

.metric-card .title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.metric-card .value {
  font-size: 1.5rem;
  font-weight: 700;
}

.event-card {
  padding: 1rem;
  border-radius: 12px;
  background: var(--glass-2);
}

.event-card .title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.event-card .description {
  font-size: 0.95rem;
  line-height: 1.5;
}

.floating-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  animation: float 12s infinite ease-in-out;
}

.shape-1 {
  background: rgba(79, 70, 229, 0.4);
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.shape-2 {
  background: rgba(124, 58, 237, 0.3);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, 20px); }
  50% { transform: translate(-20px, -20px); }
  75% { transform: translate(20px, -20px); }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover:before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-1);
}

.service-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.service-card ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-card ul li:before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* Team Section */
.team-page {
  padding-top: 6rem;
}

.page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.team-member {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--card-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.member-details {
  margin: 0.8rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.member-details p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.member-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-2);
  color: var(--text-primary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-1);
  color: white;
  transform: translateY(-3px);
}

.team-values {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.team-values h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.value-card i {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.value-card p {
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-page {
  padding-top: 6rem;
}

.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background: var(--accent-gradient);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: rgba(99, 102, 241, 0.1);
}

input:checked + .toggle-slider:before {
  transform: translateX(28px);
}

.savings-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--accent-1);
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.recommended {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-gradient);
  color: white;
  padding: 0.5rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  width: 140px;
  text-align: center;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.pricing-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  margin-bottom: 1.2rem;
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .period {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.7rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px dashed var(--card-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--success);
  font-size: 1.1rem;
  margin-top: 3px;
}

.pricing-features li .fa-times {
  color: var(--text-secondary);
  opacity: 0.5;
}

.pricing-actions {
  margin-top: auto;
}

/* Custom Solution */
.custom-solution {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  margin: 4rem 0;
  text-align: center;
}

.custom-solution h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.custom-solution p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
  margin-top: 4rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.faq-item h3 i {
  color: var(--accent-1);
  font-size: 1.2rem;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info {
  padding-right: 2rem;
}

.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-2);
  color: var(--accent-1);
  font-size: 1.2rem;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  background: var(--glass-2);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-1);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 2rem;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
  }

  nav ul.active {
    right: 0;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .support-btn .support-text {
    display: none;
  }

  .support-btn {
    padding: 0.7rem;
  }
}

@media (max-width: 768px) {
  .logo-text .brand {
    font-size: 1.5rem;
  }

  .hero {
    padding: 10rem 0 4rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .support-section {
    padding: 2.5rem 1.5rem;
  }

  .support-section h2 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    padding: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
  
  .pricing-grid,
  .services-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile spacing adjustments */
  section {
    padding: 4rem 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.2rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text .brand {
    font-size: 1.3rem;
  }

  .logo-text .tagline {
    font-size: 0.7rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .stat-card .value {
    font-size: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 1rem;
  }

  .header-container {
    padding: 0 1rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .dashboard-card {
    padding: 1rem;
  }
}