/* PREMIUM SOLOPRENEUR WEBSITE STYLES */
:root {
  --primary-blue: #1d3a6b;
  --light-blue: #8fc2f2;
  --secondary-teal: #5FA6A0;
  --secondary-gray: #C7CBD3;
  --white: #fff;
  --font-body: 'Inter', Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', Arial, sans-serif;
  --base-size: 16px;
  --scale: 1.25;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(29, 58, 107, 0.08);
}

body {
  font-family: var(--font-body);
  font-size: var(--base-size);
  color: var(--primary-blue);
  background: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-top: 0;
  font-weight: 700;
}
h1 { font-size: calc(var(--base-size) * 2.5); }
h2 { font-size: calc(var(--base-size) * 2); }
h3 { font-size: calc(var(--base-size) * 1.5); }
p { font-size: var(--base-size); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}
.logo img {
  height: 40px;
}
.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: var(--secondary-teal);
}
.nav-cta {
  margin-left: var(--space-lg);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  display: block;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  padding: var(--space-xxl) 0 var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><ellipse cx="80%25" cy="20%25" rx="200" ry="80" fill="%238fc2f2" opacity="0.13"/><ellipse cx="20%25" cy="80%25" rx="180" ry="60" fill="%235FA6A0" opacity="0.09"/></svg>') no-repeat center/cover;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}
.hero-subtitle {
  color: var(--light-blue);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-block;
  border-radius: var(--radius);
  padding: var(--space-xs) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(29,58,107,0.06);
}
.btn-primary {
  background: var(--secondary-teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}
.btn-tertiary {
  background: var(--light-blue);
  color: var(--primary-blue);
}
.btn-tertiary:hover {
  background: var(--secondary-gray);
  color: var(--primary-blue);
}

/* AUDIENCE CARDS */
.audience-cards {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
  width: 320px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
}
.audience-card:hover {
  box-shadow: 0 8px 32px rgba(29,58,107,0.14);
  background: var(--light-blue);
  transform: translateY(-4px) scale(1.02);
}
.icon-bg {
  background: var(--secondary-gray);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm) auto;
}

/* FEATURES SECTION */
.features-grid {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
  flex: 1 1 340px;
  margin: var(--space-sm);
}
.feature-card.left ul {
  padding-left: 0;
  list-style: none;
}
.feature-card.left li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}
.feature-card.left .icon {
  margin-right: var(--space-xs);
  display: flex;
  align-items: center;
}

/* LEAD MAGNETS SECTION */
.lead-magnets-grid {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}
.lead-magnet-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
  flex: 1 1 340px;
  max-width: 400px;
  margin: var(--space-sm);
}
.lead-form {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}
.lead-form input[type="email"] {
  flex: 1;
  padding: var(--space-xs) var(--space-sm);
  border: 1.5px solid var(--secondary-gray);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}
.lead-form input[type="email"]:focus {
  border-color: var(--secondary-teal);
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
  flex: 1 1 320px;
  max-width: 340px;
  margin: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 24px;
}
.testimonial-quote:before {
  content: '“';
  font-size: 2rem;
  color: var(--secondary-teal);
  position: absolute;
  left: 0;
  top: -8px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.avatar {
  background: var(--secondary-teal);
  color: var(--white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}
.name { font-weight: 600; }
.company { color: var(--secondary-gray); font-size: 0.95rem; }

/* FAQ SECTION */
.faq-list {
  margin-top: var(--space-xl);
}
.faq-item {
  border-bottom: 1px solid var(--secondary-gray);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: var(--space-md) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-blue);
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--secondary-teal);
}
.faq-toggle {
  margin-left: var(--space-xs);
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><line x1="10" y1="4" x2="10" y2="16" stroke="%235FA6A0" stroke-width="2"/><line x1="4" y1="10" x2="16" y2="10" stroke="%235FA6A0" stroke-width="2"/></svg>') no-repeat center/contain;
  transition: transform 0.2s;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: var(--space-md);
  color: var(--primary-blue);
  font-size: 1rem;
}
.faq-item.active .faq-answer {
  display: block;
}

/* FOOTER */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md) 0;
}
.footer-grid {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 220px;
  margin-bottom: var(--space-md);
}
.footer-col h4 {
  color: var(--light-blue);
  margin-bottom: var(--space-sm);
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: var(--space-xs);
}
.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover {
  opacity: 1;
}
.footer-socials a {
  margin-right: var(--space-xs);
  display: inline-block;
}
.footer-bottom {
  text-align: center;
  color: var(--secondary-gray);
  margin-top: var(--space-lg);
  font-size: 0.95rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .container { padding: 0 var(--space-sm); }
  .audience-cards, .features-grid, .lead-magnets-grid, .testimonials-grid, .footer-grid {
    flex-direction: column;
    gap: var(--space-md);
    align-items: stretch;
  }
  .audience-card, .feature-card, .lead-magnet-card, .testimonial-card, .footer-col {
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--space-md) 0;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding: var(--space-xl) 0 var(--space-lg) 0; }
  .nav-menu { display: none; position: absolute; top: 64px; right: 0; background: var(--white); width: 100vw; box-shadow: var(--shadow); flex-direction: column; gap: 0; z-index: 200; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { flex-direction: column; gap: var(--space-md); }
}

/* Card and Button Hover Effects */
.audience-card:hover, .feature-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(29,58,107,0.18);
  transform: translateY(-4px) scale(1.03);
  background: var(--light-blue);
}
.btn:focus, .btn:hover {
  filter: brightness(0.95);
  box-shadow: 0 4px 16px rgba(29,58,107,0.13);
  outline: none;
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-4);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.nav-links {
  display: flex;
  gap: var(--space-4);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

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

.mobile-menu {
  display: none;
  cursor: pointer;
}


/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: var(--space-12) 0 var(--space-8);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, var(--primary-light-blue), transparent);
  top: -150px;
  right: -50px;
  animation: float 15s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, var(--secondary-teal), transparent);
  bottom: -100px;
  left: -50px;
  animation: float 15s ease-in-out infinite alternate;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at center, var(--secondary-blue), transparent);
  top: 30%;
  right: 10%;
  animation: float 15s ease-in-out infinite 5s;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: var(--space-3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: var(--space-6);
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.video-container {
  position: relative;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 80%;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}


/* ===== PATH SECTION ===== */
.path-section {
  padding: var(--space-10) 0;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.path-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--secondary-gray) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
  border-radius: 2px;
}

.path-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}

.path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--secondary-light);
  height: 100%;
}

.card-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, var(--primary-light-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  transform: scale(0.8);
}

.path-card:hover .card-bg-glow {
  opacity: 0.2;
}

.path-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.path-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.path-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
  transition: transform 0.3s ease;
}

.path-card:hover .path-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.path-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.path-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.path-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.path-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: var(--space-10) 0;
  position: relative;
  background: var(--secondary-light);
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-circle-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--primary-light-blue), transparent);
  opacity: 0.07;
  top: -200px;
  left: -100px;
}

.bg-circle-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--secondary-teal), transparent);
  opacity: 0.05;
  bottom: -100px;
  right: -50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
}

.feature-title {
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
  position: relative;
  padding-top: var(--space-2);
}

.feature-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.feature-list {
  margin-bottom: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-4);
  gap: var(--space-3);
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.feature-item-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.feature-item-description {
  color: var(--text-secondary);
  margin: 0;
}

/* Right Column - Premium Card */
.premium-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 100%;
}

.card-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--secondary-light-blue) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
}

.premium-title {
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
  color: var(--white);
  position: relative;
}

.premium-description {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-4);
}

.premium-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

/* ===== TOOLS SECTION ===== */
.tools-section {
  padding: var(--space-10) 0;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.tools-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--secondary-gray) 1px, transparent 1px), linear-gradient(90deg, var(--secondary-gray) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.tool-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--secondary-light);
  height: 100%;
}

.card-gradient {
  position: absolute;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light-blue), transparent);
  opacity: 0.1;
  border-radius: 100%;
}

.tool-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  position: relative;
}

.tool-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  position: relative;
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--secondary-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--secondary-light);
}

.form-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(29, 58, 107, 0.1);
  background: var(--white);
  outline: none;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-pattern-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, var(--white), transparent);
}

.bg-pattern-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, var(--white), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  height: 100%;
}

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

.quote-mark {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.1;
  color: var(--primary-blue);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.author-title {
  font-size: 0.875rem;
  color: var(--primary-blue);
  margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--space-10) 0;
  background: var(--white);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  overflow: hidden;
  border: 1px solid var(--secondary-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--space-4);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--space-4);
}

.faq-answer-content {
  padding-bottom: var(--space-4);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding-top: var(--space-8);
  position: relative;
  overflow: hidden;
}

.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--primary-light-blue), transparent);
  opacity: 0.1;
  top: -150px;
  right: -50px;
}

.footer-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--secondary-teal), transparent);
  opacity: 0.1;
  bottom: -100px;
  left: -50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  padding-bottom: var(--space-6);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.footer-description {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-4);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: var(--space-2);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.social-link:hover svg {
  fill: var(--primary-blue);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: all 0.3s ease;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: var(--space-2);
}

.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

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

.footer-copyright {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

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

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

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ===== SCROLL PROGRESS & BACK TO TOP ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease;
}

.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1001;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 6.5rem;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1002;
  cursor: pointer;
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background: #1ebe57;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-2);
  }
  .features-grid, .tools-grid, .testimonials-grid, .footer-content {
    gap: var(--space-4);
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: var(--space-2);
  }
  .nav-links {
    gap: var(--space-2);
  }
  .hero-section {
    padding: var(--space-8) 0 var(--space-6);
  }
  .features-section, .tools-section, .testimonials-section, .faq-section, .footer {
    padding: var(--space-6) 0;
  }
  .features-grid, .tools-grid, .testimonials-grid, .footer-content {
    grid-template-columns: 1fr;
  }
  .video-container {
    width: 100%;
  }
  .footer-content {
    gap: var(--space-3);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-1);
  }
  .hero-title, .feature-title, .premium-title {
    font-size: 1.25rem !important;
  }
  .hero-section {
    min-height: 60vh;
  }
  .footer {
    padding-top: var(--space-4);
  }
}


ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 150px 0 100px;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
#about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text, .about-image {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
}

.image-placeholder {
    background-color: #e9ecef;
    height: 300px;
    border-radius: var(--border-radius);
}

/* Services Section */
#services {
    background-color: #f8f9fa;
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Section */
#contact {
    background-color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
}

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

.footer-links ul li a {
    color: #ddd;
}

.footer-links ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
}
