/* ============================================================
   GLOBAL VARIABLES (assumed from your theme)
   ============================================================ */
:root {
  --color-primary: #e7181b;
  --color-primary-hover: #bd1215;
  --color-white: #ffffff;
  /* --gradient-premium-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
}

.container {
  max-width: 1200px;
}

/* ============================================================
   STYLES FOR: SOCIAL-MEDIA-MARKETING PAGE
   ============================================================ */

/* --- Alert Notification/Success Box --- */
.contact-alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.4s ease;
}

.contact-alert.success {
  background-color: #d1e7dd;
  color: #842029;
  border: 1px solid #badbcc;
}

.contact-alert.error {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

.hero-content-center .btn-secondary-white {
  background-color: #e7181b;
}
.hero-content-center .btn-secondary-white:hover {
  background-color: #bd1215;
  border: none;
}

/* ============================================================
   STYLES FOR: WEBDEV-HERO (Shared with Social Media)
   ============================================================ */

.webdev-hero {
  background: var(--gradient-premium-dark);
  padding: 140px 0px 50px;
  position: relative;
  overflow: hidden;
}

/* Animated Grid Background */
.webdev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(#bf1a1a24 1px, transparent 1px),
    linear-gradient(90deg, #bf1a1a26 2px, transparent 2px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

.webdev-hero .glow-blob-hero {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.12) 0%,
    transparent 70%
  );
  top: -10%;
  right: 5%;
  border-radius: 50%;
  z-index: 1;
}

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

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

.webdev-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content-center {
  color: var(--color-white);
  width: 100%;
}

.hero-content-center .badge {
  margin-bottom: 24px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-content-center .badge-pulse {
  background: #842029;
  box-shadow: #842029;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: #842029;
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 35px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-secondary-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 38px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 24, 27, 0.3);
}

.rating-stars {
  color: #f59e0b;
}
/* ============================================================
   STYLES FOR: SERVICES GRID SECTION (REDESIGNED)
   ============================================================ */

.services-grid-section {
  padding: 100px 24px;}

/* ---------- Header Area ---------- */
.services-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}



#services-grid-section1{
background: white;
}

.badge-red {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(231, 24, 27, 0.08);
  color: #e7181b;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.services-header h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.15;
  margin: 0 0 20px;
}

.services-header h2 .highlight {
  color: #e7181b;
}

.services-header .lead-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 20px;
}

.services-header .sub-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* ---------- Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---------- Service Card ---------- */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Top red gradient line on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e7181b, #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(231, 24, 27, 0.12);
}

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

/* Icon */
.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(231, 24, 27, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #e7181b;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon-wrap {
  background: #e7181b;
  color: #fff;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(231, 24, 27, 0.25);
}

/* Label */
.card-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #e7181b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

/* Heading */
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.3;
}

/* Description */
.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  flex-grow: 1;
}

/* Learn More Link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e7181b;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.card-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.service-card:hover .card-link {
  gap: 10px;
}

.service-card:hover .card-link i {
  transform: translateX(4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid-section {
    padding: 70px 20px;
  }
  .services-header h2 {
    font-size: 1.9rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 30px 24px;
  }
}

/* ---------- Entrance Animation ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) {
  animation-delay: 0.05s;
}
.service-card:nth-child(2) {
  animation-delay: 0.1s;
}
.service-card:nth-child(3) {
  animation-delay: 0.15s;
}
.service-card:nth-child(4) {
  animation-delay: 0.2s;
}
.service-card:nth-child(5) {
  animation-delay: 0.25s;
}
.service-card:nth-child(6) {
  animation-delay: 0.3s;
}

/* ============================================================
   STYLES FOR: CORE PRINCIPLES SECTION
   ============================================================ */
.core-principles-section {
  padding: 100px 24px;
  background: #ffffff;
}

.principle-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(231, 24, 27, 0.2);
}

.principle-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* ============================================================
   STYLES FOR: INDUSTRIES STICKY SECTION (NEW)
   ============================================================ */
.industries-sticky-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.industries-sticky-wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* Left Sticky */
.industries-sticky-left {
  position: sticky;
  top: 100px;
  align-self: start;
}

.badge-red {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(231, 24, 27, 0.1);
  color: #e7181b;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 60px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 16px 0 20px;
}

.section-title .highlight {
  color: #e7181b;
}

.desc-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  max-width: 420px;
  margin: 0 0 30px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #e7181b;
  color: #fff;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #c41215;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 24, 27, 0.25);
}

/* Right Column */
.industries-sticky-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.industries-slider-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card - Horizontal Layout */
.industry-slide-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.35s ease;
}

.industry-slide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(231, 24, 27, 0.15);
}

/* Rounded Square Icon - Image jaisa */
.industry-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #f1f5f9;
  border-radius: 14px; /* Yeh rounded square banata hai */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #e7181b;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.industry-slide-card:hover .industry-icon-wrap {
  background: #e7181b;
  color: #fff;
  transform: scale(1.05);
}

.industry-slide-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.industry-slide-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Dots */
.industries-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  background: #e7181b;
  width: 28px;
  border-radius: 12px;
}

/* Mobile Slider */
@media (max-width: 900px) {
  .industries-sticky-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .industries-sticky-left {
    position: relative;
    top: 0;
    text-align: center;
  }
  .desc-text {
    max-width: 100%;
  }
  .industries-slider-grid {
    flex-direction: row;
    gap: 0;
  }
  .industry-slide-card {
    min-width: 100%;
    flex-direction: column;
    box-sizing: border-box;
  }
  .industries-slider-nav {
    display: flex;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

/* Entrance Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.industry-slide-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.industry-slide-card:nth-child(1) {
  animation-delay: 0.05s;
}
.industry-slide-card:nth-child(2) {
  animation-delay: 0.1s;
}
.industry-slide-card:nth-child(3) {
  animation-delay: 0.15s;
}
.industry-slide-card:nth-child(4) {
  animation-delay: 0.2s;
}
.industry-slide-card:nth-child(5) {
  animation-delay: 0.25s;
}
.industry-slide-card:nth-child(6) {
  animation-delay: 0.3s;
}
.industry-slide-card:nth-child(7) {
  animation-delay: 0.35s;
}
.industry-slide-card:nth-child(8) {
  animation-delay: 0.4s;
}
/* ============================================================
   STYLES FOR: PROCESS SECTION — ICON REPLACEMENT (NEW)
   ============================================================ */
.strategies-section {
  padding: 100px 24px;
  background: rgba(133, 2, 2, 0.03) !important;
}

.process-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  margin: 0 auto;
}

.process-icon-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.process-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  border-color: rgba(231, 24, 27, 0.15);
}

.process-icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(231, 24, 27, 0.25);
  transition: all 0.3s ease;
}

.process-icon-card:hover .process-icon-circle {
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 10px 30px rgba(231, 24, 27, 0.35);
}

.process-icon-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.process-icon-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

/* ============================================================
   STYLES FOR: WHY-CHOOSE-SECTION
   ============================================================ */

.why-choose-section {
  padding: 100px 24px 100px;
  background: var(--color-white);
}

.why-choose-card {
  background: var(--gradient-premium-dark);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.why-choose-left {
  color: var(--color-white);
}

.why-choose-left h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-choose-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.why-choose-right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE DESIGN: MEDIA QUERY FOR (max-width: 991px)
   ============================================================ */

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-principles-section .container > div {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Industries Sticky -> Normal layout */
  .industries-sticky-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industries-sticky-left {
    position: relative;
    top: 0;
    text-align: center;
  }

  .industries-sticky-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .industries-slider-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Process Grid */
  .process-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }

  .conversions-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .conversions-left {
    flex-direction: column;
    gap: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-info-col {
    position: relative;
    top: 0;
  }
}

/* ============================================================
   RESPONSIVE DESIGN: MEDIA QUERY FOR (max-width: 767px)
   ============================================================ */

@media (max-width: 767px) {
  .webdev-hero {
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .core-principles-section .container > div {
    grid-template-columns: 1fr !important;
  }

  .industries-slider-grid {
    grid-template-columns: 1fr;
  }

  .process-icon-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .conversions-text h3 {
    font-size: 1.5rem;
  }

  .why-choose-left h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .faq-main-heading {
    font-size: 1.6rem;
  }
}

/* ============================================================
   RESPONSIVE DESIGN: MEDIA QUERY FOR (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .services-grid-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .conversions-banner {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .conversions-text h3 {
    font-size: 1.3rem;
  }

  .conversions-text p {
    font-size: 0.9rem;
  }

  .strategies-section {
    padding: 60px 16px;
  }

  .process-icon-card {
    padding: 24px 16px;
  }

  .why-choose-card {
    padding: 35px 20px;
    border-radius: 16px;
  }

  .why-choose-left h2 {
    font-size: 1.4rem;
  }

  .why-choose-left p {
    font-size: 0.95rem;
  }

  .faq-section {
    padding: 60px 16px;
  }

  .faq-main-heading {
    font-size: 1.45rem;
  }

  .faq-form-card {
    padding: 30px 20px;
  }

  .faq-trigger {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-content {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }

  .principle-card {
    padding: 30px 20px;
  }

  .industry-slide-card {
    padding: 20px 16px;
  }

  .industry-icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .industries-sticky-section {
    padding: 60px 16px;
  }
}

/* ============================================================
   RESPONSIVE DESIGN: MOBILE TYPOGRAPHY MATCHING INDEX
   ============================================================ */

@media (max-width: 768px) {
  .hero-title,
  .hero-heading,
  h1,
  [class*="-hero"] h1,
  [class*="-hero"] .hero-title {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
  }

  .section-title,
  .section-header h2,
  .section-header h1,
  h2,
  [class*="-copy"] h2,
  [class*="-content"] h2,
  .partner-copy h2 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
  }

  h3,
  h4,
  [class*="-card"] h3,
  [class*="-card"] h4,
  .stat-item h3,
  .timeline-card h4,
  .service-card h3,
  .process-card h3,
  .benefit-card h3,
  .metric-card-new h3 {
    font-size: 1.35rem !important;
    font-weight: 600 !important;
  }

  p,
  .hero-desc,
  .hero-description,
  [class*="-desc"],
  .section-subtext,
  .process-subtext,
  .partner-copy p,
  .timeline-card p,
  .service-card p,
  .process-card p,
  .benefit-card p,
  .metric-card-new p,
  .stat-item p {
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-heading,
  h1,
  [class*="-hero"] h1,
  [class*="-hero"] .hero-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
  }

  .section-title,
  .section-header h2,
  .section-header h1,
  h2,
  [class*="-copy"] h2,
  [class*="-content"] h2,
  .partner-copy h2 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
  }

  h3,
  h4,
  [class*="-card"] h3,
  [class*="-card"] h4,
  .stat-item h3,
  .timeline-card h4,
  .service-card h3,
  .process-card h3,
  .benefit-card h3,
  .metric-card-new h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
  }

  p,
  .hero-desc,
  .hero-description,
  [class*="-desc"],
  .section-subtext,
  .process-subtext,
  .partner-copy p,
  .timeline-card p,
  .service-card p,
  .process-card p,
  .benefit-card p,
  .metric-card-new p,
  .stat-item p {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
  }
}

/* ============================================================
   SEO-STYLE WHAT'S INCLUDED SECTION (#services-grid)
   ============================================================ */
#services-grid .service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

#services-grid .service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--color-primary, #e7181b);
  transition: width 0.3s ease;
}

#services-grid .service-card:hover h3::after {
  width: 80px;
}

/* ============================================================
   PLATFORMS ICONS SECTION (.platforms-icon-section)
   ============================================================ */
.platforms-icon-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.platform-icon-box {
  width: 56px;
  height: 56px;
  background: #f1f5f9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #e7181b;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.platform-icon-box.pinterest-x {
  gap: 8px;
  font-size: 1.25rem;
}

.platform-card:hover .platform-icon-box {
  background: #e7181b;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(231, 24, 27, 0.25);
}
