:root {
  /* Vibrant & Premium HSL Palette */
  --her-primary: hsl(340, 82%, 66%); /* Vibrant Rose */
  --her-primary-dark: hsl(340, 82%, 45%);
  --her-primary-light: hsl(340, 100%, 96%);
  --her-accent: hsl(14, 100%, 70%); /* Warm Peach */
  --her-background: hsl(350, 100%, 99%);

  --him-primary: hsl(174, 55%, 51%); /* Vibrant Teal */
  --him-primary-dark: hsl(174, 100%, 27%);
  --him-primary-light: hsl(174, 50%, 95%);
  --him-accent: hsl(207, 90%, 68%); /* Sky Blue */
  --him-background: hsl(180, 40%, 98%);

  --text-primary: hsl(240, 30%, 15%); /* Deep Midnight */
  --text-secondary: hsl(240, 15%, 45%); /* Muted Steel */
  --text-hint: hsl(240, 10%, 70%);
  
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-full: 100px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--her-background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, hsla(340, 82%, 66%, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, hsla(174, 55%, 51%, 0.05) 0px, transparent 50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--her-background);
}

::-webkit-scrollbar-thumb {
  background: var(--text-hint);
  border-radius: 10px;
  border: 2px solid var(--her-background);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--her-primary);
}

/* Glassmorphism utility */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.blob {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -2;
  opacity: 0.15;
  pointer-events: none;
}

.blob-1 {
  background: var(--her-primary);
  top: -100px;
  left: -100px;
  animation: blob-float 15s infinite alternate;
}

.blob-2 {
  background: var(--him-primary);
  bottom: -100px;
  right: -100px;
  animation: blob-float 20s infinite alternate-reverse;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, 50px) scale(1.1); }
  66% { transform: translate(-50px, 100px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Animations */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }

.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }

/* Embedded Mode (App WebView) */
.embedded-mode header,
.embedded-mode footer {
  display: none !important;
}

.embedded-mode .page-content {
  padding-top: 20px !important;
}

.embedded-mode main {
  margin-top: 0 !important;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 24px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--her-primary-light);
  color: var(--her-primary);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1002;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  min-height: 100vh;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(340, 82%, 66%, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: float-slow 20s infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--her-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.5;
}

.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-store {
  transition: all var(--transition-fast);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.btn-store:hover {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
}

.hero-image {
  position: relative;
  perspective: 1000px;
}

.hero-image img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
  border-radius: 48px;
  border: 12px solid #1A1A2E;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 0 40px hsla(340, 82%, 66%, 0.2);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: all var(--transition-slow);
}

.hero-image:hover img {
  transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
  box-shadow: 
    0 60px 100px rgba(0, 0, 0, 0.2),
    0 0 60px hsla(340, 82%, 66%, 0.3);
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Features */
.features {
  padding: 100px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

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

.feature-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.08);
}

.feature-card.her:hover::before { background: var(--her-primary); }
.feature-card.him:hover::before { background: var(--him-primary); }
.feature-card.shared:hover::before { background: var(--text-primary); }

.feature-card .icon-box {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-card.her .icon-box {
  background: var(--her-primary-light);
  color: var(--her-primary);
}

.feature-card.him .icon-box {
  background: var(--him-primary-light);
  color: var(--him-primary);
}

.feature-card.shared .icon-box {
  background: #F1F1F7;
  color: var(--text-primary);
}

.feature-card.shared {
  background: #F1F1F7;
  color: var(--text-primary);
}

/* Pages Content (Privacy/Support) */
.page-content {
  padding: 160px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.page-content section {
  margin-bottom: 48px;
}

.page-content h2 {
  margin-bottom: 20px;
  color: var(--her-primary-dark);
}

.last-updated {
  color: var(--text-hint);
  font-size: 0.9rem;
  margin-top: -30px;
  margin-bottom: 40px;
}

.disclaimer-box {
  background: var(--her-primary-light);
  border: 1px solid var(--her-primary);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.disclaimer-box h2 {
  color: var(--her-primary-dark);
  margin-bottom: 12px;
}

footer {
  padding: 80px 0 40px;
  background: var(--text-primary);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  color: white;
  margin-bottom: 24px;
}

.footer-links h4 {
  margin-bottom: 24px;
}

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

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

.footer-links a {
  color: var(--text-hint);
  text-decoration: none;
  transition: color 0.3s;
}

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

.copyright {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--text-hint);
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    gap: 24px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .app-buttons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .hero-image img {
    max-width: 300px;
    border-width: 8px;
    border-radius: 32px;
  }

  .showcase-item {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
  }

  .showcase-image img {
    max-width: 280px;
  }

  .feature-list {
    align-items: center;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Showcase Section */
.showcase {
  padding: 120px 0;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-content {
  flex: 1;
}

.showcase-content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.showcase-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-list i {
  color: var(--her-primary);
  width: 24px;
}

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

.showcase-image img {
  max-width: 320px;
  border-radius: 40px;
  border: 8px solid #1A1A2E;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-item:hover .showcase-image img {
  transform: translateY(-10px) rotate(2deg);
}

.showcase-item.reverse:hover .showcase-image img {
  transform: translateY(-10px) rotate(-2deg);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
}

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

.step {
  text-align: center;
  padding: 40px 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--her-primary-light);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--her-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 24px;
}

.step h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--her-primary-light), var(--him-primary-light));
}

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

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--her-primary-dark);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(216, 27, 96, 0.2);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(216, 27, 96, 0.3);
  background: #C2185B;
}

.nav-cta {
  background: var(--her-primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--her-primary-dark);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    padding: 40px;
    text-align: center;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.75rem;
    width: 100%;
  }

  .nav-cta {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
    padding: 16px 40px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .logo {
    font-size: 1.25rem;
  }

  .page-content {
    padding-top: 120px;
  }

  .page-content h1 {
    font-size: 2.2rem;
  }
}

/* Science & Research Section */
.science {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--her-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.science::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(240, 98, 146, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.research-content h2 {
  font-size: 3.5rem;
  margin-bottom: 32px;
  line-height: 1.1;
  color: var(--text-primary);
}

.research-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.research-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.research-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.research-card:hover {
  transform: translateX(12px) scale(1.02);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--her-primary);
  box-shadow: var(--shadow-lg);
}

.research-card .tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--her-primary-light);
  color: var(--her-primary);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.research-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.research-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.research-card .citation {
  font-size: 0.85rem;
  color: var(--text-hint);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}

.research-card .citation i {
  font-size: 14px;
}

.research-card .citation a {
  color: var(--her-primary);
  text-decoration: none;
}

.research-card .citation a:hover {
  text-decoration: underline;
}

@media (max-width: 968px) {
  .research-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .research-content h2 {
    font-size: 2.5rem;
  }

  .research-card:hover {
    transform: translateY(-5px);
    transform: translateX(0);
  }
}

/* Why Choose Us Section */
.why-us {
  padding: 120px 0;
  background-color: var(--text-primary);
  color: white;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, hsla(340, 82%, 66%, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.why-us .section-title h2 {
  color: white;
}

.why-us .section-title p {
  color: var(--text-hint);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.usp-item {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.usp-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-10px);
  border-color: var(--her-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.usp-icon {
  width: 80px;
  height: 80px;
  background: rgba(240, 98, 146, 0.1);
  color: var(--her-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
}

.usp-item h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: white;
}

.usp-item p {
  color: var(--text-hint);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us {
    margin: 0 12px;
    border-radius: 40px;
    padding: 80px 0;
  }
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: white;
}

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

.pricing-card {
  padding: 48px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--her-primary-light);
}

.pricing-card.premium {
  background: var(--text-primary);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.premium:hover {
  border-color: var(--her-primary);
}

.popular-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--her-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.premium .price span {
  color: var(--text-hint);
}

.savings {
  font-size: 0.9rem;
  color: var(--her-primary);
  font-weight: 600;
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  margin: 32px 0 48px;
  padding: 0;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.plan-features i {
  width: 20px;
  height: 20px;
  color: var(--her-primary);
}

.premium .plan-features i {
  color: var(--her-primary-light);
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.premium .btn-primary {
  background: var(--her-primary);
  color: white;
  box-shadow: 0 10px 20px rgba(240, 98, 146, 0.3);
}

.premium .btn-primary:hover {
  background: white;
  color: var(--her-primary);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(240, 98, 146, 0.4);
}


@media (max-width: 968px) {
  .pricing {
    padding: 80px 0;
  }
  
  .pricing-grid {
    padding: 0 20px;
  }
  
  .pricing-card {
    padding: 32px;
  }
}