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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #a8a3b3;
  background: #1a1625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #ff6b9d;
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: #ff9bbb;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
.section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header .section-subtitle {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 107, 157, 0.2);
}
.section-header .section-title {
  margin-bottom: 1rem;
}
.section-header .section-description {
  color: #a8a3b3;
  font-size: 1.125rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 25px rgba(255, 107, 157, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
}
.btn-secondary:hover::before {
  transform: translateX(100%);
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: #ff6b9d;
  border: 2px solid #ff6b9d;
}
.btn-secondary:hover {
  background: rgba(255, 107, 157, 0.1);
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group--center {
  justify-content: center;
}

.glass-card {
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  border-radius: 1.5rem;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-9 {
  transition-delay: 0.9s;
}

.delay-10 {
  transition-delay: 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes glow {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(45, 40, 56, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.logo:hover {
  color: #ff9bbb;
}
.logo img {
  height: 40px;
  width: auto;
  border-radius: 0.5rem;
}

.nav {
  display: none;
}
@media (min-width: 992px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}
.nav-link {
  font-weight: 500;
  color: #a8a3b3;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ff6b9d;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover {
  color: #ff6b9d;
}
.nav-link:hover::after {
  width: 80%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
}
.nav-cta:hover::before {
  transform: translateX(100%);
}
.nav-cta:active {
  transform: translateY(0);
}
.nav-cta {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}
.nav-cta:hover {
  box-shadow: 0 0 25px rgba(255, 107, 157, 0.3);
}
.nav-cta {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ff6b9d;
  border-radius: 2px;
  transition: all 0.15s ease;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 22, 37, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.active {
  transform: translateX(0);
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-link {
  display: block;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #a8a3b3;
  text-decoration: none;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}
.mobile-nav-link:hover {
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
  border-color: rgba(255, 107, 157, 0.2);
}
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.mobile-nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.mobile-nav-cta:hover {
  transform: translateY(-2px);
}
.mobile-nav-cta:hover::before {
  transform: translateX(100%);
}
.mobile-nav-cta:active {
  transform: translateY(0);
}
.mobile-nav-cta {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}
.mobile-nav-cta:hover {
  box-shadow: 0 0 25px rgba(255, 107, 157, 0.3);
}
.mobile-nav-cta {
  width: 100%;
  margin-top: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1625 0%, #2d1f3d 50%, #1a1625 100%);
  padding-top: 100px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 120px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
  filter: blur(80px);
  animation: glow 4s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
  filter: blur(80px);
  animation: glow 4s ease-in-out infinite 2s;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 100px);
}
@media (min-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.hero-content {
  text-align: center;
}
@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 157, 0.1);
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ff6b9d;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
}
.hero-badge i {
  font-size: 1.125rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description {
  font-size: 1.125rem;
  color: #a8a3b3;
  max-width: 500px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}
@media (min-width: 992px) {
  .hero-description {
    margin: 0 0 2rem;
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}
@media (min-width: 992px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.store-badge {
  display: inline-block;
  transition: all 0.3s ease;
}
.store-badge img {
  height: 48px;
  width: auto;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .store-badge img {
    height: 56px;
  }
}
.store-badge:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.store-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #2d2838;
  color: #ffffff;
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.store-button:hover {
  transform: translateY(-3px);
  border-color: #ff6b9d;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
  color: #ffffff;
}
.store-button .store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.store-button .store-icon path {
  transition: fill 0.15s ease;
}
.store-button-text {
  text-align: left;
}
.store-button-text small {
  display: block;
  font-size: 0.75rem;
  color: #a8a3b3;
}
.store-button-text span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}
@media (min-width: 992px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.stat-item {
  text-align: center;
}
@media (min-width: 992px) {
  .stat-item {
    text-align: left;
  }
}
.stat-item-value {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b9d;
  text-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}
.stat-item-label {
  font-size: 0.875rem;
  color: #a8a3b3;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-image {
    justify-content: flex-end;
  }
}
.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
.hero-image-mockup {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  border-radius: 1.5rem;
}
.hero-image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.hero-image-decoration .circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 157, 0.3);
}
.hero-image-decoration .circle--1 {
  width: 100px;
  height: 100px;
  top: 5%;
  right: -5%;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}
.hero-image-decoration .circle--2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: -10%;
  animation: float 4s ease-in-out infinite 1s;
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.3);
}
.hero-image-decoration .circle--3 {
  width: 40px;
  height: 40px;
  top: 40%;
  left: 5%;
  animation: float 3s ease-in-out infinite 0.5s;
  border-color: rgba(103, 232, 249, 0.4);
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

.features {
  background: #221e2d;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.feature-card:hover::before {
  opacity: 0.6;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 157, 0.4);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  color: #ffffff;
}
.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.feature-icon--calendar {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(255, 107, 157, 0.1));
  border: 1px solid rgba(255, 107, 157, 0.3);
  color: #ff6b9d;
}
.feature-icon--baby {
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.3), rgba(103, 232, 249, 0.1));
  border: 1px solid rgba(103, 232, 249, 0.3);
  color: #67e8f9;
}
.feature-icon--health {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(255, 107, 157, 0.1));
  border: 1px solid rgba(255, 107, 157, 0.3);
  color: #ff9bbb;
}
.feature-icon--kick {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(167, 139, 250, 0.1));
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: #a78bfa;
}
.feature-icon--checklist {
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.3), rgba(110, 231, 183, 0.1));
  border: 1px solid rgba(110, 231, 183, 0.3);
  color: #6ee7b7;
}
.feature-icon--names {
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.3), rgba(103, 232, 249, 0.1));
  border: 1px solid rgba(103, 232, 249, 0.3);
  color: #67e8f9;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 1rem;
  color: #a8a3b3;
  line-height: 1.6;
}

.getting-pregnant {
  background: #1a1625;
  position: relative;
}
.getting-pregnant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at top center, rgba(255, 107, 157, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.topics-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .topics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.topic-card {
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.topic-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 157, 0.3);
}
.topic-card:hover .topic-link {
  color: #ff9bbb;
}

.topic-icon {
  font-size: 48px;
  margin-bottom: 1rem;
  display: block;
}

.topic-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.topic-description {
  font-size: 0.875rem;
  color: #a8a3b3;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.topic-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ff6b9d;
  text-decoration: none;
  transition: all 0.15s ease;
}
.topic-link i {
  width: 16px;
  height: 16px;
}
.topic-link:hover {
  gap: 0.5rem;
}

.week-by-week {
  background: #1a1625;
  position: relative;
  overflow: hidden;
}
.week-by-week::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.week-by-week::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at left, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.timeline-container {
  position: relative;
  max-width: 100%;
  z-index: 1;
}

.timeline {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.timeline::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .timeline {
    gap: 2rem;
  }
}

.week-card {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.week-card:hover {
  border-color: #ff6b9d;
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 157, 0.2);
}
.week-card:first-child {
  margin-left: 1.5rem;
}
.week-card:last-child {
  margin-right: 1.5rem;
}

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

.week-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  color: #1a1625;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.week-trimester {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a8a3b3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.week-size {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 107, 157, 0.1);
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.week-size .size-icon {
  font-size: 32px;
}
.week-size .size-text {
  text-align: left;
}
.week-size .size-text small {
  display: block;
  font-size: 0.75rem;
  color: #a8a3b3;
}
.week-size .size-text span {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.week-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.week-description {
  font-size: 0.875rem;
  color: #a8a3b3;
  line-height: 1.6;
}

.timeline-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d2838;
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  color: #ff6b9d;
  transition: all 0.15s ease;
}
.timeline-btn:hover {
  background: #ff6b9d;
  color: #1a1625;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}
.timeline-btn i {
  font-size: 1.25rem;
}

.timeline-cta {
  text-align: center;
  margin-top: 3rem;
}
.timeline-cta p {
  font-size: 1rem;
  color: #a8a3b3;
  margin-bottom: 1rem;
}

.nutrition {
  background: #221e2d;
  position: relative;
}

.nutrition-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .nutrition-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nutrition-card {
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.nutrition-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 157, 0.3);
}
.nutrition-card:hover .nutrition-image img {
  transform: scale(1.05);
}

.nutrition-image {
  height: 180px;
  overflow: hidden;
}
.nutrition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nutrition-content {
  padding: 1.5rem;
}

.nutrition-category {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 107, 157, 0.15);
  color: #ff6b9d;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.nutrition-title {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.nutrition-excerpt {
  font-size: 0.875rem;
  color: #a8a3b3;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.nutrition-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ff6b9d;
  text-decoration: none;
  transition: all 0.15s ease;
}
.nutrition-link i {
  width: 16px;
  height: 16px;
}
.nutrition-link:hover {
  color: #ff9bbb;
  gap: 0.5rem;
}

.nutrition-cta {
  text-align: center;
  margin-top: 3rem;
}

.nutrition-loading {
  text-align: center;
  padding: 3rem;
  color: #a8a3b3;
}

.language-selector {
  display: flex;
  align-items: center;
  background: rgba(45, 40, 56, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 3px;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .language-selector {
    display: none;
  }
}

.lang-btn {
  border: none;
  background: transparent;
  color: #a8a3b3;
  padding: 8px 16px;
  border-radius: 40px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-btn:hover {
  color: #ffffff;
}
.lang-btn.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.4);
}

html[lang=en] .lang-tr {
  display: none !important;
}

html[lang=tr] .lang-en {
  display: none !important;
}

html[lang=tr] .nav-link[data-tr],
html[lang=tr] .mobile-nav-link[data-tr] {
  font-size: 0 !important;
}
html[lang=tr] .nav-link[data-tr]::before,
html[lang=tr] .mobile-nav-link[data-tr]::before {
  content: attr(data-tr);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  html[lang=tr] .nav-link[data-tr]::before,
  html[lang=tr] .mobile-nav-link[data-tr]::before {
    font-size: 0.875rem;
  }
}
html[lang=tr] .nav-link[data-tr]::before,
html[lang=tr] .mobile-nav-link[data-tr]::before {
  visibility: visible;
  display: inline-block;
  white-space: nowrap;
}

.how-it-works {
  background: #221e2d;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.steps-container {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  position: relative;
  text-align: center;
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 3rem;
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .step::after {
    content: "";
    position: absolute;
    top: 65px;
    right: -1.5rem;
    width: calc(2rem * 2);
    height: 2px;
    background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
    opacity: 0.5;
  }
  .step:last-child::after {
    display: none;
  }
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  color: #1a1625;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255, 107, 157, 0.1);
  border: 1px solid rgba(255, 107, 157, 0.3);
  color: #ff6b9d;
  border-radius: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 1rem;
  color: #a8a3b3;
  line-height: 1.6;
}

.download {
  background: #1a1625;
  position: relative;
  overflow: hidden;
}
.download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 107, 157, 0.15) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(167, 139, 250, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.download .container {
  position: relative;
  z-index: 1;
}

.download-box {
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 4rem;
  border-radius: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.download-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

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

.download-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .download-title {
    font-size: 3rem;
  }
}

.download-description {
  font-size: 1.25rem;
  color: #a8a3b3;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.download-store-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #2d2838;
  border: 1px solid rgba(255, 107, 157, 0.3);
  color: #ffffff;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.download-store-btn:hover {
  transform: translateY(-3px);
  border-color: #ff6b9d;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
  color: #ffffff;
}
.download-store-btn .store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.download-store-btn-text {
  text-align: left;
}
.download-store-btn-text small {
  display: block;
  font-size: 0.75rem;
  color: #a8a3b3;
}
.download-store-btn-text span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.ads-banner {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(61, 55, 72, 0.5);
  border: 1px dashed rgba(255, 107, 157, 0.3);
  border-radius: 1.5rem;
  text-align: center;
}
.ads-banner-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a8a3b3;
  margin-bottom: 0.5rem;
}
.ads-banner-placeholder {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 40, 56, 0.5);
  border-radius: 1rem;
  font-size: 0.875rem;
  color: #a8a3b3;
}

.footer {
  background: #1a1625;
  color: #a8a3b3;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 107, 157, 0.1);
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  max-width: 300px;
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d2838;
  border: 1px solid rgba(255, 107, 157, 0.2);
  color: #a8a3b3;
  border-radius: 9999px;
  transition: all 0.15s ease;
}
.social-link:hover {
  background: #ff6b9d;
  border-color: #ff6b9d;
  color: #1a1625;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}
.social-link i {
  font-size: 1.125rem;
}

.footer-column h4 {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  font-size: 0.875rem;
  color: #a8a3b3;
  text-decoration: none;
  transition: all 0.15s ease;
}
.footer-column a:hover {
  color: #ff6b9d;
  padding-left: 0.25rem;
}

.footer-newsletter h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-newsletter p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem 1rem;
  background: #2d2838;
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
}
.newsletter-input::placeholder {
  color: #a8a3b3;
}
.newsletter-input:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.2);
}

.newsletter-btn {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  border: none;
  border-radius: 0.5rem;
  color: #1a1625;
  cursor: pointer;
  transition: all 0.15s ease;
}
.newsletter-btn:hover {
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
  transform: translateY(-2px);
}
.newsletter-btn i {
  font-size: 1.125rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 157, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: #a8a3b3;
  text-decoration: none;
}
.footer-links a:hover {
  color: #ff6b9d;
}

.week-detail {
  padding-top: 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(255, 107, 157, 0.03) 0%, transparent 50%);
}

.week-hero {
  padding: 3rem 0;
  text-align: center;
}
.week-hero .week-hero-badge {
  margin-bottom: 2rem;
}
.week-hero .week-hero-badge .week-number-large {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b9d;
  line-height: 1.2;
}
.week-hero .week-hero-badge .week-trimester-text {
  display: block;
  font-size: 1rem;
  color: #a8a3b3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.week-hero .week-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .week-hero .week-hero-content {
    grid-template-columns: 1fr;
  }
}
.week-hero .week-baby-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.week-hero .week-info-card {
  background: #2d2838;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.week-hero .week-size-display {
  text-align: center;
}
.week-hero .week-size-display .size-image img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}
.week-hero .week-size-display h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.week-hero .week-size-display .size-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.week-hero .week-size-display .size-stats .stat-item {
  text-align: center;
}
.week-hero .week-size-display .size-stats .stat-item .stat-label {
  display: block;
  font-size: 0.875rem;
  color: #a8a3b3;
  margin-bottom: 0.25rem;
}
.week-hero .week-size-display .size-stats .stat-item .stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff6b9d;
}

.week-highlights {
  padding: 3rem 0;
}
.week-highlights .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.week-highlights .highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.week-highlights .highlight-card {
  position: relative;
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.8) 0%, rgba(26, 22, 37, 0.9) 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 157, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.week-highlights .highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 157, 0.5) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.week-highlights .highlight-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 107, 157, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.week-highlights .highlight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 157, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 157, 0.5);
}
.week-highlights .highlight-card:hover::before {
  opacity: 1;
  animation: borderGlow 2s linear infinite;
}
.week-highlights .highlight-card:hover::after {
  opacity: 1;
}
.week-highlights .highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.8));
}
.week-highlights .highlight-card:hover h4 {
  color: #ff9bbb;
  text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}
.week-highlights .highlight-card .highlight-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.week-highlights .highlight-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.week-highlights .highlight-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.week-info-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.week-info-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}
.week-info-section .week-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
}
.week-info-section .week-content p {
  margin-bottom: 1rem;
}
.week-info-section .week-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1rem 0;
}

.week-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.week-navigation .nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #2d2838;
  border-radius: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.week-navigation .nav-btn:hover:not(.disabled) {
  background: #ff6b9d;
  color: white;
}
.week-navigation .nav-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.week-navigation .nav-btn.all-weeks-btn {
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
}
.week-navigation .nav-btn.all-weeks-btn:hover {
  background: #ff6b9d;
  color: white;
}
.week-navigation .nav-btn svg {
  width: 20px;
  height: 20px;
}

.week-cta {
  padding: 3rem 0;
}
.week-cta .cta-box {
  background: linear-gradient(135deg, #ff6b9d 0%, rgb(255, 30.5, 106.3445945946) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  color: white;
}
.week-cta .cta-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.week-cta .cta-box p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.week-cta .cta-box .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.week-cta .cta-box .cta-buttons .store-badge img {
  height: 48px;
  width: auto;
}

.week-card .week-stats {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: #a8a3b3;
}
.week-card .week-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #ff6b9d;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
}
.week-card .week-link:hover {
  text-decoration: underline;
}

.mom-tips {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
:global(html[lang="en"]) .mom-tips .lang-tr {
  display: none !important;
}
:global(html[lang="tr"]) .mom-tips .lang-en {
  display: none !important;
}
.mom-tips .section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.3));
}
.mom-tips .carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.mom-tips .carousel-track {
  position: relative;
  height: 500px;
  perspective: 1000px;
  margin-bottom: 2rem;
}
.mom-tips .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotateX(10deg) translateY(50px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}
.mom-tips .carousel-slide.active {
  opacity: 1;
  transform: rotateX(0) translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}
.mom-tips .tip-card {
  background: rgba(30, 27, 46, 0.7);
  border-radius: 2rem;
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.mom-tips .tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b9d, #a78bfa);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}
.mom-tips .tip-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 107, 157, 0.1);
}
.mom-tips .tip-image {
  height: 200px;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  flex-shrink: 0;
}
.mom-tips .tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mom-tips .tip-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}
.mom-tips .tip-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* Scrollbar styling for webkit browsers */
}
.mom-tips .tip-content::-webkit-scrollbar {
  width: 6px;
}
.mom-tips .tip-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.mom-tips .tip-content::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 157, 0.3);
  border-radius: 3px;
}
.mom-tips .tip-week {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 107, 157, 0.2);
  color: #ff9bbb;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  align-self: flex-start;
  border: 1px solid rgba(255, 107, 157, 0.3);
}
.mom-tips .tip-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.mom-tips .tip-body {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
}
.mom-tips .tip-body * {
  color: rgba(255, 255, 255, 0.9) !important;
  background-color: transparent !important;
}
.mom-tips .tip-body p {
  margin-bottom: 1rem;
}
.mom-tips .tip-body a {
  color: #c4b5fd !important;
  text-decoration: none;
  border-bottom: 1px dashed rgba(167, 139, 250, 0.5);
}
.mom-tips .tip-body a:hover {
  color: #ffffff !important;
  border-bottom-style: solid;
}
.mom-tips .carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.mom-tips .nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.mom-tips .nav-btn:hover {
  background: #ff6b9d;
  border-color: #ff6b9d;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}
.mom-tips .nav-btn svg {
  transition: transform 0.3s ease;
}
.mom-tips .nav-btn.prev:hover svg {
  transform: translateX(-2px);
}
.mom-tips .nav-btn.next:hover svg {
  transform: translateX(2px);
}
.mom-tips .carousel-indicators {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.mom-tips .carousel-indicators .indicator-count {
  color: #ff9bbb;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 60px;
  text-align: center;
}
.mom-tips .carousel-indicators .progress-track {
  width: 150px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.mom-tips .carousel-indicators .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff6b9d, #a78bfa);
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

@media (max-width: 768px) {
  .mom-tips .carousel-track {
    height: 600px;
  }
  .mom-tips .tip-card {
    padding: 1.5rem;
  }
  .mom-tips .carousel-indicators {
    transform: scale(0.9);
  }
}
.trimesters {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.trimesters::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.trimesters .section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fdf2f8 0%, #ff9bbb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .trimesters .section-title {
    font-size: 2rem;
  }
}
.trimesters .trimesters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .trimesters .trimesters-grid {
    grid-template-columns: 1fr;
  }
}
.trimesters .trimester-card {
  background: rgba(45, 40, 56, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}
.trimesters .trimester-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
  border-color: rgba(255, 107, 157, 0.3);
}
.trimesters .trimester-card:hover .trimester-number {
  transform: scale(1.1) rotate(5deg);
  color: #ff6b9d;
  opacity: 0.15;
}
.trimesters .trimester-card .trimester-header {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 2;
}
.trimesters .trimester-card .trimester-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-size: 8rem;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.03;
  line-height: 1;
  transition: all 0.4s ease;
  font-family: "Outfit", sans-serif;
  z-index: 1;
}
.trimesters .trimester-card .trimester-titles {
  position: relative;
  z-index: 2;
}
.trimesters .trimester-card .trimester-titles h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ff9bbb;
}
.trimesters .trimester-card .trimester-titles .week-range {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 107, 157, 0.1);
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #ff9bbb;
  font-weight: 500;
}
.trimesters .trimester-card .trimester-body {
  position: relative;
  z-index: 2;
  color: rgba(253, 242, 248, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}
.trimesters .trimester-card .trimester-body p {
  margin-bottom: 1rem;
}
.trimesters .trimester-card .trimester-body p:last-child {
  margin-bottom: 0;
}
.trimesters .trimester-card .trimester-body {
  max-height: 300px;
  overflow-y: auto;
}
.trimesters .trimester-card .trimester-body::-webkit-scrollbar {
  width: 4px;
}
.trimesters .trimester-card .trimester-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.trimesters .trimester-card .trimester-body::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 157, 0.3);
  border-radius: 2px;
}

.baby-names-widget {
  background: #1a1625;
  position: relative;
  overflow: hidden;
}
.baby-names-widget::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.baby-names-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  background: rgba(45, 40, 56, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  color: #a8a3b3;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.filter-btn:hover {
  border-color: rgba(255, 107, 157, 0.5);
  color: #ff9bbb;
  transform: translateY(-2px);
}
.filter-btn.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.gender-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.gender-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(45, 40, 56, 0.6);
  font-size: 1rem;
  font-weight: 600;
  color: #a8a3b3;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.gender-btn svg {
  width: 18px;
  height: 18px;
}
.gender-btn:hover {
  border-color: rgba(167, 139, 250, 0.5);
  color: #c4b5fd;
}
.gender-btn.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.3);
}
.gender-btn[data-gender=MALE].active {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.gender-btn[data-gender=FEMALE].active {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff9bbb 100%);
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.baby-names-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .baby-names-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .baby-names-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.baby-name-card {
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  position: relative;
}
.baby-name-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.baby-name-card:hover::before {
  opacity: 0.6;
}
.baby-name-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.baby-name-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 157, 0.4);
}
.baby-name-card:hover::before {
  opacity: 1;
}
.baby-name-card:hover .gender-icon {
  transform: scale(1.1);
}
.baby-name-card.male::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.baby-name-card.male .gender-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}
.baby-name-card.female::before {
  background: linear-gradient(90deg, #ff6b9d, #ff9bbb);
}
.baby-name-card.female .gender-icon {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(255, 107, 157, 0.1));
  border: 1px solid rgba(255, 107, 157, 0.3);
  color: #ff9bbb;
}

.name-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.region-flag {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gender-icon {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gender-icon svg {
  width: 20px;
  height: 20px;
}

.name-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.name-meaning {
  font-size: 0.875rem;
  color: #a8a3b3;
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.name-card-footer {
  display: flex;
  justify-content: flex-end;
}

.name-region {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a8a3b3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.load-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  background: rgba(45, 40, 56, 0.6);
  font-size: 1rem;
  font-weight: 600;
  color: #a8a3b3;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.load-more-btn svg {
  width: 20px;
  height: 20px;
}
.load-more-btn:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
}

.baby-names-cta {
  background: linear-gradient(145deg, rgba(45, 40, 56, 0.6) 0%, rgba(34, 30, 45, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ff6b9d 0%, #a78bfa 100%);
  border: none;
  border-radius: 2rem;
  padding: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .baby-names-cta {
    flex-direction: column;
    text-align: center;
  }
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
  }
}
.cta-content > svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cta-content p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #e84f8c;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-button svg {
  width: 20px;
  height: 20px;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/*# sourceMappingURL=main.css.map */
