/* ══════════════════════════════════════════════════════════════
   SEO SERVICES CUSTOM STYLES
   BTPL Soft - Premium Dark Theme & Interactive UI
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   1. HERO SECTION - CENTER ALIGNED WITH INTERACTIVE SEARCH MOCK
   ────────────────────────────────────────────────────────────── */
.hero-seo {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #020509 0%, #081225 50%, #030a16 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-seo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(42, 125, 241, 0.12) 0%, rgba(34, 197, 94, 0.04) 40%, transparent 70%);
  animation: rotateGlow 35s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-seo-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.hero-seo-content .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 13px;
}

.hero-seo-content .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-seo-content .breadcrumb a:hover {
  color: #2a7df1;
}

.hero-seo-content .breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-seo-content .breadcrumb span {
  color: #22c55e;
  font-weight: 600;
}

.hero-badge-center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #22c55e;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
  transition: transform 0.3s ease;
}

.hero-badge-center:hover {
  transform: translateY(-2px);
  background: rgba(34, 197, 94, 0.18);
}

.hero-badge-center i {
  font-size: 16px;
  color: #22c55e;
}

.hero-seo h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.18;
  margin-bottom: 24px;
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-seo h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #2a7df1 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-seo .hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin: 0 auto 36px;
}

/* Search Bar Mock */
.search-bar-mock {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  max-width: 620px;
  margin: 0 auto 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(42, 125, 241, 0.2);
  position: relative;
  animation: floatSearch 3.5s ease-in-out infinite;
  border: 2px solid rgba(42, 125, 241, 0.3);
}

@keyframes floatSearch {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.search-bar-mock i {
  font-size: 20px;
  color: #2a7df1;
}

.search-placeholder {
  flex: 1;
  text-align: left;
  color: #4b5563;
  font-size: 15.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-ranking {
  padding: 6px 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13.5px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
  letter-spacing: 0.03em;
}

/* Hero Actions */
.hero-seo .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #2a7df1 0%, #1d60c2 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(42, 125, 241, 0.35);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(42, 125, 241, 0.5);
  background: linear-gradient(135deg, #388bfd 0%, #2270e8 100%);
  color: #ffffff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(42, 125, 241, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Hero Stats Pills */
.hero-stats-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(42, 125, 241, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-pill i {
  font-size: 24px;
  color: #2a7df1;
}

.stat-pill div {
  text-align: left;
}

.stat-pill strong {
  display: block;
  font-size: 20px;
  color: white;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

.stat-pill span {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* ──────────────────────────────────────────────────────────────
   2. EXPANDABLE CONTENT & SEE MORE BUTTONS
   ────────────────────────────────────────────────────────────── */
.expand-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}

.expand-content.expanded {
  max-height: 2500px;
  opacity: 1;
  margin-top: 24px;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(42, 125, 241, 0.12);
  border: 1.5px solid rgba(42, 125, 241, 0.35);
  color: #2a7df1;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  margin: 28px auto 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.see-more-btn:hover {
  background: linear-gradient(135deg, #2a7df1, #22c55e);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(42, 125, 241, 0.4);
  transform: translateY(-2px);
}

.see-more-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.see-more-btn.active i {
  transform: rotate(180deg);
}

.see-more-center {
  display: flex;
  margin: 32px auto 0;
}

/* Card-level Read More button */
.card-see-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #2a7df1;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0 0;
  margin-top: 10px;
  transition: color 0.3s ease;
  width: auto;
}

.card-see-more:hover {
  color: #22c55e;
}

.card-see-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.card-see-more.active i {
  transform: rotate(180deg);
}

/* ──────────────────────────────────────────────────────────────
   3. SPOTLIGHT BENTO CARD SECTION (#best-seo-california)
   ────────────────────────────────────────────────────────────── */
.bento-spotlight-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px;
  max-width: 1000px;
  margin: 36px auto 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: all 0.4s ease;
}

.bento-spotlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2a7df1 0%, #22c55e 100%);
}

.bento-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(42, 125, 241, 0.1);
  border: 1px solid rgba(42, 125, 241, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #2a7df1;
}

.bento-badge i {
  color: #22c55e;
}

.bento-lead-box {
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
  border-left: 4px solid #2a7df1;
  border-radius: 0 14px 14px 0;
  padding: 24px;
  margin-bottom: 28px;
  text-align: left;
}

.bento-lead-box p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.bento-subhead {
  font-size: 22px;
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  margin: 28px 0 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.bento-subhead i {
  color: #22c55e;
  font-size: 24px;
}

.bento-text-block {
  text-align: left;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.bento-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  text-align: left;
}

.bento-subcard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.bento-subcard:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(42, 125, 241, 0.3);
  transform: translateY(-3px);
}

.bento-subcard i {
  font-size: 24px;
  color: #22c55e;
  margin-bottom: 12px;
  display: inline-block;
}

.bento-subcard p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────
   4. SERVICES SECTION - CARDS GRID
   ────────────────────────────────────────────────────────────── */
.seo-services-sec {
  background: linear-gradient(180deg, #020509 0%, #0a1628 100%);
  padding: 90px 0;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}


/* Tablet */

@media (max-width: 900px) {
    .seo-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}


/* Mobile */

@media (max-width: 600px) {
    .seo-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.seo-service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.seo-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2a7df1, #22c55e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.seo-service-card:hover::before {
  transform: scaleX(1);
}

.seo-service-card:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(42, 125, 241, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(42, 125, 241, 0.15);
}

.seo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.15), rgba(34, 197, 94, 0.15));
  border-radius: 14px;
  margin-bottom: 22px;
  position: relative;
  border: 1px solid rgba(42, 125, 241, 0.2);
}

.seo-icon i {
  font-size: 28px;
  color: #2a7df1;
  transition: all 0.3s ease;
}

.seo-service-card:hover .seo-icon i {
  color: #22c55e;
  transform: scale(1.1);
}

.seo-service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.seo-service-card > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.seo-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.seo-features i {
  font-size: 15px;
  color: #22c55e;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────────
   5. SEO TYPES & SPECIALIZED CATEGORIES
   ────────────────────────────────────────────────────────────── */
/* =========================================
   SEO TYPES - 2 CARDS PER ROW
========================================= */

.seo-types-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}


/* =========================================
   SEO TYPE CARD
========================================= */

.seo-type-card {
    display: flex;
    gap: 20px;
    padding: 26px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    transition: all 0.3s ease;
    align-items: flex-start;
}


/* Hover */

.seo-type-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(42, 125, 241, 0.35);
    transform: translateY(-5px);

    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}


/* =========================================
   ICON
========================================= */

.seo-type-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(42, 125, 241, 0.12);
    border: 1px solid rgba(42, 125, 241, 0.25);
    border-radius: 12px;

    flex-shrink: 0;
}

.seo-type-icon i {
    font-size: 24px;
    color: #2a7df1;

    transition: all 0.3s ease;
}

.seo-type-card:hover .seo-type-icon i {
    color: #22c55e;
    transform: scale(1.1);
}


/* =========================================
   CONTENT
========================================= */

.seo-type-content {
    flex: 1;
}

.seo-type-content h4 {
    font-size: 19px;
    margin: 0 0 8px;

    color: #ffffff;

    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.seo-type-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);

    margin: 0 0 14px;

    line-height: 1.6;
}


/* =========================================
   FEATURES
========================================= */

.seo-type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-type-features span {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 4px 12px;

    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.22);

    border-radius: 999px;

    font-size: 12px;
    color: #22c55e;
    font-weight: 600;
}

.seo-type-features i {
    font-size: 11px;
}



/* ──────────────────────────────────────────────────────────────
   6. REGIONAL STRATEGY & TRUST HUB (#california-markets)
   ────────────────────────────────────────────────────────────── */
.region-overview-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 40px;
  margin-top: 36px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(12px);
}

.region-overview-box p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  max-width: 900px;
}

.metro-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.metro-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metro-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(34, 197, 94, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.metro-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 14px;
  margin-bottom: 18px;
}

.metro-icon i {
  font-size: 24px;
  color: #22c55e;
}

.metro-card h4 {
  font-size: 19px;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  margin-bottom: 10px;
  font-weight: 700;
}

.metro-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* Trust Signal Card */
.trust-signal-card {
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.08) 0%, rgba(34, 197, 94, 0.08) 100%);
  border: 1px solid rgba(42, 125, 241, 0.25);
  border-radius: 20px;
  padding: 36px 40px;
  margin-top: 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.trust-signal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2a7df1, #22c55e);
}

.trust-signal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.trust-signal-header i {
  font-size: 24px;
  color: #22c55e;
}

.trust-signal-header h3 {
  font-size: 20px;
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.trust-signal-card p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.city-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: all 0.3s ease;
}

.city-tag:hover {
  background: rgba(42, 125, 241, 0.15);
  border-color: rgba(42, 125, 241, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.city-tag i {
  color: #2a7df1;
  font-size: 13px;
}

/* ──────────────────────────────────────────────────────────────
   7. TECH MARQUEE
   ────────────────────────────────────────────────────────────── */
.tech-marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.tech-marquee-wrap::before,
.tech-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.tech-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #020509, transparent);
}

.tech-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #020509, transparent);
}

.tech-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

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

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

.tech-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tech-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(42, 125, 241, 0.4);
  transform: translateY(-2px);
}

.tech-chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.tech-chip span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* ──────────────────────────────────────────────────────────────
   8. RESULTS SHOWCASE & PERFORMANCE METERS
   ────────────────────────────────────────────────────────────── */
/* =========================================
   PROVEN RESULTS SECTION
========================================= */

.results-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(42, 125, 241, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050a17 0%,
            #091126 55%,
            #050a17 100%
        );

    overflow: hidden;
}


/* subtle background glow */

.results-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: 50%;

    transform: translateY(-50%);

    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.06),
        transparent 70%
    );

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.results-container {
    width: min(1180px, 90%);
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;

    position: relative;
    z-index: 2;
}


/* =========================================
   LEFT CONTENT
========================================= */

.results-intro {
    max-width: 540px;
}


/* Section label */

.results-intro .section-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;
}

.results-intro .subtitle-line {
    width: 26px;
    height: 2px;

    background: #f59e0b;

    display: block;
}

.results-intro .subtitle-text {
    color: #f59e0b;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* Heading */

.results-intro h2 {
    font-family: 'Sora', sans-serif;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.08;

    font-weight: 800;

    color: #ffffff;

    margin: 0 0 24px;

    letter-spacing: -1.5px;
}

.results-intro h2 span {
    background: linear-gradient(
        90deg,
        #f59e0b,
        #22c55e
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* Description */

.results-intro > p {
    font-size: 17px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.62);

    margin: 0 0 32px;

    max-width: 520px;
}


/* =========================================
   BUTTON
========================================= */

.results-btn {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    border: 1px solid rgba(42, 125, 241, 0.4);

    background: rgba(42, 125, 241, 0.08);

    color: #ffffff;

    text-decoration: none;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.results-btn i {
    color: #22c55e;

    transition: transform 0.3s ease;
}

.results-btn:hover {
    background: linear-gradient(
        135deg,
        #2a7df1,
        #22c55e
    );

    border-color: transparent;

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(42, 125, 241, 0.25);
}

.results-btn:hover i {
    color: #ffffff;
    transform: translateX(4px);
}


/* =========================================
   RESULTS GRID
========================================= */

.results-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* =========================================
   RESULT CARD
========================================= */

.result-card {
    position: relative;

    padding: 28px;

    min-height: 230px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    overflow: hidden;

    backdrop-filter: blur(12px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* top glow */

.result-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 2px;

    background: linear-gradient(
        90deg,
        #f59e0b,
        #22c55e,
        #2a7df1
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.4s ease;
}


/* hover */

.result-card:hover {
    transform: translateY(-7px);

    background: rgba(255, 255, 255, 0.055);

    border-color: rgba(42, 125, 241, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(42, 125, 241, 0.08);
}

.result-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   ICON + NUMBER
========================================= */

.result-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;
}


.result-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(42, 125, 241, 0.10);

    border: 1px solid rgba(42, 125, 241, 0.2);
}


.result-icon i {
    font-size: 21px;

    color: #2a7df1;

    transition: all 0.3s ease;
}

.result-card:hover .result-icon i {
    color: #22c55e;

    transform: scale(1.12);
}


/* percentage */

.result-number {
    font-family: 'Sora', sans-serif;

    font-size: 36px;

    font-weight: 800;

    line-height: 1;

    background: linear-gradient(
        135deg,
        #22c55e,
        #2a7df1
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* =========================================
   CARD CONTENT
========================================= */

.result-card h3 {
    font-family: 'Sora', sans-serif;

    font-size: 17px;

    color: #ffffff;

    font-weight: 700;

    margin: 0 0 10px;

    line-height: 1.4;
}


.result-card p {
    font-size: 13px;

    color: rgba(255, 255, 255, 0.55);

    line-height: 1.6;

    margin: 0 0 20px;
}


/* =========================================
   PROGRESS BAR
========================================= */

.result-progress {
    width: 100%;

    height: 5px;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 999px;

    overflow: hidden;
}


.result-progress span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #2a7df1,
        #22c55e
    );

    box-shadow:
        0 0 12px rgba(34, 197, 94, 0.35);

    animation: resultProgress 1.5s ease forwards;
}


@keyframes resultProgress {
    from {
        width: 0;
    }
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .results-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .results-intro {
        max-width: 750px;
    }

}


@media (max-width: 650px) {

    .results-section {
        padding: 75px 0;
    }

    .results-container {
        width: 90%;
    }

    .results-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .result-card {
        min-height: auto;
    }

    .results-intro h2 {
        font-size: 38px;
    }

    .results-intro > p {
        font-size: 15px;
    }

}

/* ──────────────────────────────────────────────────────────────
   9. PROCESS TIMELINE
   ────────────────────────────────────────────────────────────── */
.timeline {
    position: relative;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    margin-top: 50px;
}


.tl-step {
    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    padding: 28px;

    position: relative;

    transition: all 0.3s ease;

    height: 100%;

    box-sizing: border-box;
}


.tl-step:hover {
    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(42, 125, 241, 0.35);

    transform: translateY(-4px);
}


.tl-num {
    font-size: 36px;

    font-weight: 800;

    font-family: 'Sora', sans-serif;

    background: linear-gradient(
        135deg,
        #2a7df1,
        #22c55e
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 12px;

    display: block;
}


.tl-step h4 {
    font-size: 19px;

    color: #ffffff;

    margin-bottom: 8px;

    font-family: 'Sora', sans-serif;

    font-weight: 700;
}


.tl-step p {
    font-size: 14px;

    color: rgba(255, 255, 255, 0.7);

    margin: 0;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .timeline {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 35px;
    }

    .tl-step {
        padding: 24px;
    }

}

/* ──────────────────────────────────────────────────────────────
   10. FAQ SECTION
   ────────────────────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;

    width: 100%;
    max-width: 860px;

    margin: 40px auto 0;
}


.faq-item {
    width: 100%;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    overflow: hidden;

    transition: all 0.3s ease;
}


.faq-item:hover {
    border-color: rgba(42, 125, 241, 0.3);
    background: rgba(255, 255, 255, 0.045);
}


.faq-item[open] {
    background: rgba(255, 255, 255, 0.05);

    border-color: rgba(42, 125, 241, 0.35);
}


.faq-item summary {
    padding: 20px 24px;

    font-size: 16px;
    font-weight: 700;

    color: #ffffff;

    cursor: pointer;

    list-style: none;

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

    gap: 20px;

    font-family: 'Sora', sans-serif;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::after {
    content: "\F282";

    font-family: "bootstrap-icons";

    font-size: 14px;

    color: #2a7df1;

    flex-shrink: 0;

    transition: transform 0.3s ease;
}


.faq-item[open] summary::after {
    transform: rotate(180deg);

    color: #22c55e;
}


.faq-item p {
    padding: 0 24px 20px;

    font-size: 14.5px;

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.65;

    margin: 0;
}

/* ──────────────────────────────────────────────────────────────
   11. CTA BANNER
   ────────────────────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #081225 0%, #020509 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42, 125, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
  font-family: 'Sora', sans-serif;
  color: white;
}

.cta-banner p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────────
   12. RESPONSIVE DESIGN
   ────────────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-seo {
    min-height: auto;
    padding: 120px 20px 60px;
  }
  
  .search-bar-mock {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    text-align: center;
    border-radius: 20px;
  }
  
  .search-placeholder {
    text-align: center;
    justify-content: center;
  }
  
  .hero-stats-pills {
    flex-direction: column;
    width: 100%;
  }
  
  .stat-pill {
    width: 100%;
    max-width: 340px;
  }
  
  .seo-services-grid,
  .seo-types-grid,
  .marketing-grid,
  .metro-cards-grid,
  .bento-grid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-spotlight-card,
  .region-overview-box,
  .trust-signal-card {
    padding: 28px 20px;
  }

  .perf-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .perf-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-seo .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-seo .hero-actions a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .perf-right {
    grid-template-columns: 1fr;
  }

  .seo-service-card {
    padding: 24px 20px;
  }

  .seo-type-card,
  .marketing-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .seo-type-features,
  .marketing-features {
    justify-content: center;
  }

  .bento-lead-box {
    padding: 18px;
  }
}

/* ──────────────────────────────────────────────────────────────
   13. ANIMATIONS & SCROLL REVEAL
   ────────────────────────────────────────────────────────────── */
.seo-service-card,
.seo-type-card,
.marketing-card,
.tl-step,
.bento-spotlight-card,
.trust-signal-card,
.metro-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.seo-service-card.visible,
.seo-type-card.visible,
.marketing-card.visible,
.tl-step.visible,
.bento-spotlight-card.visible,
.trust-signal-card.visible,
.metro-card.visible {
  opacity: 1;
  transform: translateY(0);
}
