/* 
 * TinyPaws Landing Page Styles
 * A responsive design for the TinyPaws pet memory app landing page
 */

/* Base Styles and Variables */
:root {
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --primary-light: #e1f0fa;
  --secondary-color: #2ecc71;
  --secondary-dark: #27ae60;
  --secondary-light: #e8f8f0;
  --accent-color: #56C9C1;
  --accent-light: #a3e4db;
  --text-color: #2d3436;
  --text-light: #636e72;
  --background-color: #ffffff;
  --background-alt: #f8fafc;
  --background-gradient: linear-gradient(180deg, var(--primary-light) 0%, var(--background-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --border-color: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --glass-background: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

section {
  padding: var(--spacing-lg) 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
  display: inline-block;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-md);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(86, 201, 193, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(86, 201, 193, 0.4);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1200px;
  background-color: var(--glass-background);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo img {
  height: 40px;
}

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

.nav-links li {
  margin-left: 1.25rem;
}

/* Ensure consistent spacing between all navigation items */
.nav-links li {
  margin-right: 0;
  margin-left: 1.25rem;
}

.nav-links li:first-child {
  margin-left: 0;
}

.nav-cta {
  margin-left: 3.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('paw.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  left: -25px;
  top: 50%;
  margin-top: -10px;
}

.nav-links a:hover::before {
  opacity: 0.6;
  transform: translateY(0);
}

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

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #56C9C1;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger:hover span {
  background-color: #31A199;
}

.hamburger.active span {
  background-color: #56C9C1;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(86, 201, 193, 0.05) 100%);
  padding: 120px 0 80px;
}

.hero .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

@media (min-width: 901px) {
  .nav-menu .nav-cta {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .navbar {
    padding: 0 0.5rem;
  }
  
  .nav-links li {
    margin-left: 0.8rem;
  }
  
  .nav-cta {
    margin-left: 1.5rem;
    padding: 0.5rem 1.25rem;
  }
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }
}

.hero h1 .text-primary {
  color: var(--accent-color);
}

.hero-copy {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-color);
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.btn-accent {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 158, 140, 0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 158, 140, 0.6);
  color: white;
  text-decoration: none;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-text:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.btn-text .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-text:hover .arrow-icon {
  transform: translateY(3px);
}

.trust-indicator {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.trust-indicator a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.trust-indicator a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  z-index: 1;
}

.phone-frame {
  position: relative;
  background: white;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(86, 201, 193, 0.2);
}

.phone-screen {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3/6;
}

.phone-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Remove old styles for pet info, memory cards, etc. that are no longer needed */

.streak-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.streak-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.streak-days {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* Pet Story Experience Section */
.pet-story-experience {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.pet-story-experience::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light-10);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.pet-story-experience::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.story-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pet-story-experience h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
  font-size: 2.5rem;
}

.story-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-light);
}

.benefit-cards {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.benefit-card {
  flex: 1;
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color-10));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.benefit-icon svg {
  color: var(--primary-color);
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.benefit-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Problem Statement Section */
.problem {
  background: linear-gradient(180deg, var(--background-color) 0%, var(--background-alt) 100%);
  padding: var(--spacing-xl) 0;
}

.problem-content {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
  color: var(--text-light);
  line-height: 1.7;
}

.problem-cards {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.problem-card {
  flex: 1;
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.problem-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.experience-showcase {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  background: linear-gradient(135deg, #ffffff, var(--background-alt));
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow);
  margin-top: var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

/* Removed circular decorative elements as requested */

.showcase-content {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-right: var(--spacing-md);
}

.showcase-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.showcase-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 1.1rem;
  max-width: 500px;
}

.showcase-gallery {
  flex: 1.2;
  display: flex;
  gap: var(--spacing-sm);
  position: relative;
  z-index: 1;
  justify-content: center;
  perspective: 1000px;
}

.app-screenshot {
  position: relative;
  transition: all 0.4s ease;
  transform: translateY(0);
  max-width: 28%;
  height: auto;
}

.app-screenshot:nth-child(1) {
  transform: translateY(10px) rotate(-3deg);
  z-index: 1;
}

.app-screenshot:nth-child(2) {
  transform: translateY(0) rotate(0deg);
  z-index: 3;
}

.app-screenshot:nth-child(3) {
  transform: translateY(10px) rotate(3deg);
  z-index: 2;
}

.experience-showcase:hover .app-screenshot:nth-child(1) {
  transform: translateY(5px) rotate(-5deg) translateX(-5px);
}

.experience-showcase:hover .app-screenshot:nth-child(2) {
  transform: translateY(-10px);
}

.experience-showcase:hover .app-screenshot:nth-child(3) {
  transform: translateY(5px) rotate(5deg) translateX(5px);
}

.screenshot-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 6px solid white;
}

@media (max-width: 768px) {
  .benefit-cards {
    flex-direction: column;
  }
  
  .experience-showcase {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-md);
  }
  
  .showcase-content {
    padding-right: 0;
    margin-bottom: var(--spacing-lg);
  }
  
  .showcase-gallery {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .app-screenshot {
    max-width: 75%;
    transform: none !important;
    margin-bottom: var(--spacing-sm);
  }
  
  .screenshot-img {
    max-width: 100%;
    border-width: 5px;
  }
  
  .app-screenshot:nth-child(1),
  .app-screenshot:nth-child(2),
  .app-screenshot:nth-child(3) {
    transform: none !important;
  }
  
  .experience-showcase:hover .app-screenshot:nth-child(1),
  .experience-showcase:hover .app-screenshot:nth-child(2),
  .experience-showcase:hover .app-screenshot:nth-child(3) {
    transform: none !important;
  }
  
  .screenshot-img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .problem-cards {
    flex-direction: column;
  }
  
  .solution-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .solution-image {
    margin-top: var(--spacing-md);
    max-width: 100%;
  }
}

/* Testimonials Section */
.testimonials {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, var(--background-color) 0%, var(--background-alt) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: var(--background-color);
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
}

.testimonials .section-intro {
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-light);
  opacity: 0.4;
  font-family: Georgia, serif;
  height: 2.5rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: -0.5rem;
  position: relative;
  z-index: 0;
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-light);
  padding-left: var(--spacing-md);
  margin-left: 0.5rem;
  font-style: normal;
}

.testimonial-card blockquote::before {
  display: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: var(--spacing-sm);
}

.author-name {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.1rem;
}

.author-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Pet name styling with Caveat font */
.pet-name {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .testimonial-card {
    padding: var(--spacing-md);
  }
}

/* Solution Overview Section */
.app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--spacing-lg) 0;
}

.app-screenshot {
  width: 100%;
  max-width: 600px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow);
}

.animation-container {
  width: 100%;
  max-width: 800px;
  height: 200px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

/* Core Features Section */
.features {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.features .section-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-light);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  box-shadow: 0 8px 16px rgba(86, 201, 193, 0.2);
  color: white !important;
}

.feature-icon i {
  width: 30px;
  height: 30px;
  stroke: #ffffff !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5px;
  fill: none;
  color: #ffffff !important;
  filter: brightness(1.2);
  transition: transform 0.2s ease, stroke-width 0.2s ease;
}

.feature-icon:hover i {
  transform: scale(1.1);
  stroke-width: 2.5px;
}

.feature-card h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.feature-card ul {
  padding-left: 1.25rem;
  margin: 0;
  flex-grow: 1;
}

.feature-card li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.feature-card li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 2px;
}

.feature-card li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .feature-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .feature-card {
    padding: var(--spacing-md);
  }
}

/* How It Works Section */
.how-it-works {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--background-alt) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(86, 201, 193, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 158, 140, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.how-it-works .text-primary {
  color: var(--primary-color);
  position: relative;
}

.how-it-works .text-primary::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.how-it-works .section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* Process Steps - Desktop */
.process-steps-desktop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #ffffff, var(--background-alt));
  border-radius: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(86, 201, 193, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.step-icon-container {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
}

.step-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(86, 201, 193, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(49, 161, 153, 0.3);
}

/* Removing step numbers as requested */

.process-step h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.process-step p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.time-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(86, 201, 193, 0.2);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .time-badge {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(86, 201, 193, 0.25);
}

/* Process Illustration */
.process-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem auto 0;
  max-width: 800px;
  position: relative;
}

.illustration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.illustration-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.illustration-item:not(:last-child) .connection-line {
  position: absolute;
  top: 30px;
  left: 60%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), #e0f2f1);
  z-index: 1;
}

.illustration-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-top: 0.5rem;
}

/* Coming Soon Page */
.coming-soon {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--background-color), var(--background-alt));
}

.coming-soon .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.coming-soon-content {
  flex: 1;
}

.coming-soon h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.coming-soon-message {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  max-width: 500px;
}

.paw-prints {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.paw-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}

.coming-soon-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cs-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 10px solid white;
}

@media (max-width: 768px) {
  .coming-soon .container {
    flex-direction: column;
    text-align: center;
  }
  
  .coming-soon h1 {
    font-size: 3rem;
  }
  
  .coming-soon-message {
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .paw-prints {
    justify-content: center;
  }
  
  .cs-image {
    max-height: 400px;
  }
}

/* Mobile Steps */
.process-steps-mobile {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .process-steps-desktop {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-illustration {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .process-steps-desktop {
    display: none;
  }
  
  .process-steps-mobile {
    display: grid;
  }
  
  .process-illustration {
    display: none;
  }
  
  .how-it-works h2 {
    font-size: 2rem;
  }
  
  .how-it-works .section-intro {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .process-step {
    padding: 1.5rem 1rem;
  }
  
  .step-icon-container {
    width: 70px;
    height: 70px;
  }
  
  .process-step h3 {
    font-size: 1.25rem;
  }
  
  .process-step p {
    font-size: 0.9375rem;
  }
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(180deg, var(--background-alt) 0%, var(--secondary-light) 15%, var(--background-alt) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.step {
  background-color: var(--background-color);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-illustration {
  width: 100%;
  height: 150px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-sm);
}

.step ul {
  margin-top: var(--spacing-sm);
}

.step li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: 1.5rem;
}

.step li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Pricing Section */
.pricing {
  padding: var(--spacing-xl) 0;
}

.pricing h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.plan-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--spacing-md);
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-card.premium {
  border-color: var(--primary-color);
}

.plan-illustration {
  width: 100px;
  height: 100px;
  background-color: var(--background-alt);
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.plan-price-annual {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.plan-features {
  margin: var(--spacing-md) 0;
  text-align: left;
}

.plan-features li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: 1.5rem;
}

.plan-features li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Data Ownership Section */
.data-ownership {
  background-color: var(--background-alt);
  padding: var(--spacing-xl) 0;
}

.data-ownership .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.data-ownership h2 {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.data-ownership p {
  text-align: left;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.7;
  font-size: 1.1rem;
  color: var(--text-color);
}

.data-ownership .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

.key-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

@media (min-width: 992px) {
  .key-points {
    grid-template-columns: repeat(4, 1fr);
  }
}

.point {
  text-align: center;
}

.point-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.point-icon svg {
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.point h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.point p {
  margin: 0;
  font-size: 0.9rem;
}

/* Nutrified Connection Section */
.nutrified-connection {
  background: var(--light-color);
  padding: 6rem 0;
}

.nutrified-connection .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nutrified-connection h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.nutrified-connection h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.nutrified-connection p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
  font-size: 1.1rem;
  text-align: left;
}

.nutrified-connection .container > p {
  text-align: center;
}

/* Waitlist Section */
.waitlist {
  text-align: center;
  padding: 6rem 0;
  background-color: var(--background-alt);
}

.waitlist .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.waitlist h2 {
  margin-bottom: 2rem;
  color: var(--text-color);
}

.waitlist p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  color: var(--text-color);
  font-size: 1.1rem;
}

.waitlist-form {
  max-width: 600px;
  margin: var(--spacing-lg) auto;
  text-align: left;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

input, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  width: auto;
  margin-right: var(--spacing-xs);
}

.checkbox label {
  margin-bottom: 0;
}

.waitlist-perks {
  margin: var(--spacing-lg) 0;
}

.waitlist-perks ul {
  display: inline-block;
  text-align: left;
}

.waitlist-perks li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: 1.5rem;
}

.waitlist-perks li::before {
  content: "✨";
  position: absolute;
  left: 0;
}

.waitlist-counter {
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.counter-number {
  font-weight: 700;
  color: var(--primary-color);
}

/* FAQ Section */
.faq {
  background-color: var(--background-alt);
  padding: 5rem 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: white;
}

@media (max-width: 576px) {
  .faq-question {
    padding: 1.25rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 10px;
  }
}

.faq-question:hover {
  background-color: rgba(86, 201, 193, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.toggle-icon:before,
.toggle-icon:after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  transition: transform 0.4s ease;
}

.toggle-icon:before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.toggle-icon:after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.faq-item.active .toggle-icon:after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, 
              padding 0.4s ease,
              opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0.5rem 1.5rem 2rem;
  max-height: 1000px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.final-cta .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
  font-weight: 700;
  line-height: 1.3;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.enhanced-secondary {
  margin-top: var(--spacing-md);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: white;
  color: var(--text-color);
  padding: var(--spacing-lg) 0 var(--spacing-sm);
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
  }
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.text-gray-600 {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-logo img {
  height: 40px;
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  margin-bottom: var(--spacing-md);
}

.footer-links h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-links a {
  color: var(--text-light);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--background-alt);
  border-radius: 50%;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.newsletter {
  margin-bottom: var(--spacing-md);
}

.newsletter h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.newsletter p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-sm);
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.newsletter-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.copyright, .tagline {
  margin-bottom: var(--spacing-xs);
  font-size: 0.9rem;
  color: var(--text-light);
}

.nutrified-partnership {
  display: flex;
  align-items: center;
}

.nutrified-partnership span {
  font-weight: 600;
  margin-left: 0.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.nutrified-partnership a {
  text-decoration: none;
}

.nutrified-partnership a:hover span {
  color: var(--secondary-color);
}

/* Waitlist Overlay Popup */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.overlay.active .popup {
  transform: translateY(0);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.popup-header h3 {
  margin-bottom: 0;
}

.close-popup {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: var(--primary-color);
}

.popup-content {
  padding: var(--spacing-md);
}

.popup-form {
  margin: var(--spacing-md) 0;
}

.error-message {
  color: #e74c3c;
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
}

.success-message {
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Reveal Animation */
.reveal-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: var(--spacing-lg);
  }
  
  .split-screen {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 0.75rem 1.5rem;
  }

  .navbar {
    padding: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 247, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-menu::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(86, 201, 193, 0.05);
    border-radius: 50%;
    z-index: -1;
  }
  
  .nav-menu::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 158, 140, 0.05);
    border-radius: 50%;
    z-index: -1;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
  }
  
  .nav-links::after {
    content: '';
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  }
  
  .nav-links li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-links li:last-child {
    margin-left: 0;
  }
  
  .nav-links a {
    font-size: 1.25rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 30px;
    z-index: -1;
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0;
  }

  .nav-links a:hover::before {
    background-color: rgba(86, 201, 193, 0.1);
    transform: scale(1);
    opacity: 1;
  }

  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .hamburger {
    display: block;
    z-index: 1001;
    padding: 0.5rem;
  }
  
  /* Hide the button in the navbar on mobile and show it in the mobile menu */
  .header .nav-cta {
    display: none;
  }
  
  .nav-menu .nav-cta {
    display: inline-block;
    margin: 2rem 0 0 0;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(86, 201, 193, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .nav-menu .nav-cta::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: all 0.6s ease;
  }
  
  .nav-menu .nav-cta:hover::before {
    left: 100%;
  }
  
  .nav-menu .nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(86, 201, 193, 0.3);
  }
  
  .feature-cards,
  .process-steps,
  .key-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .header {
    width: 95%;
    padding: 0.5rem 0.75rem;
    top: 1rem;
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero {
    padding: 100px 0 50px;
  }
  
  .hero-copy {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .process-steps-desktop {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .faq-item {
    padding: 1.25rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-xs);
    padding: 0.75rem 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .popup {
    width: 90%;
    padding: 1.5rem;
  }
}
