@font-face {
  font-family: 'Montserrat';
  src: url('public/assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('public/assets/fonts/Inter-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #27357e;
  --primary-dark: #0f2557;
  --primary-light: #2d4a9e;
  --accent-color: #97bc84;
  --accent-dark: #6da55f;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --background-light: rgba(243, 244, 247, 0.95);
  --background-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

/* Headings use Montserrat */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/* Header Styles */
header {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.header-container {
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1002;
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  white-space: nowrap;
  user-select: none;
  text-transform: lowercase;
  line-height: 1;
  display: flex;
  align-items: center;
}

.logo-dot {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  outline: 2px solid #27357e;
  outline-offset: 2px;
}

.btn-primary:focus-visible {
  outline-color: #27357e;
}

.btn-outline:focus-visible {
  outline-color: #27357e;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  padding: 8px;
  margin: -8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle:active {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.97) 0%,
    rgba(15, 23, 42, 0.97) 100%
  );
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  color: white;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
}

.mobile-menu-overlay.active .mobile-nav {
}

.mobile-nav a {
  color: white;
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.mobile-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
  left: 100%;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mobile-nav .btn {
  margin-top: 24px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 280px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active .mobile-auth-buttons {
  transform: translateY(0);
}

.mobile-auth-buttons .btn {
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-auth-buttons .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.mobile-auth-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.mobile-auth-buttons .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border: none;
  color: white;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.mobile-auth-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
}

/* Hamburger Animation */
.hamburger {
  width: 20px;
  height: 16px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 7px;
}

.hamburger span:nth-child(3) {
  top: 14px;
}

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

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

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

/* First Page Wrapper - contains header + hero + illustration */
.first-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: visible;
  z-index: 1;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #c4d8e8 0%, #d0dfe9 30%, #daeee0 100%);
  padding: 90px 0 0;
  height: 100dvh;
  display: flex;
  align-items: flex-start;
}

@media (max-height: 700px) {
  .hero {
    min-height: auto;
    padding: 20px 0 60px;
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
}

.hero-title-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 50%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  padding-bottom: 0.1em;
}

/* Hero Illustration */
.hero-illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 60dvh;
  width: auto;
  z-index: 1;
  pointer-events: none;
  max-width: none;
}

.hero-description {
  font-size: 28px;
  color: #0e1013;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 1000px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
  justify-content: center;
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-large.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  box-shadow: var(--shadow-xl);
}

.btn-large.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.btn-large.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
}

.btn-large.btn-outline:hover {
  border-color: var(--primary-color);
  background: rgba(27, 55, 134, 0.05);
}

.social-proof {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.proof-icon {
  width: 24px;
  height: 24px;
}

.proof-text {
  font-weight: 500;
  color: var(--text-dark);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 24px;
  transform: rotate(3deg);
  opacity: 0.2;
  filter: blur(2px);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: -16px;
  background: linear-gradient(
    45deg,
    rgba(27, 55, 134, 0.3),
    rgba(142, 190, 126, 0.3)
  );
  border-radius: 24px;
  transform: rotate(-2deg);
  opacity: 0.3;
  filter: blur(20px);
}

.hero-image-container {
  position: relative;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
}

.hero-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 55, 134, 0.3) 0%,
    transparent 50%
  );
}

.stats-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: var(--shadow-xl);
}

.stats-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-info h4 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 4px;
}

.stats-info p {
  font-size: 14px;
  color: var(--text-light);
}

.stats-number {
  text-align: right;
}

.stats-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stats-label {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

/* Generic Section Styles */
section {
  padding: 40px 0;
  background: var(--background-light);
}

.section-card {
  background: white;
  border-radius: 24px;
  padding: 80px 60px;
  margin: 0 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
  width: calc(100% - 64px);
}

.section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12),
    0 8px 16px -4px rgba(0, 0, 0, 0.08);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  color: var(--text-light);
  max-width: 768px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 40px 0;
  background: var(--background-light);
  margin-top: 100dvh;
  position: relative;
  z-index: 10;
  border-radius: 36px 36px 0 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

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

.feature-card-image {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.feature-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-card-content {
  padding: 0 24px 24px 24px;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.feature-card-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 40px 0;
  background: var(--background-light);
  position: relative;
  z-index: 10;
}

.benefits-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 24px;
  padding: 60px;
  margin: 0 32px;
  box-shadow: var(--shadow-xl);
  width: calc(100% - 64px);
  transition: all 0.3s ease;
}

.benefits-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12),
    0 8px 16px -4px rgba(0, 0, 0, 0.08);
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

.benefits-description {
  font-size: 20px;
  color: white;
  line-height: 1.6;
  max-width: 768px;
  margin: 0 auto;
}

.benefits-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-content {
  color: white;
  align-self: start;
}

.benefits-features-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.benefits-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
  margin: 0;
}

.benefits-list li {
  color: white;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.benefits-list li::marker {
  color: var(--accent-color);
  font-size: 1.2em;
}

.benefits-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-image img {
  width: 85%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Benefits Section Responsive */
@media (max-width: 900px) {
  .benefits-card {
    padding: 40px;
    margin: 0 16px;
    width: calc(100% - 32px);
  }

  .benefits-split {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 28px;
  }

  .benefits-description {
    font-size: 16px;
  }

  .benefits-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .benefits-card {
    padding: 24px;
  }

  .benefits-title {
    font-size: 24px;
  }

  .benefits-list li {
    font-size: 14px;
  }
}

/* Benefits Coach Section */
.benefits-coach {
  padding: 40px 0;
  background: var(--background-light);
  position: relative;
  z-index: 10;
}

.benefits-coach-card {
  background: var(--accent-color);
  border-radius: 24px;
  padding: 60px;
  margin: 0 32px;
  box-shadow: var(--shadow-xl);
  width: calc(100% - 64px);
  transition: all 0.3s ease;
}

.benefits-coach-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12),
    0 8px 16px -4px rgba(0, 0, 0, 0.08);
}

.benefits-coach-header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits-coach-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

.benefits-coach-description {
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
  max-width: 768px;
  margin: 0 auto;
}

.benefits-coach-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.benefits-coach-content {
  color: #000000;
  align-self: start;
}

.benefits-coach-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
  margin: 0;
}

.benefits-coach-list li {
  color: #000000;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.benefits-coach-list li::marker {
  color: var(--primary-color);
  font-size: 1.2em;
}

.benefits-coach-list li strong {
  color: var(--primary-color);
  font-weight: 700;
}

.benefits-coach-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-coach-image img {
  width: 85%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Benefits Coach Section Responsive */
@media (max-width: 900px) {
  .benefits-coach-card {
    padding: 40px;
    margin: 0 16px;
    width: calc(100% - 32px);
  }

  .benefits-coach-split {
    grid-template-columns: 1fr;
  }

  .benefits-coach-title {
    font-size: 28px;
  }

  .benefits-coach-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .benefits-coach-card {
    padding: 24px;
  }

  .benefits-coach-title {
    font-size: 24px;
  }

  .benefits-coach-list li {
    font-size: 14px;
  }
}

/* Pricing Section */
.pricing {
  padding: 40px 0;
  background: var(--background-light);
  position: relative;
  z-index: 10;
}

.pricing .section-description {
  margin-bottom: 32px;
}

.billing-toggle {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 48px;
}

.toggle-label {
  font-size: 18px;
  font-weight: 500;
}

.toggle-label:first-child {
  text-align: right;
}

.toggle-label:last-child {
  text-align: left;
}

.toggle-label.inactive {
  color: var(--text-light);
}

.toggle-label.active {
  color: var(--text-dark);
}

.toggle-switch {
  position: relative;
  width: 64px;
  height: 32px;
  background: var(--border-color);
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-color);
}

.toggle-knob {
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(32px);
}

.save-badge {
  background: var(--accent-color);
  color: white;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  margin-left: 4px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

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

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(27, 55, 134, 0.2), var(--shadow-xl);
}

.pricing-card.popular.temp-no-ring {
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
}

.pricing-card.highlight {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(27, 55, 134, 0.2), var(--shadow-xl);
}

/* Default styling when not hovering - Professional card gets highlight */
.pricing-cards:not(:hover) .pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(27, 55, 134, 0.2), var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.card-header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-subtitle {
  color: var(--text-light);
  margin-bottom: 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
  min-height: 80px;
}

.price-currency {
  font-size: 24px;
  font-weight: 500;
  margin-right: 4px;
}

.price-amount {
  font-size: 80px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.price-decimal {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}

.price-period {
  font-size: 20px;
  color: var(--text-light);
  margin-left: 4px;
}

.price-note {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  min-height: 20px;
}

.waterfall-timeline {
  margin-bottom: 32px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.timeline-bar {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  position: relative;
  margin-bottom: 8px;
}

.timeline-progress {
  position: absolute;
  height: 100%;
  border-radius: 4px;
  width: 25%;
  transition: width 0.5s ease;
}

.timeline-progress.essentials {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.timeline-progress.professional {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
}

.timeline-progress.executive {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.timeline-prices {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.features-list-card {
  margin-bottom: 32px;
}

.features-list-card > p {
  min-height: 24px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-list-card ul {
  list-style: none;
}

.features-list-card li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.features-list-card .check-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.features-list-card .sub-features {
  margin-left: 1.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  list-style-type: disc;
  padding-left: 1rem;
}

.features-list-card .sub-features li {
  display: list-item;
  padding-left: 0;
}

.card-cta {
  width: 100%;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.card-cta.primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  box-shadow: var(--shadow-lg);
}

.card-cta.primary-highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  box-shadow: var(--shadow-lg);
}

.card-cta.primary:hover,
.card-cta.primary-highlight:hover {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  transform: translateY(-1px);
  box-shadow: var(--shadow-xl);
}

.card-cta.outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.card-cta.outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pricing-note-bottom {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-light);
}

/* Compare Plans Section */
.compare-plans-section {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.compare-plans-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.compare-plans-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.compare-plans-btn.active .btn-icon {
  transform: rotate(180deg);
}

/* Pricing Footer */
.pricing-footer {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
}

/* AI Credits Information */
.ai-credits-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 24px auto;
  padding: 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  text-align: left;
}

.ai-credits-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-credits-content {
  flex: 1;
}

.ai-credits-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.ai-credits-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Signup Bonus */
.signup-bonus {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 24px auto;
  padding: 24px;
  background: linear-gradient(135deg, rgba(151, 188, 132, 0.08) 0%, rgba(109, 165, 95, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid rgba(151, 188, 132, 0.25);
  text-align: left;
}

.signup-bonus-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-bonus-content {
  flex: 1;
}

.signup-bonus-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 8px 0;
}

.signup-bonus-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.pricing-footer .footer-main-text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 12px auto;
}

.pricing-footer .footer-features {
  color: var(--text-light);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.pricing-footer .footer-features span {
  text-align: center;
}

.pricing-footer .footer-features span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}

.pricing-note-text {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
  opacity: 0.8;
}

/* Comparison Table */
.comparison-table-container {
  margin-top: 32px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.feature-header {
  text-align: left;
  background: var(--background-light);
  font-weight: 600;
  color: var(--text-dark);
}

.feature-name {
  text-align: left;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--background-light);
}

.plan-header {
  font-weight: 700;
  font-size: 16px;
  color: white;
  padding: 20px 12px;
}

.essentials-header {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.professional-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
}

.executive-header {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.separator-row {
  border-top: 2px solid var(--border-color);
}

.separator-row td {
  padding-top: 20px;
}

.text-green {
  color: var(--accent-color);
}

.text-red {
  color: #ef4444;
}

.comparison-table tbody tr:hover {
  background: var(--background-light);
}

/* Testimonials Section */
.testimonials {
  padding: 40px 0;
  background: var(--background-light);
  position: relative;
  z-index: 10;
}

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

.testimonial-card {
  background: #d6e8e3;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

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

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

.testimonial-text {
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.author-info h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-light);
}

/* FAQ Section */
.faq {
  padding: 40px 0;
  background: var(--background-light);
  position: relative;
  z-index: 10;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: hsla(230, 53%, 32%, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: hsla(100, 29%, 63%, 0.1);

}

.faq-question:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: -2px;
  border-radius: 8px;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-dark);
}

/* CTA Section */
.cta {
  padding: 40px 0;
  background: var(--background-light);
  position: relative;
  z-index: 10;
}

.cta-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: 24px;
  padding: 80px 60px;
  margin: 0 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
  width: calc(100% - 64px);
  color: white;
}

.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12),
    0 8px 16px -4px rgba(0, 0, 0, 0.08);
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-description {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-button {
  background: white;
  color: var(--primary-color);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.incentive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  opacity: 0.9;
  line-height: 1;
}

.incentive img {
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--background-light);
  color: white;
  padding: 40px 0 40px;
  position: relative;
  z-index: 10;
}

.footer-card {
  background: #1f2937;
  border-radius: 24px;
  padding: 64px 60px 16px;
  margin: 0 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
  width: calc(100% - 64px);
}

.footer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 64px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-brand h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: #9ca3af;
  margin-bottom: 24px;
}

.footer-links h3 {
  font-weight: 600;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
}

.footer-pawprint {
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-pawprint-logo {
  height: 32px;
  width: auto;
  transition: all 0.3s ease;
}

.footer-pawprint:hover .footer-pawprint-logo {
  transform: scale(1.05) rotate(-5deg);
}

/* Responsive Design */

@media (max-width: 1440px) {
  .hero-illustration {
    height: 55dvh;
  }

  .hero-description {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    white-space: normal;
  }

  .hero-title-line1 {
    display: block;
  }

  .hero-title-line2 {
    display: block;
  }

  .hero-description {
    font-size: 28px;
  }
}


@media (max-width: 1024px) {
  .hero-card,
  .section-card,
  .cta-card,
  .footer-card {
    margin: 0 24px;
    padding: 60px 40px;
    width: calc(100% - 48px);
  }

  .hero {
    min-height: calc(100dvh - 60px);
    padding: 90px 0 60px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-description {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .compare-plans-section {
    display: none;
  }

  .ai-credits-info {
    gap: 12px;
    padding: 20px;
    text-align: left;
  }

  .ai-credits-title {
    font-size: 16px;
  }

  .ai-credits-description {
    font-size: 14px;
  }

  .signup-bonus {
    gap: 12px;
    padding: 20px;
    text-align: left;
  }

  .signup-bonus-title {
    font-size: 16px;
  }

  .signup-bonus-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero-illustration {
    height: 50dvh;
  }

  .header-container {
    padding: 0 16px;
    height: 56px;
  }

  .logo-text {
    font-size: 22px;
  }

  .logo-dot {
    font-size: 22px;
  }

  nav {
    display: none;
  }

  .auth-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: -8px;
  }

  .hero {
    min-height: calc(100dvh - 56px);
    padding: 80px 0 40px;
  }

  .hero-card,
  .section-card,
  .cta-card,
  .footer-card {
    margin: 0 20px;
    padding: 48px 32px;
    border-radius: 16px;
    width: calc(100% - 40px);
  }

  .hero-title {
    font-size: 54px;
    white-space: normal;
  }

  .hero-title-line1 {
    display: block;
  }

  .hero-title-line2 {
    display: block;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-proof {
    flex-direction: column;
    gap: 16px;
  }

  .section-title,
  .cta-title {
    font-size: 32px;
  }

  .price-amount {
    font-size: 64px;
  }

  .billing-toggle {
    margin: 32px 0;
    gap: 12px;
  }

  .toggle-label {
    font-size: 16px;
  }

  .toggle-switch {
    width: 56px;
    height: 28px;
  }

  .toggle-knob {
    width: 20px;
    height: 20px;
  }

  .toggle-switch.active .toggle-knob {
    transform: translateX(28px);
  }

  .save-badge {
    font-size: 11px;
    padding: 3px 6px;
  }
}

@media (max-width: 640px) {
  .hero-illustration {
    height: 45dvh;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 17px;
  }

  .btn-large {
    padding: 18px 32px;
    font-size: 17px;
  }

  .billing-toggle {
    margin: 24px 0;
    gap: 10px;
  }

  .toggle-label {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-illustration {
    height: 40dvh;
  }

  .header-container {
    padding: 0 12px;
    height: 52px;
  }

  .logo-image {
    width: 32px;
    height: 32px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-dot {
    font-size: 20px;
  }

  .hero-card,
  .section-card,
  .cta-card,
  .footer-card {
    margin: 0 16px;
    padding: 32px 20px;
    width: calc(100% - 32px);
  }

  .hero-container,
  .section-container,
  .cta-container,
  .footer-container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 42px;
    white-space: normal;
  }

  .hero-title-line1 {
    display: block;
  }

  .hero-title-line2 {
    display: block;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .billing-toggle {
    margin: 24px 0;
    gap: 12px;
  }

  .toggle-label {
    font-size: 14px;
  }

  .toggle-switch {
    width: 52px;
    height: 26px;
  }

  .toggle-knob {
    width: 18px;
    height: 18px;
  }

  .toggle-switch.active .toggle-knob {
    transform: translateX(26px);
  }

  .save-badge {
    font-size: 10px;
    padding: 2px 5px;
  }
}

/* Scroll target adjustment for card layout */
section[id] {
  scroll-margin-top: 40px;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

/* ===================================
   POPUP STYLES
   =================================== */

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(27, 55, 134, 0.2);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Popup Content */
.popup-content {
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: visible;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease;
}

.popup-content.popup-wide {
  max-width: 95%;
  width: 1400px;
  padding: 3rem;
}

/* Inner scrollable area for popup content */
.popup-content .form-container,
.popup-content .confirmation-message,
.popup-content .video-container {
  max-height: 90vh;
  overflow-y: auto;
}

/* Comparison table in popup */
.comparison-table-popup {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: auto;
}

.comparison-table-popup table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table-popup thead {
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comparison-table-popup th,
.comparison-table-popup td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table-popup th.feature-header,
.comparison-table-popup td.feature-name {
  text-align: left;
  font-weight: 600;
}

.comparison-table-popup td.feature-name.indent {
  padding-left: 2rem;
  font-weight: 400;
  color: var(--text-light);
}

.comparison-table-popup .plan-header {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.5rem 1rem;
  background: white;
  color: var(--text-dark);
  min-height: 60px;
  vertical-align: middle;
}

.comparison-table-popup .price-row th {
  padding: 0.5rem 1rem;
}

.comparison-table-popup .plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.comparison-table-popup .price-cents {
  font-size: 1.25rem;
  font-weight: 600;
}

.comparison-table-popup .price-period {
  font-size: 1rem;
  color: var(--text-light);
}

.comparison-table-popup .billing-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.25rem;
}

.comparison-table-popup .cta-row button {
  width: 100%;
  max-width: 200px;
}

.comparison-table-popup .comparison-cta {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--border-color);
  background: white;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.comparison-table-popup .comparison-cta.primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-color: var(--primary-color);
}

.comparison-table-popup .comparison-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table-popup .category-header td:first-child {
  background: var(--surface-color);
  font-weight: 700;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  text-align: left;
}

.comparison-table-popup .category-header td {
  font-weight: 700;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.comparison-table-popup .check-green {
  color: var(--primary-color);
}

.comparison-table-popup .highlight-green {
  background: #e8f5e9 !important;
  font-weight: 600;
}

.comparison-table-popup tbody tr:hover {
  background: var(--surface-color);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Popup Close Button */
.popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.popup-close:hover {
  background: var(--text-dark);
  color: white;
  transform: rotate(90deg);
}

.popup-close i {
  font-size: 18px;
}

/* Form Container in Popup */
.form-container {
  padding: 48px;
  transition: all 0.3s ease;
}

/* Form Groups */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 18px;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 18px 20px 18px 56px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: white;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 55, 134, 0.1);
}

.form-input::placeholder {
  color: var(--text-lighter);
}

/* Waitlist Button */
.waitlist-button {
  width: 100%;
  padding: 20px 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  font-family: "Montserrat", sans-serif;
}

.waitlist-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(27, 55, 134, 0.3);
}

.waitlist-button:active {
  transform: translateY(0);
}

.waitlist-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Incentive Badge */
.incentive-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary-dark);
  border-radius: 12px;
  font-size: 14px;
  margin-top: 20px;
}

.incentive-badge > span:first-child {
  font-size: 20px;
  line-height: 1;
}

/* Confirmation Message */
.confirmation-message {
  padding: 64px 48px;
  animation: fadeIn 0.5s ease;
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.confirmation-icon i {
  font-size: 40px;
  color: white;
}

.confirmation-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.confirmation-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.confirmation-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--background-light);
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 1px solid var(--border-color);
}

.confirmation-email i {
  color: var(--text-light);
}

.confirmation-email span {
  font-weight: 600;
  color: var(--text-dark);
}

.confirmation-footer {
  font-size: 14px;
  color: var(--text-lighter);
  line-height: 1.8;
}

/* Video Container in Popup */
.popup-content .video-container {
  padding: 24px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

/* Responsive Popup Styles */
@media (max-width: 768px) {
  .form-container {
    padding: 32px 24px;
  }

  .confirmation-message {
    padding: 48px 32px;
  }

  .confirmation-title {
    font-size: 26px;
  }

  .popup-content .video-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 24px 20px;
  }

  .confirmation-message {
    padding: 40px 24px;
  }

  .confirmation-icon {
    width: 64px;
    height: 64px;
  }

  .confirmation-icon i {
    font-size: 32px;
  }

  .confirmation-title {
    font-size: 24px;
  }

  .confirmation-text {
    font-size: 16px;
  }

  .popup-content {
    border-radius: 16px;
  }

  .popup-close {
    width: 36px;
    height: 36px;
    top: -18px;
    right: -18px;
  }
}

/* About Popup Styles */
.about-popup-content {
  padding: 48px 64px;
  text-align: center;
}

.about-popup-content .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.about-popup-content .logo-image {
  width: 48px;
  height: 48px;
}

.about-popup-content .logo-text {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: lowercase;
}

.about-popup-content .logo-dot {
  color: var(--accent-color);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.about-message {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.built-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.built-by-text {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.pawprintf-link {
  display: inline-block;
  transition: all 0.3s ease;
}

.pawprintf-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(0);
}

.pawprintf-link:hover .pawprintf-logo {
  transform: scale(1.05) rotate(-5deg);
}

/* Contact Popup Styles */
.contact-popup-content {
  padding: 48px;
  text-align: center;
}

.contact-message {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
}

.email-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Responsive About and Contact Popup Styles */
@media (max-width: 768px) {
  .about-popup-content,
  .contact-popup-content {
    padding: 32px 40px;
  }

  .about-popup-content .logo-text {
    font-size: 28px;
  }

  .about-popup-content .logo-dot {
    font-size: 28px;
  }

  .about-message,
  .contact-message {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-popup-content,
  .contact-popup-content {
    padding: 24px 20px;
  }

  .about-popup-content .logo-image {
    width: 40px;
    height: 40px;
  }

  .about-popup-content .logo-text {
    font-size: 24px;
  }

  .about-popup-content .logo-dot {
    font-size: 24px;
  }

  .about-message,
  .contact-message {
    font-size: 15px;
  }

  .pawprintf-logo {
    height: 32px;
  }
}

/* Cookie Consent Popup Styles */
.cookie-consent-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-consent-backdrop {
  position: absolute;
  inset: 0;
  background: hsla(220, 80%, 30%, 0.2);
  backdrop-filter: blur(4px);
}

.cookie-consent-dialog {
  position: relative;
  width: 100vw;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #e5ebf3;
  backdrop-filter: blur(40px);
  border-radius: 1.25rem;
  border: 8px solid white;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  font-family: "Inter", sans-serif;
}

.cookie-consent-dialog * {
  font-family: "Inter", sans-serif;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cookie-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #cfd9e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(220, 80%, 30%);
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.cookie-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.cookie-description {
  font-size: 0.825rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.cookie-policy-link {
  display: block;
  color: hsl(220, 80%, 30%);
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.cookie-policy-link:hover {
  text-decoration: underline;
}

.cookie-categories {
  max-height: 35vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.cookie-category {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.7rem;
  margin-bottom: 0.75rem;
}

.cookie-category .category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.category-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1.5px solid hsl(220, 80%, 30%);
  border-radius: 0.25rem;
  background: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.category-checkbox:checked {
  background: hsl(220, 80%, 30%);
  border-color: hsl(220, 80%, 30%);
}

.category-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.category-checkbox:disabled {
  cursor: not-allowed;
  background: #8499c3;
  border-color: #8499c3;
}

.category-checkbox:disabled::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.category-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
  flex: 1;
  cursor: pointer;
}

.category-badge {
  font-size: 0.6875rem;
  color: #6b7280;
  background: #e5e7eb;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.category-description {
  font-size: 0.7rem;
  color: #6b7280;
  margin: 0 0 0.25rem 1.875rem;
  line-height: 1.4;
}

.category-note {
  font-size: 0.6875rem;
  color: #6b7280;
  margin: 0.25rem 0 0 1.875rem;
}

.toggle-details-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem;
  background: none;
  border: none;
  color: hsl(220, 80%, 30%);
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.toggle-details-btn:hover {
  color: hsl(220, 80%, 25%);
}

.toggle-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.toggle-chevron.rotated {
  transform: rotate(180deg);
}

.optional-cookies {
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cookie-btn-primary {
  background: hsl(220, 80%, 30%);
  color: white;
}

.cookie-btn-primary:hover {
  background: hsl(220, 80%, 25%);
}

.cookie-btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.cookie-btn-secondary:hover {
  background: #f9fafb;
}

/* Custom scrollbar for cookie categories */
.cookie-categories::-webkit-scrollbar {
  width: 6px;
}

.cookie-categories::-webkit-scrollbar-track {
  background: transparent;
}

.cookie-categories::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.cookie-categories::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Cookie consent responsive styles */
@media (max-width: 480px) {
  .cookie-consent-dialog {
    width: 95vw;
    padding: 1.5rem;
    border-width: 4px;
  }

  .cookie-header {
    gap: 0.5rem;
  }

  .cookie-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .cookie-title {
    font-size: 1rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
