/* CSS Variables */
:root {
  --primary-color: #00b5ae;
  --primary-dark: #008B86;
  --primary-light: #00D4CC;
  --secondary-color: #00141d;
  --accent-color: #00b5ae;
  --dark-color: #00141d;
  --light-color: #f8fafc;
  --gray-color: #64748b;
  --white-color: #ffffff;
  --glass-bg: rgba(0, 181, 174, 0.1);
  --glass-border: rgba(0, 181, 174, 0.18);
  --glass-navbar: rgba(0, 20, 29, 0.8);
  --glass-footer: rgba(0, 20, 29, 0.9);
  --gradient-primary: linear-gradient(135deg, #00b5ae 0%, #104158 100%);
  --gradient-secondary: linear-gradient(135deg, #00141d 0%, #00b5ae 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--white-color);
  background: linear-gradient(135deg, #0a0a0a 0%, #00141d 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-color);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: var(--gradient-primary);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 rgba(0, 181, 174, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white-color);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 10px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  background: var(--glass-footer);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 181, 174, 0.12), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 1000;
  border-radius: 25px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 181, 174, 0.2);
}

.brand-text {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: 15px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: none;
  border: none;
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-color);
  background: none;
  border: none;
  transform: scale(1.08);
  transition: color 0.3s, transform 0.3s;
}

.nav-link.active {
  color: #00b5ae;
  background: none;
  border: none;
  transform: scale(1.12);
  transition: color 0.3s, transform 0.3s;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.nav-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.nav-actions .btn-primary {
  background: linear-gradient(135deg, rgba(0, 181, 174, 0.8), rgba(0, 181, 174, 0.6));
  border: 1px solid rgba(0, 181, 174, 0.4);
  color: var(--white-color);
}

.nav-actions .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-color), rgba(0, 181, 174, 0.9));
  box-shadow: 0 4px 20px rgba(0, 181, 174, 0.3);
  transform: translateY(-2px);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-secondary);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #00b5ae, #00141d);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

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

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 3rem 2.5rem;
  color: var(--white-color);
  background: rgba(0, 20, 29, 0.2);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  box-shadow: 0 15px 40px 0 rgba(0, 181, 174, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  background: rgba(0, 181, 174, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 181, 174, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 181, 174, 0.1);
}


.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-title .text-gradient {
  background: linear-gradient(90deg, #fff 40%, #00b5ae 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary); 
  color: rgb(255, 240, 240, 0.9); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; 
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8); 
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Section Styling */
section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(120deg, #0a0a0a 0%, #00141d 60%, #00b5ae 100%);
  color: var(--white-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--white-color);
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #0a0a0a 0%, #00141d 80%, #00b5ae 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white-color);
  font-size: 1.5rem;
}

.feature-title {
  margin-bottom: 1rem;
  color: var(--white-color);
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.feature-link:hover {
  transform: translateX(5px);
}

/* How It Works Section */

.how-it-works {
  background: linear-gradient(120deg, #0a0a0a 0%, #00141d 60%, #028e89 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

.process-flow {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: nowrap;
}

.process-card {
  flex: 0 1 220px;
  min-width: 180px;
  max-width: 220px;
  padding: 1.2rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0, 181, 174, 0.10);
  margin-bottom: 0;
}

.process-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: var(--shadow-lg);
}

.process-number {
  position: absolute;
  top: -12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white-color);
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,181,174,0.12);
}

.process-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white-color);
  font-size: 1.2rem;
}

.process-card h3 {
  margin-bottom: 0.7rem;
  color: var(--white-color);
  font-size: 1.05rem;
}

.process-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100px;
  min-width: 30px;
  margin: 0 0.5rem;
}

.connector-line {
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  position: relative;
}

.connector-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Pricing Section */

.pricing {
  background: linear-gradient(120deg, #0a0a0a 0%, #00141d 60%, #00b5ae 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-weight: 500;
  color: var(--white-color);
}

.discount {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.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: var(--glass-bg);
  transition: var(--transition);
  border-radius: 30px;
  border: 1px solid var(--glass-border);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background: var(--gradient-primary);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

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

.pricing-card {
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  background: rgba(0, 20, 29, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1.5px solid rgba(0, 181, 174, 0.18);
  border-radius: 22px;
  box-shadow: 0 12px 40px 0 rgba(0, 181, 174, 0.18), 0 2px 8px 0 rgba(0, 20, 29, 0.12);
}


.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2.5px solid var(--primary-color);
  background: linear-gradient(120deg, rgba(0,181,174,0.18) 0%, rgba(0,20,29,0.35) 100%);
  transform: scale(1.07);
  box-shadow: 0 18px 60px 0 rgba(0, 181, 174, 0.22), 0 2px 12px 0 rgba(0, 20, 29, 0.18);
}


.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(135, 2, 2);
  color: var(--white-color);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.2rem;
  color: var(--gray-color);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.annual-price {
  display: none;
}

.period {
  color: var(--gray-color);
}

.plan-description {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-features ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features .fas {
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(120deg, #0a0a0a 0%, #00141d 60%, #038d89 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.author-name {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white-color);
}

.author-role {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.testimonial-rating {
  color: #fbbf24;
}

/* FAQ Section  */
.faq {
  background: linear-gradient(120deg, #0a0a0a 0%, #00141d 100%);
  padding: 10px 0 5px 0;
  position: relative;
  color: var(--white-color);
  box-shadow: 0 8px 32px 0 rgba(0, 181, 174, 0.10);
}

.faq .section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 181, 174, 0.12);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(0, 20, 29, 0.25);
  border: 1.5px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 181, 174, 0.08);
  padding: 0;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq-question {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem 1rem 1rem;
  cursor: pointer;
  user-select: none;
}

.faq-plus {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: background 0.3s, transform 0.2s, color 0.2s;
}

.faq-plus i {
  color: #fff;
  font-weight: 400;
  font-size: 1.15rem;
}

.faq-item.active .faq-plus i {
  transform: rotate(45deg);
}

.faq-answer {
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.2rem 1rem 1.5rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 2rem;
}

.faq-item:not(:last-child) {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .faq-list {
    max-width: 100%;
    gap: 1rem;
  }
  .faq {
    padding: 60px 0 40px 0;
  }
  .faq-question {
    font-size: 1.05rem;
    padding: 1.2rem 1.2rem 1.2rem 1rem;
  }
  .faq-answer {
    padding: 0 1.2rem 1.2rem 1.5rem;
  }
}

/* Contact Section */
.contact {
  background: linear-gradient(120deg, #0a0a0a 0%, #00141d 60%, #00b5ae 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}

.contact-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  margin-bottom: 1rem;
  text-align: left;
  color: var(--white-color);
}
.contact-info {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 480px;
  padding: 2rem 1.5rem 2rem 0;
}


.contact-info .section-subtitle {
  text-align: left;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.2rem;
}

.contact-text h4 {
  margin: 0 0 0.25rem;
  color: var(--white-color);
}

.contact-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-container {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 480px;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  margin-left: 0;
  margin-right: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}
.contact-form button.btn.btn-primary {
  padding: 12px 16px;
  font-size: 0.9rem;
  width: auto;
  min-width: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 0.4rem auto 0;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  color: var(--white-color);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  background: var(--dark-color);
  padding: 0 5px;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--glass-footer);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 32px 0 rgba(0, 181, 174, 0.12);
  color: var(--white-color);
  padding: 3rem 0 1rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex: 2 1 600px;
  min-width: 320px;
  max-width: 900px;
}

.footer-support {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex: 1 1 400px;
  min-width: 220px;
  max-width: 400px;
}

.footer-support-section {
  min-width: 120px;
  max-width: 220px;
  padding-right: 1rem;
}
.footer-support-section h4 {
  margin-bottom: 1rem;
  color: var(--white-color);
}
.footer-support-section ul {
  list-style: none;
}
.footer-support-section li {
  margin-bottom: 0.5rem;
}
.footer-support-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}
.footer-support-section a:hover {
  color: var(--primary-color);
}

.footer-brand h3 {
  color: var(--white-color);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--white-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Home Page Decorative Elements */
.hero-decor {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00b5ae 0%, #00141d 100%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  z-index: 1;
}

.hero-decor-2 {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #00b5ae 0%, #00D4CC 100%);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.22;
  z-index: 1;
}

/* Improved Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #00b5ae 0%, #00D4CC 100%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 181, 174, 0.18);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 24px;
  transition: background 0.3s, transform 0.2s;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #00D4CC 0%, #00b5ae 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 181, 174, 0.22);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .contact-content {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    max-width: 700px;
  }
  .contact-info, .contact-form_container {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.2rem;
  }
  .process-flow { flex-direction: column; }
  .process-connector { display: none; }
  .process-card { max-width: 350px; min-width: 220px; margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; 
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: rgba(0, 20, 29, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 20px 20px;
    margin: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    box-shadow: 0 8px 32px 0 rgba(0, 181, 174, 0.2);
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
    max-height: 400px;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  }
  .nav-actions { display: none; }
  
  
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  
  .pricing-card.featured { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .hero-title { font-size: 2rem; }
  .btn-large { padding: 12px 24px; font-size: 1rem; }
  section { padding: 60px 0; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Toggle Animation */
.pricing-card .annual-price {
  display: none;
}

.pricing-card.annual .monthly-price {
  display: none;
}

.pricing-card.annual .annual-price {
  display: inline;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }

  .nav-menu {
    position: absolute;
    top: 70px; 
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: rgba(0, 20, 29, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 20px 20px;
    margin: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    box-shadow: 0 8px 32px 0 rgba(0, 181, 174, 0.2);
    z-index: 999;
  }

  .nav-menu.active {
    max-height: 400px;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  }

  .nav-link {
    padding: 1rem 0;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }

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

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
