:root {
  --font-sans:
    "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --rose-sexy: #ff69b4;
  --rose-deep: #c71585;
  --rose-light: #ffb6c1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: #e5e5e5;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
  min-height: 100vh;
}

header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(255, 105, 180, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  text-decoration: none;
}

.logo {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ff69b4;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
}

.logo-link:hover .logo {
  opacity: 0.8;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ff69b4;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ff69b4;
}

main {
  padding-top: 80px;
}

.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border-bottom: 2px solid rgba(255, 105, 180, 0.2);
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #e5e5e5;
  font-weight: 700;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ff69b4;
  font-weight: 500;
}

.hero-text {
  font-size: 1.1rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.highlight {
  color: #ff69b4;
}

.hero-image {
  flex: 1;
}

.hero-image a {
  display: block;
}

.hero-banner {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
  transition: transform 0.3s ease;
}

.hero-banner:hover {
  transform: scale(1.02);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
  animation: pulse 2s infinite;
  margin: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
  background: linear-gradient(135deg, #ff1493, #ff69b4);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #ff69b4;
  box-shadow: none;
  animation: none;
}

.cta-button.secondary:hover {
  background: rgba(255, 105, 180, 0.2);
}

.cta-button.small {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.7);
  }
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #e5e5e5;
  font-weight: 700;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #b3b3b3;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.video-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 105, 180, 0.2);
  text-decoration: none;
  display: block;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: #ff69b4;
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.video-info {
  padding: 1rem;
  text-align: center;
}

.video-info h3 {
  color: #ff69b4;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-info p {
  color: #b3b3b3;
  font-size: 0.85rem;
  line-height: 1.5;
}

.why-section {
  padding: 5rem 2rem;
  background: #0a0a0a;
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.why-text p {
  color: #b3b3b3;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.why-text .cta-button {
  margin-top: 1rem;
}

.why-image a {
  display: block;
}

.why-banner {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
  transition: transform 0.3s ease;
}

.why-banner:hover {
  transform: scale(1.02);
}

.tools-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 105, 180, 0.2);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.1);
  text-decoration: none;
  display: block;
}

.tool-card:hover {
  transform: translateY(-10px);
  border-color: #ff69b4;
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
}

.tool-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.tool-card h3 {
  color: #ff69b4;
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.tool-tagline {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.tool-description {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.tool-features li {
  color: #b3b3b3;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.tool-features li:last-child {
  border-bottom: none;
}

.tool-cta-btn {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.tool-card:hover .tool-cta-btn {
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.5);
}

.faq-section {
  padding: 5rem 2rem;
  background: #0a0a0a;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  background: rgba(26, 26, 46, 0.6);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 105, 180, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ff69b4;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ff69b4;
  margin-bottom: 0.8rem;
}

.faq-answer {
  color: #b3b3b3;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-cta p {
  color: #b3b3b3;
  margin-bottom: 1rem;
}

.affiliate-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.affiliate-section h2 {
  color: #e5e5e5;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.affiliate-section p {
  color: #b3b3b3;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: rgba(26, 26, 46, 0.95);
  border-top: 2px solid rgba(255, 105, 180, 0.3);
  padding: 3rem 2rem;
  text-align: center;
}

footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.language-link {
  color: #e5e5e5;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid rgba(255, 105, 180, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.language-link:hover {
  background: rgba(255, 105, 180, 0.2);
  border-color: #ff69b4;
  color: #ff69b4;
}

footer p {
  color: #b3b3b3;
  margin-top: 1rem;
}

@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .character-card {
    width: calc(33.33% - 1.5rem);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card.featured {
    transform: scale(1);
    order: -1;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-image {
    order: -1;
    text-align: center;
  }

  .why-banner {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    width: 80%;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-intro {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .video-info h3 {
    font-size: 1rem;
  }

  .video-info p {
    font-size: 0.8rem;
  }

  .character-card {
    width: calc(50% - 1rem);
    min-width: 160px;
  }

  .social-proof-inner {
    gap: 1.5rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  footer nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .video-info {
    padding: 0.8rem;
  }

  .video-info p {
    display: none;
  }

  .character-card {
    width: calc(50% - 0.8rem);
    min-width: 140px;
  }

  .tool-card {
    padding: 1rem;
  }

  .tool-card-image {
    height: 150px;
  }

  .why-text p {
    font-size: 0.95rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* ── SOCIAL PROOF BAR ── */
.social-proof {
  background: rgba(255, 105, 180, 0.07);
  border-top: 1px solid rgba(255, 105, 180, 0.2);
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
  padding: 1.5rem 2rem;
}

.social-proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.proof-stars {
  font-size: 1.2rem;
  color: #ffd700;
  letter-spacing: 2px;
}

.proof-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ff69b4;
  line-height: 1.2;
}

.proof-label {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── TOOL CARD FEATURED ── */
.tool-card--featured {
  border-color: #ff69b4;
  box-shadow: 0 20px 50px rgba(255, 105, 180, 0.25);
  position: relative;
}

.tool-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: #fff;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

/* ── CHARACTER GALLERY ── */
.character-section {
  padding: 5rem 2rem;
  background: #0a0a0a;
}

.character-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.character-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 105, 180, 0.2);
  text-decoration: none;
  display: block;
  animation: fadeInUp 0.6s ease-out;
  width: calc(25% - 1.5rem);
  min-width: 220px;
  max-width: 280px;
}

.character-card:hover {
  transform: translateY(-5px);
  border-color: #ff69b4;
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.character-card-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.character-info {
  padding: 0.9rem 1rem;
  text-align: center;
}

.character-info h3 {
  color: #ff69b4;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.character-info p {
  color: #b3b3b3;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* ── PRICING ── */
.pricing-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}

.pricing-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 105, 180, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #ff69b4;
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.pricing-card.featured {
  border-color: #ff69b4;
  box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  color: #e5e5e5;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff69b4;
  margin: 0.8rem 0;
  line-height: 1.1;
}

.price span {
  font-size: 1rem;
  color: #b3b3b3;
  font-weight: 400;
}

.price-note {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
  text-align: left;
}

.pricing-card ul li {
  color: #b3b3b3;
  padding: 0.45rem 0 0.45rem 1.4rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
  position: relative;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff69b4;
  font-weight: 700;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-disclaimer {
  text-align: center;
  color: #555;
  font-size: 0.82rem;
  margin-top: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tool-card,
.video-card {
  animation: fadeInUp 0.6s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── HERO CENTERED (no image) ── */
.hero--centered {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: none;
  padding: 7rem 2rem 5rem;
}

.hero--centered .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  color: #ff69b4;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ── TOOL REVIEW SECTIONS (SEO) ── */
.tools-sections-wrap {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.tools-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.tool-review {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tool-review-inner {
  background: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(255, 105, 180, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.tool-review-inner:hover {
  border-color: rgba(255, 105, 180, 0.5);
}

.tool-review--top .tool-review-inner {
  border-color: #ff69b4;
  box-shadow: 0 0 50px rgba(255, 105, 180, 0.15);
}

.tool-review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.tool-rank-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.tool-rank-badge--secondary {
  background: rgba(255, 105, 180, 0.2);
  color: #ff69b4;
}

.tool-review h3 {
  font-size: 1.7rem;
  color: #e5e5e5;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.tool-review .tool-tagline {
  color: #b3b3b3;
  font-size: 0.95rem;
  margin: 0;
}

.tool-review-desc {
  color: #b3b3b3;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-tag {
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.3);
  color: #ff69b4;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── WHY AI: FEATURE CARDS ── */
.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.why-card {
  background: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(255, 105, 180, 0.2);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.why-card:hover {
  border-color: #ff69b4;
}

.why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.why-card h3 {
  color: #ff69b4;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.why-card p {
  color: #b3b3b3;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── FOOTER SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  color: #b3b3b3;
  text-decoration: none;
  padding: 0.5rem;
  border: 1px solid rgba(255, 105, 180, 0.3);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ff69b4;
  border-color: #ff69b4;
  background: rgba(255, 105, 180, 0.1);
}

/* ── RESPONSIVE: NEW SECTIONS ── */
@media (max-width: 1024px) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero--centered {
    padding: 5rem 1.5rem 3rem;
  }

  .tool-review-head {
    flex-direction: column;
    gap: 1rem;
  }

  .tool-review h3 {
    font-size: 1.4rem;
  }

  .tool-review-inner {
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

.seo-section {
  padding: 5rem 2rem;
}

.seo-prose {
  max-width: 820px;
  margin: 0 auto;
}

.seo-prose .section-title {
  text-align: center;
}

.seo-prose h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff69b4;
  margin: 2.5rem 0 0.75rem;
}

.seo-prose p {
  color: #c9c9d4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.seo-prose strong {
  color: #ffb6c1;
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-section {
    padding: 3.5rem 1.5rem;
  }

  .seo-prose h3 {
    font-size: 1.3rem;
  }
}
