:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #151515;
  --bg-card-hover: #1a1a1a;
  --primary: #f97316;
  --primary-hover: #ea580c;
  --text-white: #ffffff;
  --text-light: #a3a3a3;
  --border-color: #262626;
  --success: #22c55e;
  --star: #eab308;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-inline: auto;
  padding: 0 1.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

.bg-darker {
  background-color: var(--bg-darker);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.brand-icon {
  margin-top: -2px; /* slight visual adjustment */
}

.logo img {
  height: 40px;
  width: auto;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition-fast);
  }

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

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--bg-dark);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  z-index: 99;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav .nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

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

.btn-outline:hover {
  border-color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.1) 40%, var(--bg-dark) 100%);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.hero-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0.7;
}

.hero-apps img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* Intro Section (Stats & Marquee) */
.intro-section {
  border-top: 1px solid var(--border-color);
}

.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .stats-bar {
    gap: 2rem;
    flex-direction: column;
  }
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.brand-marquee-bar {
  padding: 1.5rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.brand-text:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Carousels */
.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-carousel-1 .swiper-wrapper,
.swiper-carousel-3 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.marquee-slide {
  width: auto;
  margin-right: 2rem;
}

.marquee-slide img {
  height: 60px;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.marquee-slide img:hover {
  opacity: 1;
}

.poster-slide img {
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-normal);
}

.poster-slide:hover img {
  transform: scale(1.05);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  position: relative;
  text-align: center;
  transition: var(--transition-normal);
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

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

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.step-card h3 {
  margin-bottom: 1rem;
}

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

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 640px) {
  .pricing-grid.multi {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid.multi {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(to bottom, rgba(249, 115, 22, 0.05), var(--bg-card));
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

@media (max-width: 767px) {
  .pricing-card.featured {
    transform: none;
  }
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--border-color);
  color: var(--text-light);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card.featured .pricing-badge {
  background-color: var(--primary);
  color: var(--text-white);
}

.pricing-bonus {
  display: inline-block;
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--success);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-old-price {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 1.25rem;
}

.pricing-monthly {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-features {
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.pricing-features li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pricing-action {
  margin-top: auto;
  text-align: center;
}

.pricing-subtext {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
  display: block;
}

.payment-methods {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  opacity: 0.7;
}

.payment-methods img {
  height: 24px;
}

.urgency-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:nth-child(7):last-child {
    grid-column: 1 / span 2;
    justify-self: center;
    max-width: 500px;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-item:nth-child(7):last-child {
    grid-column: 2;
  }
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.feature-item:hover {
  background-color: var(--bg-card-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-content p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.feature-image-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 100%;
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Download Section */
.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.download-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-fast);
}

.download-card:hover {
  transform: translateY(-5px);
}

.download-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

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

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--border-color);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--star);
  margin-bottom: 0.5rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  color: var(--text-light);
  font-style: italic;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  background-color: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Blog List */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.blog-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-action {
  margin-top: auto;
}

/* Social & Footer */
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.social-icon:hover {
  transform: translateY(-5px);
}

.social-whatsapp { background-color: #25d366; }
.social-email { background-color: #ea4335; }
.social-facebook { background-color: #1877f2; }
.social-x { background-color: #000000; border: 1px solid var(--border-color); }
.social-youtube { background-color: #ff0000; }

footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: var(--text-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* Blog Article Post styles */
.article-header {
  padding-top: 150px;
  padding-bottom: 50px;
  text-align: center;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.article-header h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.article-hero-img {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin: 0 auto 3rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: #ccc;
}

.article-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

/* Pure CSS Marquee */
.brand-marquee-bar {
  padding: 1.5rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}

.css-marquee-track {
  display: flex;
  align-items: center;
  animation: scroll-marquee 25s linear infinite;
  width: max-content;
}

.css-marquee-track:hover {
  animation-play-state: paused;
}

.brand-icon {
  height: 35px;
  width: auto;
  margin-right: 4rem;
  opacity: 0.6;
  transition: opacity 0.3s;
  object-fit: contain;
}

.brand-icon:hover {
  opacity: 1;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SEO Split Sections */
.seo-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

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

.seo-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.seo-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.seo-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.seo-content li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.seo-content li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.seo-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.seo-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.seo-image-wrap:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .seo-grid.reverse .seo-image-wrap {
    grid-row: 1;
  }
}

/* Trust Badge Hero */
.hero-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.trust-pill {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

.tp-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.tp-star-icon {
    color: #00b67a;
}

.tp-stars {
    display: flex;
    gap: 2px;
}

.tp-star-box {
    background-color: #00b67a;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.tp-star-box svg {
    width: 14px;
    height: 14px;
    fill: white;
}
