/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff6b35;
  --primary-dark: #d4501c;
  --primary-light: #ff8c5a;
  --secondary: #1a1a2e;
  --dark: #0f0f1e;
  --darker: #0a0a14;
  --light: #ffffff;
  --gray: #2a2a3e;
  --gray-light: #3a3a4e;
  --gray-lighter: #4a4a5e;
  --success: #00d9a3;
  --warning: #ffa500;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  color: var(--primary);
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.logo-highlight {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--light);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 90, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(0, 217, 163, 0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b0b0b0;
  margin-bottom: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--light);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--light);
  border-color: var(--gray-lighter);
}

.cta-button.secondary:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  min-width: 150px;
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: var(--secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 4rem;
  font-size: 1.15rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--dark);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 107, 53, 0.2);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.feature-card p {
  color: #aaa;
  line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 2rem;
  background: var(--darker);
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.pricing-card {
  background: var(--dark);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: 1.5rem;
  right: -2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--light);
  padding: 0.4rem 3rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.card-header {
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray);
  background: rgba(255, 107, 53, 0.03);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.pricing-card:hover .card-icon {
  transform: rotateY(360deg);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--light);
  font-weight: 700;
}

.price-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

.price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-subtitle {
  font-size: 0.9rem;
  color: #888;
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.features li i {
  color: var(--success);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.features li span {
  flex: 1;
}

.addon {
  padding: 1rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  text-align: center;
  color: var(--primary);
  border: 1px solid rgba(255, 107, 53, 0.2);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.delivery-time {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card-footer {
  padding: 0 2rem 2rem;
}

.select-plan {
  width: 100%;
  padding: 1.1rem;
  background: var(--gray);
  color: var(--light);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.select-plan:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.select-plan.featured-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.select-plan.featured-btn:hover {
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.addons-section {
  max-width: 1000px;
  margin: 4rem auto 0;
}

.addons-section h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--light);
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.addon-item {
  background: rgba(255, 107, 53, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.addon-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.addon-item i {
  color: var(--primary);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.addon-content {
  display: flex;
  flex-direction: column;
}

.addon-content strong {
  color: var(--light);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.addon-content span {
  color: #888;
  font-size: 0.9rem;
}

/* Process Section */
.process-section {
  padding: 6rem 2rem;
  background: var(--secondary);
}

.process-timeline {
  max-width: 800px;
  margin: 3rem auto 4rem;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child) .step-connector {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, var(--primary), transparent);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  background: var(--dark);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.process-step:hover .step-content {
  transform: translateX(10px);
  border-color: var(--primary);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.step-content p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.step-duration {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tech-stack {
  text-align: center;
  margin-top: 4rem;
}

.tech-stack h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--light);
}

.tech-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
}

.tech-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
}

.tech-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.tech-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #aaa;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: var(--darker);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark);
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 107, 53, 0.05);
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--light);
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-section {
  padding: 6rem 2rem;
  background: var(--secondary);
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid var(--gray);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--light);
  font-size: 0.95rem;
}

.form-group small {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--gray);
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--gray-light);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.radio-option {
  display: block;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--gray);
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
}

.radio-option input[type="radio"]:checked+.radio-label {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
}

.radio-label i {
  font-size: 1.5rem;
  color: var(--primary);
}

.radio-label strong {
  color: var(--light);
  font-size: 0.95rem;
}

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 1.25rem;
  background: var(--gray);
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  transition: var(--transition);
}

.checkbox-option:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.05);
}

.checkbox-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.checkbox-label i {
  color: var(--primary);
  font-size: 1.2rem;
}

.checkbox-label strong {
  color: var(--light);
}

.addon-price {
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.char-count {
  text-align: right;
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}

.estimated-total {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.estimated-total h4 {
  font-family: var(--font-heading);
  color: var(--light);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.total-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.estimated-total small {
  color: #888;
  font-size: 0.85rem;
}

.submit-btn {
  width: 100%;
  padding: 1.3rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--light);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: var(--dark);
  padding: 5rem 2rem 2rem;
  border-top: 2px solid var(--primary);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.1rem;
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-description {
  color: #888;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-disclaimer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--light);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #888;
}

.footer-contact i {
  color: var(--primary);
  width: 20px;
}

.footer-disclaimer p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  opacity: 1;
  /* Ensure visible */
}

.modal-content {
  background: var(--dark);
  padding: 3rem;
  border-radius: 25px;
  max-width: 550px;
  width: 90%;
  text-align: center;
  border: 2px solid var(--primary);
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--light);
  background: rgba(255, 107, 53, 0.1);
}

.modal-icon {
  width: 100px;
  height: 100px;
  background: var(--success);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(0, 217, 163, 0.3);
}

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.modal-content p {
  color: #aaa;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.modal-list {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 1.5rem auto;
  background: rgba(255, 107, 53, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.modal-list li {
  color: #aaa;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.modal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.modal-close-btn {
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.modal-close-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .process-timeline {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 1rem 4rem;
    min-height: auto;
  }

  .nav-container {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    border-top: 1px solid var(--gray);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat {
    min-width: 120px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .process-step:not(:last-child) .step-connector {
    left: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 7rem 1rem 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }

  .modal-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-success {
  color: var(--success);
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

/* Fixed reconstruction of the truncated end */
.process-step:hover .step-connector {
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
}