/* Hide entry-header */
.entry-header {
  display: none !important;
}
.ti-widget-container.ti-col-1 {
    padding: 0 20px !important;
    margin: 0 20px !important;
}

@media (max-width: 767px) {
    .ti-widget-container.ti-col-1 {
        padding: 0 10px !important;
        margin: 0 10px !important;
    }
}












/* ============================================================
   SEO EXPERT INDIA - STICKY CONTACT LAYOUTS
   ============================================================ */
.seo-left-contact {
    position: fixed;
    left: 18px;
    bottom: 80px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.seo-contact-item {
    display: flex;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 100px;
    overflow: hidden;
    text-decoration: none !important;
    position: relative;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    animation: seoFloat 3s ease-in-out infinite;
}
.seo-contact-item:hover {
    width: 260px;
    transform: translateY(-5px);
}
.seo-contact-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -150%;
    width: 120%;
    height: 300%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
    transform: rotate(20deg);
    transition: .7s ease;
}
.seo-contact-item:hover::before {
    left: 160%;
}
.seo-whatsapp { background: linear-gradient(135deg, #ed4119, #ff6b3d, #ff895f); }
.seo-call { background: linear-gradient(135deg, #499cf8, #68b0ff, #84c1ff); }
.seo-whatsapp:hover { box-shadow: 0 0 0 5px rgba(237,65,25,.12), 0 0 22px rgba(237,65,25,.50), 0 0 40px rgba(237,65,25,.28); }
.seo-call:hover { box-shadow: 0 0 0 5px rgba(73,156,248,.12), 0 0 22px rgba(73,156,248,.50), 0 0 40px rgba(73,156,248,.28); }
.seo-icon-wrap { min-width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.seo-icon-wrap svg { width: 30px; height: 30px; fill: #fff; }
.seo-contact-text { color: #fff; white-space: nowrap; font-size: 15px; font-weight: 700; opacity: 0; transform: translateX(-10px); transition: all .35s ease; letter-spacing: .2px; padding-right: 22px; }
.seo-contact-item:hover .seo-contact-text { opacity: 1; transform: translateX(0); }
.seo-contact-item::after { content:''; position:absolute; inset:-7px; border-radius:100px; animation: pulseGlow 2.8s infinite; }
.seo-whatsapp::after{ border:2px solid rgba(237,65,25,.25); }
.seo-call::after{ border:2px solid rgba(73,156,248,.25); }

@keyframes seoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes pulseGlow {
    0% { transform:scale(.95); opacity:.8; }
    100% { transform:scale(1.08); opacity:0; }
}

/* ============================================================
   SEO EXPERT INDIA - CUSTOM NAVBAR AND MENU STYLES
   ============================================================ */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.sei-navbar {
    background: #0b101c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    border-bottom: 1px solid rgba(78, 163, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    height: 70px;
    transition: all 0.3s ease;
}
body { padding-top: 70px; margin: 0; }
.sei-logo a { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.sei-logo-text { font-size: 1.3rem; font-weight: 800; background: linear-gradient(135deg, #ffffff 0%, #4ea3ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sei-logo-tagline { font-size: 0.55rem; color: rgba(255, 255, 255, 0.4); font-weight: 400; letter-spacing: 0.5px; -webkit-text-fill-color: rgba(255, 255, 255, 0.4); }
.sei-menu { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; height: 70px; }
.sei-menu li { position: relative; height: 100%; display: flex; align-items: center; }
.sei-menu a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-weight: 500; font-size: 0.85rem; transition: all 0.3s ease; padding: 8px 14px; border-radius: 6px; display: flex; align-items: center; gap: 6px; }
.sei-menu a i { color: #4ea3ff; font-size: 0.8rem; transition: all 0.3s ease; }
.sei-menu a:hover { color: #4ea3ff; background: rgba(78, 163, 255, 0.06); }
.sei-menu a:hover i { color: #ed4119; }
.sei-arrow { font-size: 0.6rem; margin-left: 2px; transition: transform 0.3s ease; color: #4ea3ff; }
.sei-dropdown:hover .sei-arrow { transform: rotate(180deg); }
.sei-submenu { position: absolute; top: 100%; left: 0; background: #0b101c; min-width: 240px; display: none; padding: 6px 0; border-radius: 10px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); border: 1px solid rgba(78, 163, 255, 0.1); list-style: none; margin: 0; }
.sei-submenu li { height: auto; display: block; }
.sei-submenu a { padding: 8px 18px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.75); border-radius: 0; }
.sei-submenu a i { font-size: 0.85rem; width: 18px; text-align: center; }
.sei-submenu a:hover { background: rgba(78, 163, 255, 0.06); padding-left: 22px; }
.sei-dropdown:hover .sei-submenu { display: block; }
.sei-right { display: flex; align-items: center; gap: 12px; }
.sei-social { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 1rem; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; background: rgba(255, 255, 255, 0.04); }
.sei-social:hover { color: #4ea3ff; background: rgba(78, 163, 255, 0.1); transform: translateY(-2px); }
.sei-social .fa-facebook-f:hover { color: #1877f2; }
.sei-social .fa-instagram:hover { color: #e4405f; }
.sei-btn { background: linear-gradient(135deg, #ed4119, #c73514); color: #ffffff !important; padding: 8px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; border: none; }
.sei-btn i { color: #ffffff; font-size: 0.9rem; }
.sei-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(237, 65, 25, 0.35); background: linear-gradient(135deg, #ed4119, #a82e12); color: #ffffff !important; }
.sei-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.sei-bar { display: block; width: 24px; height: 2.5px; background: #ffffff; border-radius: 2px; transition: all 0.3s ease; }
.sei-toggle.active .sei-bar:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); background: #4ea3ff; }
.sei-toggle.active .sei-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sei-toggle.active .sei-bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -5px); background: #ed4119; }
.sei-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 9998; display: none; backdrop-filter: blur(4px); }
.sei-overlay.active { display: block; }
.sei-mobile-panel { position: fixed; top: 0; right: -100%; width: 320px; max-width: 85%; height: 100vh; background: #0b101c; z-index: 9999; padding: 0; transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; }
.sei-mobile-panel.active { right: 0; }
.sei-mobile-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px 12px 20px; border-bottom: 1px solid rgba(78, 163, 255, 0.08); flex-shrink: 0; background: #0b101c; z-index: 2; }
.sei-mobile-title { font-size: 1rem; font-weight: 700; background: linear-gradient(135deg, #ffffff 0%, #4ea3ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sei-mobile-close { background: none; border: none; color: rgba(255, 255, 255, 0.6); font-size: 1.8rem; cursor: pointer; transition: all 0.3s ease; line-height: 1; padding: 0 4px; }
.sei-mobile-close:hover { color: #ed4119; transform: rotate(90deg); }
.sei-mobile-body { flex: 1; overflow-y: auto; padding: 4px 0; }
.sei-mobile-menu { list-style: none; padding: 0; margin: 0; }
.sei-mobile-menu li { border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.sei-mobile-menu li:last-child { border-bottom: none; }
.sei-mobile-menu a { display: flex; align-items: center; padding: 10px 20px; color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.25s ease; gap: 12px; }
.sei-mobile-menu a i { color: #4ea3ff; font-size: 0.9rem; width: 22px; text-align: center; }
.sei-mobile-menu a:hover { color: #4ea3ff; background: rgba(78, 163, 255, 0.04); }
.sei-mobile-submenu { list-style: none; padding: 0; margin: 0; display: none; background: rgba(78, 163, 255, 0.03); }
.sei-mobile-submenu.show { display: block; }
.sei-mobile-submenu li { border-bottom: none; }
.sei-mobile-submenu a { padding: 8px 20px 8px 46px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); }
.sei-mobile-submenu a i { font-size: 0.8rem; width: 18px; color: rgba(78, 163, 255, 0.6); }
.sei-mobile-submenu a:hover { padding-left: 50px; }
.sei-mobile-arrow { margin-left: auto; font-size: 0.7rem; color: rgba(255, 255, 255, 0.3); transition: transform 0.3s ease; }
.sei-mobile-dropdown.open .sei-mobile-arrow { transform: rotate(180deg); color: #4ea3ff; }
.sei-mobile-footer { padding: 10px 20px 16px 20px; border-top: 1px solid rgba(78, 163, 255, 0.08); flex-shrink: 0; background: #0b101c; z-index: 2; }
.sei-mobile-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 10px; background: linear-gradient(135deg, #ed4119, #c73514); color: #ffffff; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: all 0.3s ease; margin-bottom: 10px; border: none; }
.sei-mobile-btn i { color: #ffffff; font-size: 1rem; }
.sei-mobile-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(237, 65, 25, 0.35); color: #ffffff; }
.sei-mobile-social { display: flex; justify-content: center; gap: 16px; padding: 2px 0; }
.sei-mobile-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: 1px solid rgba(255, 255, 255, 0.08); }
.sei-mobile-social a:hover { background: rgba(78, 163, 255, 0.2); color: #4ea3ff; transform: translateY(-3px); border-color: rgba(78, 163, 255, 0.3); }
.sei-mobile-social a:hover .fa-facebook-f { color: #1877f2; }
.sei-mobile-social a:hover .fa-instagram { color: #e4405f; }
.sei-mobile-social a:hover .fa-whatsapp { color: #25d366; }
.sei-mobile-body::-webkit-scrollbar { width: 3px; }
.sei-mobile-body::-webkit-scrollbar-track { background: transparent; }
.sei-mobile-body::-webkit-scrollbar-thumb { background: #4ea3ff; border-radius: 3px; }

@media (max-width: 1024px) {
    .sei-menu, .sei-right .sei-social, .sei-right .sei-btn { display: none; }
    .sei-toggle { display: flex; margin-left: 8px; }
    .sei-navbar { padding: 10px 20px; height: 60px; }
    body { padding-top: 60px; }
    .sei-logo-text { font-size: 1.4rem; }
    .sei-logo-tagline { font-size: 0.6rem; }
    .sei-mobile-footer { padding: 8px 18px 14px 18px; }
    .sei-mobile-btn { padding: 9px; font-size: 0.82rem; margin-bottom: 8px; }
    .sei-mobile-social a { width: 38px; height: 38px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .sei-navbar { height: 56px; padding: 8px 14px; }
    body { padding-top: 56px; }
    .sei-logo-text { font-size: 1.25rem; }
    .sei-logo-tagline { font-size: 0.5rem; }
    .sei-mobile-panel { width: 280px; }
    .sei-mobile-menu a { padding: 9px 16px; font-size: 0.84rem; }
    .sei-mobile-submenu a { padding: 6px 16px 6px 40px; font-size: 0.78rem; }
    .sei-toggle { padding: 4px; margin-left: 4px; }
    .sei-bar { width: 20px; height: 2px; }
    .sei-mobile-footer { padding: 6px 14px 12px 14px; }
    .sei-mobile-btn { font-size: 0.78rem; padding: 8px; margin-bottom: 8px; }
    .sei-mobile-social { gap: 12px; }
    .sei-mobile-social a { width: 36px; height: 36px; font-size: 0.9rem; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.06); }
}








.ticker-tape {
    background: #2884d7;
    overflow: hidden;
    padding: 15px 0;
    width: 100%;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 20s linear infinite;
}
.ticker-item {
    padding: 0 40px;
    white-space: nowrap;
    font-weight: 600;
    color: #fff;
}
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Section Styles - Pure White Background */
.cta-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff !important;
  padding: 30px 40px;
  border-radius: 28px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  position: relative;
  z-index: 10;
}

/* Remove any possible background images or patterns */
.cta-wrapper::before,
.cta-wrapper::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.cta-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 11;
}

/* Left Column */
.cta-left {
  padding-right: 20px;
}

.cta-badge {
  display: inline-block;
  background: #fff5f0;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ff4d1c;
  margin-bottom: 20px;
  border: 1px solid #ffe0d0;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-title .highlight {
  color: #ff4d1c;
  position: relative;
  display: inline-block;
}

.cta-desc {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff4d1c, #e63e0e);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 77, 28, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 77, 28, 0.4);
  gap: 16px;
}

/* Right Column - Custom Image Visual */
.cta-right {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* Custom Image Styles */
.custom-image {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 260px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.08));
}

.stress-image {
  width: 100%;
  height: auto;
  display: block;
  animation: subtleBreath 3s ease-in-out infinite;
}

@keyframes subtleBreath {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Tension Lines - Static, Elegant */
.tension-lines {
  position: absolute;
  top: 25%;
  right: 15%;
  pointer-events: none;
}

.tension-line {
  position: absolute;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #E67E22, transparent);
  animation: linePulse 2s ease-in-out infinite;
}

.tension-line:nth-child(1) {
  top: 15px;
  right: 0;
  width: 35px;
}

.tension-line:nth-child(2) {
  top: 30px;
  right: 10px;
  width: 28px;
  animation-delay: 0.4s;
}

.tension-line:nth-child(3) {
  top: 45px;
  right: 5px;
  width: 22px;
  animation-delay: 0.8s;
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1.1);
  }
}

/* Declining Graph */
.declining-graph {
  position: absolute;
  top: 15px;
  left: 0;
  background: #fafbfc;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  z-index: 3;
}

.graph-label {
  font-size: 11px;
  font-weight: 600;
  color: #E67E22;
  text-align: center;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* Concern Cards - All on Right Side */
.concern-card {
  position: absolute;
  background: #fafbfc;
  padding: 8px 14px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  z-index: 3;
  animation: cardFloat 3s ease-in-out infinite;
}

/* Low Traffic Card - Top Right */
.concern-card {
  top: 60px;
  right: 20px;
  bottom: auto;
  left: auto;
}

/* Poor ROI Card - Middle Right */
.concern-card.card-2 {
  top: 140px;
  right: 20px;
  bottom: auto;
  left: auto;
  animation-delay: 0.6s;
}

/* No Leads Card - Bottom Right */
.concern-card.card-3 {
  top: 220px;
  right: 20px;
  bottom: auto;
  left: auto;
  animation-delay: 1.2s;
}

.card-icon {
  font-size: 16px;
}

.card-text {
  font-size: 12px;
  font-weight: 500;
  color: #4a5568;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Solution Bridge */
.solution-bridge {
  position: absolute;
  bottom: 100px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  animation: bridgePulse 1.8s ease-in-out infinite;
}

.bridge-line {
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, #4DA3FF, #FF4D1C);
}

.bridge-dot {
  position: relative;
}

.bridge-text {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a2e;
  background: white;
  padding: 5px 12px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

@keyframes bridgePulse {
  0%, 100% {
    transform: translateX(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

/* Simple Thought Bubble */
.thought-simple {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 3;
  animation: thoughtRise 2.5s ease-in-out infinite;
}

.simple-bubble {
  background: white;
  padding: 8px 16px;
  border-radius: 24px;
  border-radius: 24px 24px 24px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
  position: relative;
}

.simple-bubble p {
  font-size: 12px;
  font-weight: 500;
  color: #2d3748;
  margin: 0;
  white-space: nowrap;
}

@keyframes thoughtRise {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-left {
    text-align: center;
    padding-right: 0;
  }
  
  .cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-right {
    min-height: 480px;
  }
  
  .visual-container {
    transform: scale(0.9);
  }
  
  .solution-bridge {
    left: -20px;
    bottom: 80px;
  }
  
  .concern-card {
    right: 10px;
  }
  
  .concern-card.card-2 {
    top: 130px;
  }
  
  .concern-card.card-3 {
    top: 200px;
  }
  
  .custom-image {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .cta-wrapper {
    padding: 25px 20px;
    margin: 15px 0;
  }
  
  .cta-container {
    gap: 25px;
  }
  
  .cta-badge {
    font-size: 12px;
    padding: 5px 16px;
    margin-bottom: 15px;
  }
  
  .cta-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .cta-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 10px 28px;
    font-size: 14px;
  }
  
  .cta-right {
    min-height: 450px;
  }
  
  .visual-container {
    transform: scale(1);
    min-height: 420px;
  }
  
  .custom-image {
    width: 220px;
    bottom: 25px;
  }
  
  .declining-graph {
    transform: scale(1);
    top: 15px;
    left: 10px;
  }
  
  .declining-graph svg {
    width: 120px;
    height: 60px;
  }
  
  .graph-label {
    font-size: 11px;
  }
  
  .concern-card {
    padding: 8px 14px;
    right: 15px;
  }
  
  .concern-card {
    top: 70px;
  }
  
  .concern-card.card-2 {
    top: 160px;
  }
  
  .concern-card.card-3 {
    top: 250px;
  }
  
  .card-icon {
    font-size: 16px;
  }
  
  .card-text {
    font-size: 12px;
  }
  
  .solution-bridge {
    bottom: 100px;
    left: -30px;
    gap: 10px;
  }
  
  .bridge-line {
    width: 40px;
  }
  
  .bridge-dot svg {
    width: 36px;
    height: 36px;
  }
  
  .bridge-text {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .thought-simple {
    top: 25px;
    right: 15px;
  }
  
  .simple-bubble {
    padding: 8px 14px;
  }
  
  .simple-bubble p {
    font-size: 11px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cta-wrapper {
    padding: 20px 15px;
    margin: 12px 0;
  }
  
  .cta-container {
    gap: 20px;
  }
  
  .cta-badge {
    font-size: 11px;
    padding: 4px 14px;
    margin-bottom: 12px;
  }
  
  .cta-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .cta-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  
  .cta-button {
    padding: 8px 24px;
    font-size: 13px;
  }
  
  .cta-right {
    min-height: 400px;
  }
  
  .visual-container {
    min-height: 380px;
  }
  
  .custom-image {
    width: 180px;
    bottom: 20px;
  }
  
  .declining-graph {
    top: 10px;
    left: 5px;
    padding: 8px 10px;
  }
  
  .declining-graph svg {
    width: 100px;
    height: 50px;
  }
  
  .graph-label {
    font-size: 10px;
    margin-top: 3px;
  }
  
  .concern-card {
    padding: 6px 12px;
    right: 10px;
  }
  
  .concern-card {
    top: 60px;
  }
  
  .concern-card.card-2 {
    top: 140px;
  }
  
  .concern-card.card-3 {
    top: 220px;
  }
  
  .card-icon {
    font-size: 14px;
  }
  
  .card-text {
    font-size: 11px;
  }
  
  .solution-bridge {
    bottom: 85px;
    left: -20px;
    gap: 8px;
  }
  
  .bridge-line {
    width: 35px;
  }
  
  .bridge-dot svg {
    width: 32px;
    height: 32px;
  }
  
  .bridge-text {
    font-size: 10px;
    padding: 4px 10px;
  }
  
  .thought-simple {
    top: 20px;
    right: 10px;
  }
  
  .simple-bubble {
    padding: 6px 12px;
  }
  
  .simple-bubble p {
    font-size: 10px;
    white-space: nowrap;
  }
}

/* Tools & Technologies Marquee Styles */
.logo-slider-section {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.logo-slider-section::before,
.logo-slider-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider-section::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.logo-slider-section::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.logo-slider-track {
  display: flex;
  width: max-content;
  gap: 50px;
  animation: scroll-ticker 40s linear infinite;
  padding: 0 25px;
}

.tool-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: #5a657c;
  opacity: 0.75;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Default Image Sizes */
.tool-slide img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Zoomed Images for Ahrefs, Moz, Ubersuggest, SEOquake */
.tool-slide img.tool-img-zoom {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.tool-slide span {
  white-space: nowrap;
  font-size: 0.95rem;
}

.tool-slide:hover {
  color: #4ea3ff;
  opacity: 1;
}

.tool-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 25px));
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .logo-slider-track {
    gap: 40px;
  }
  
  .tool-slide img {
    width: 28px;
    height: 28px;
  }
  
  .tool-slide img.tool-img-zoom {
    width: 38px;
    height: 38px;
  }
  
  .tool-slide span {
    font-size: 0.9rem;
  }
  
  .tool-slide {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .logo-slider-section {
    padding: 40px 0;
  }
  
  .logo-slider-section p {
    font-size: 0.75rem;
    margin-bottom: 25px;
  }
  
  .logo-slider-track {
    gap: 35px;
    animation: scroll-ticker 35s linear infinite;
  }
  
  .tool-slide img {
    width: 26px;
    height: 26px;
  }
  
  .tool-slide img.tool-img-zoom {
    width: 34px;
    height: 34px;
  }
  
  .tool-slide span {
    font-size: 0.85rem;
  }
  
  .tool-slide {
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .logo-slider-track {
    gap: 30px;
    animation: scroll-ticker 32s linear infinite;
  }
  
  .tool-slide img {
    width: 24px;
    height: 24px;
  }
  
  .tool-slide img.tool-img-zoom {
    width: 32px;
    height: 32px;
  }
  
  .tool-slide span {
    font-size: 0.8rem;
  }
  
  .tool-slide {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .logo-slider-section {
    padding: 35px 0;
  }
  
  .logo-slider-section p {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  
  .logo-slider-track {
    gap: 25px;
    animation: scroll-ticker 28s linear infinite;
  }
  
  .tool-slide img {
    width: 22px;
    height: 22px;
  }
  
  .tool-slide img.tool-img-zoom {
    width: 28px;
    height: 28px;
  }
  
  .tool-slide span {
    font-size: 0.75rem;
  }
  
  .tool-slide {
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .logo-slider-track {
    gap: 20px;
    animation: scroll-ticker 25s linear infinite;
  }
  
  .tool-slide img {
    width: 20px;
    height: 20px;
  }
  
  .tool-slide img.tool-img-zoom {
    width: 26px;
    height: 26px;
  }
  
  .tool-slide span {
    font-size: 0.7rem;
  }
  
  .tool-slide {
    gap: 5px;
  }
}

/* About & Stats Section Styles */
.about-stats-section {
  background: #f9fafc;
  padding: 100px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.stats-content {
  flex: 1;
}

.section-subtitle {
  color: #4ea3ff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #0b101c;
}

.text-left {
  text-align: left;
}

.glass-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.text-content-panel {
  padding: 30px;
  font-size: 1.05rem;
  color: #0b101c;
  line-height: 1.6;
  border-left: 4px solid #ed4119;
  border-radius: 0 16px 16px 0;
  margin: 16px 0 24px 0;
}

.text-content-panel p {
  margin-bottom: 16px;
}

.text-content-panel p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: #ed4119;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(237, 65, 25, 0.35);
  background: #ed4119;
  color: #ffffff;
}

.stats-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #4ea3ff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.counter {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0b101c 0%, #4ea3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-suffix {
  font-size: 3rem;
  font-weight: 800;
  color: #4ea3ff;
  line-height: 1;
}

.stat-label {
  color: #5a657c;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-stats-section {
    padding: 80px 0;
  }
  
  .stats-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .stats-content {
    text-align: center;
  }
  
  .text-content-panel {
    text-align: left;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .counter {
    font-size: 3rem;
  }
  
  .stat-suffix {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .counter {
    font-size: 2.2rem;
  }
  
  .stat-suffix {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .text-content-panel {
    padding: 20px;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-stats-section {
    padding: 50px 0;
  }
  
  .stats-grid {
    gap: 12px;
  }
  
  .stat-card {
    padding: 20px 12px;
  }
  
  .counter {
    font-size: 1.8rem;
  }
  
  .stat-suffix {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .text-content-panel p {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}

/* Services Section Styles */
.services-section {
  background: #f9fafc;
  padding: 50px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-subtitle {
  color: #4ea3ff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b101c;
  margin-bottom: 12px;
}

.services-desc {
  color: #5a657c;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid - 3 Columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #e2e8f0;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

/* Service Card Header - Icon + Title Side by Side */
.service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Service Icon */
.service-icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #4ea3ff 0%, #2d7edb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(78, 163, 255, 0.2);
  flex-shrink: 0;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(78, 163, 255, 0.3);
}

.service-icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
  stroke-width: 1.5;
}

/* Service Title */
.service-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b101c;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

/* Service Description */
.service-card p {
  font-size: 0.9rem;
  color: #5a657c;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-section {
    padding: 40px 0;
  }
  
  .services-header {
    margin-bottom: 30px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card-header {
    gap: 14px;
    margin-bottom: 14px;
  }
  
  .service-icon-wrapper {
    width: 48px;
    height: 48px;
  }
  
  .service-icon {
    width: 26px;
    height: 26px;
  }
  
  .service-card-header h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 30px 0;
  }
  
  .services-header {
    margin-bottom: 25px;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .services-desc {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }
  
  .service-card {
    padding: 18px;
  }
  
  .service-card-header {
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .service-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  
  .service-icon {
    width: 24px;
    height: 24px;
  }
  
  .service-card-header h3 {
    font-size: 1rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 25px 0;
  }
  
  .services-title {
    font-size: 1.5rem;
  }
  
  .services-subtitle {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  
  .services-desc {
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 16px;
  }
  
  .service-card-header {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .service-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .service-icon {
    width: 22px;
    height: 22px;
  }
  
  .service-card-header h3 {
    font-size: 0.95rem;
  }
  
  .service-card p {
    font-size: 0.8rem;
  }
}

/* Choose Us Section Styles */
.choose-us-section {
  background: #ffffff;
  padding: 70px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.choose-us-header {
  text-align: center;
  margin-bottom: 50px;
}

.choose-us-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(78, 163, 255, 0.1), rgba(237, 65, 25, 0.05));
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #4ea3ff;
  margin-bottom: 16px;
  border: 1px solid rgba(78, 163, 255, 0.2);
}

.choose-us-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b101c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.choose-us-title .gradient-text {
  background: linear-gradient(135deg, #4ea3ff, #ed4119);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.choose-us-desc {
  font-size: 1rem;
  color: #5a657c;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.choose-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Left Column */
.choose-us-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.experience-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 28px;
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: #4ea3ff;
  box-shadow: 0 12px 25px rgba(78, 163, 255, 0.08);
}

.experience-icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 163, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.experience-icon svg {
  width: 26px;
  height: 26px;
  color: #4ea3ff;
}

.experience-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 12px;
}

.experience-content p {
  font-size: 0.95rem;
  color: #5a657c;
  line-height: 1.6;
  margin: 0;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.stat-box {
  flex: 1;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: #4ea3ff;
  background: #ffffff;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ea3ff, #ed4119);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.stat-number::after {
  content: none !important;
}

.stat-label {
  font-size: 0.85rem;
  color: #5a657c;
  font-weight: 500;
}

/* Global Presence */
.global-presence {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 24px;
}

.global-icon {
  width: 36px;
  height: 36px;
  background: rgba(78, 163, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.global-icon svg {
  width: 18px;
  height: 18px;
  color: #4ea3ff;
}

.global-presence h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 8px;
}

.global-presence p {
  font-size: 0.85rem;
  color: #5a657c;
  margin-bottom: 16px;
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.country-list span {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #0b101c;
  transition: all 0.2s ease;
}

.country-list span:hover {
  border-color: #4ea3ff;
  color: #4ea3ff;
}

/* Right Column */
.choose-us-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expertise-card {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 28px;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  border-color: #4ea3ff;
  box-shadow: 0 12px 25px rgba(78, 163, 255, 0.08);
}

.expertise-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 24px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.expertise-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-mark {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4ea3ff, #ed4119);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.expertise-info {
  display: flex;
  flex-direction: column;
}

.expertise-info strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b101c;
}

.expertise-info span {
  font-size: 0.75rem;
  color: #5a657c;
  margin-top: 2px;
}

/* Expertise Note */
.expertise-note {
  background: linear-gradient(135deg, rgba(78, 163, 255, 0.05), rgba(237, 65, 25, 0.03));
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.note-icon {
  flex-shrink: 0;
}

.note-icon svg {
  color: #4ea3ff;
}

.note-text {
  font-size: 0.8rem;
  color: #2d3748;
  line-height: 1.5;
}

.note-text strong {
  color: #0b101c;
}

/* Trust Badge */
.trust-badge {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: #ed4119;
  transform: translateY(-3px);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(237, 65, 25, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 28px;
  height: 28px;
  color: #ed4119;
}

.trust-badge-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 4px;
}

.trust-badge-text p {
  font-size: 0.8rem;
  color: #5a657c;
  margin: 0;
}

/* CTA Button */
.choose-us-cta {
  text-align: center;
  margin-top: 20px;
}

.choose-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4ea3ff, #2d7edb);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(78, 163, 255, 0.25);
}

.choose-us-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(78, 163, 255, 0.35);
  gap: 16px;
  background: linear-gradient(135deg, #2d7edb, #1a66c4);
}

/* Responsive */
@media (max-width: 992px) {
  .choose-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .choose-us-title {
    font-size: 2rem;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .expertise-col {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .choose-us-section {
    padding: 50px 0;
  }
  
  .choose-us-title {
    font-size: 1.8rem;
  }
  
  .choose-us-desc {
    font-size: 0.9rem;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-box {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .expertise-card {
    padding: 20px;
  }
  
  .expertise-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  
  .expertise-item {
    gap: 10px;
  }
  
  .expertise-info strong {
    font-size: 0.8rem;
  }
  
  .expertise-info span {
    font-size: 0.7rem;
  }
  
  .country-list {
    justify-content: center;
  }
  
  .trust-badge {
    flex-direction: column;
    text-align: center;
  }
  
  .choose-us-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .expertise-note {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .choose-us-section {
    padding: 40px 0;
  }
  
  .choose-us-title {
    font-size: 1.5rem;
  }
  
  .choose-us-badge {
    font-size: 0.7rem;
  }
  
  .experience-card {
    padding: 20px;
  }
  
  .expertise-card {
    padding: 18px;
  }
  
  .expertise-note {
    padding: 12px 16px;
  }
  
  .note-text {
    font-size: 0.75rem;
  }
}

/* Graphic Design Section Styles */
.graphic-design-section {
  background: #ffffff;
  padding: 60px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.graphic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* KEEP ORIGINAL GRID */
.graphic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* FIX ONLY THIS BLOCK (minimal changes) */
.graphic-image-block {
  background: linear-gradient(135deg, #f9fafc 0%, #eef2f6 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: auto; /* FIXED (was 450px) */
  height: auto; /* important */
  display: block; /* remove flex causing extra space */
  transition: all 0.3s ease;
}

.graphic-image-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

/* VIDEO FIX */
.graphic-video {
  width: 100%;
  height: auto; /* KEY FIX */
  display: block; /* removes bottom whitespace */
  border-radius: 24px;
}

/* Content */
.graphic-content-block {
  padding: 20px 0;
}

.graphic-subtitle {
  color: #4ea3ff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.graphic-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b101c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.graphic-description {
  font-size: 1rem;
  color: #5a657c;
  line-height: 1.7;
  margin-bottom: 24px;
}

.graphic-description strong {
  color: #4ea3ff;
}

/* Features */
.graphic-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.graphic-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
}

.graphic-features li svg {
  width: 20px;
  height: 20px;
  color: #ed4119;
  flex-shrink: 0;
  stroke-width: 2.5;
}

/* Button */
.graphic-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #4ea3ff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #4ea3ff;
}

.graphic-btn:hover {
  background: rgba(78, 163, 255, 0.05);
  transform: translateY(-2px);
  border-color: #ed4119;
  color: #ed4119;
}

/* Responsive (UNCHANGED STRUCTURE) */
@media (max-width: 992px) {
  .graphic-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .graphic-image-block {
    order: 1;
  }

  .graphic-content-block {
    order: 2;
    text-align: center;
  }

  .graphic-title {
    font-size: 2rem;
  }

  .graphic-features {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .graphic-btn {
    margin: 0 auto;
  }
}

/* GEO Section Styles - Pure White Background */
.geo-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff !important;
  padding: 70px 40px;
  border-radius: 28px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  position: relative;
  z-index: 10;
}

/* Remove any possible background images or patterns */
.geo-wrapper::before,
.geo-wrapper::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.geo-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 11;
}

/* Left Column */
.geo-left {
  padding-right: 20px;
}

.geo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f0fe, #f0e8fe);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #4da3ff;
  margin-bottom: 24px;
  border: 1px solid #e0e8f5;
}

.geo-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.geo-title .highlight {
  background: linear-gradient(135deg, #4da3ff, #ff4d1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.geo-desc {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Features Grid */
.geo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.geo-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fafbfc;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.geo-feature:hover {
  transform: translateX(5px);
  border-color: #e2e8f0;
  background: #ffffff;
}

.feature-icon {
  font-size: 24px;
}

.feature-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}

/* AI Note */
.geo-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #f8faff, #faf8ff);
  padding: 16px 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid #e8ecf5;
}

.note-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.note-text {
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.5;
}

/* Button */
.geo-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4da3ff, #2d7edb);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(77, 163, 255, 0.3);
  border: none;
  cursor: pointer;
}

.geo-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(77, 163, 255, 0.4);
  gap: 16px;
}

/* ========== RIGHT COLUMN - UNIQUE CLASS NAMES ========== */
.ai-visual-right {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* AI Orb */
.ai-orb-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 2;
}

.orb-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4da3ff, #ff4d1c);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(77, 163, 255, 0.5);
  animation: pulseCenter 2s ease-in-out infinite;
}

.orb-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.orb-ring-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(77, 163, 255, 0.4);
  animation: ringExpand 3s ease-out infinite;
}

.ring-one {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ring-two {
  width: 160px;
  height: 160px;
  animation-delay: 0.6s;
}

.ring-three {
  width: 200px;
  height: 200px;
  animation-delay: 1.2s;
}

@keyframes ringExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

@keyframes pulseCenter {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
}

/* Platform Badges */
.platform-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
  z-index: 3;
  animation: badgeMove 3s ease-in-out infinite;
}

.google-badge {
  top: 20px;
  left: 10px;
  animation-delay: 0s;
}

.chatgpt-badge {
  top: 60px;
  right: 10px;
  animation-delay: 0.5s;
}

.perplexity-badge {
  bottom: 60px;
  left: 20px;
  animation-delay: 1s;
}

.platform-icon {
  font-size: 18px;
}

.platform-title {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a2e;
}

.platform-status {
  font-size: 12px;
  color: #4da3ff;
  font-weight: bold;
}

@keyframes badgeMove {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Metrics Cards */
.metric-data {
  position: absolute;
  background: linear-gradient(135deg, #ffffff, #fafbfc);
  padding: 12px 18px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2f6;
  z-index: 3;
  min-width: 100px;
  transition: all 0.3s ease;
  animation: metricRise 2.5s ease-in-out infinite;
}

.metric-data:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.visibility-metric {
  top: 120px;
  right: 20px;
  animation-delay: 0s;
}

.ranking-metric {
  bottom: 140px;
  right: 50px;
  animation-delay: 0.8s;
}

.traffic-metric {
  bottom: 180px;
  left: 30px;
  animation-delay: 1.6s;
}

.metric-number {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #4da3ff, #ff4d1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.metric-name {
  font-size: 11px;
  font-weight: 600;
  color: #4a5568;
  margin-top: 5px;
  letter-spacing: 0.3px;
}

@keyframes metricRise {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* GEO Tag */
.geo-tag-badge {
  position: absolute;
  bottom: 40px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff5f0, #ffffff);
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid #ffd9c8;
  z-index: 3;
  animation: tagGlowEffect 2s ease-in-out infinite;
}

.tag-emoji {
  font-size: 16px;
}

.tag-title {
  font-size: 11px;
  font-weight: 600;
  color: #ff4d1c;
  letter-spacing: 0.3px;
}

@keyframes tagGlowEffect {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(255, 77, 28, 0.1);
    border-color: #ffd9c8;
  }
  50% {
    box-shadow: 0 4px 15px rgba(255, 77, 28, 0.2);
    border-color: #ffb28a;
  }
}

/* Pulse Rings */
.pulse-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(77, 163, 255, 0.2);
  pointer-events: none;
  animation: waveEffect 4s ease-out infinite;
}

.wave-primary {
  width: 250px;
  height: 250px;
  animation-delay: 0s;
}

.wave-secondary {
  width: 320px;
  height: 320px;
  animation-delay: 1s;
}

.wave-tertiary {
  width: 390px;
  height: 390px;
  animation-delay: 2s;
}

@keyframes waveEffect {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .geo-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .geo-left {
    text-align: center;
    padding-right: 0;
  }
  
  .geo-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .geo-title {
    font-size: 38px;
  }
  
  .geo-features {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .geo-note {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  
  .ai-visual-right {
    min-height: 520px;
  }
  
  .ai-visual-container {
    transform: scale(0.9);
  }
}

/* Mobile View - Slightly Reduced */
@media (max-width: 768px) {
  .geo-wrapper {
    padding: 40px 20px;
  }
  
  .geo-title {
    font-size: 32px;
  }
  
  .geo-desc {
    font-size: 14px;
  }
  
  .geo-features {
    gap: 10px;
  }
  
  .geo-feature {
    padding: 10px 12px;
  }
  
  .feature-icon {
    font-size: 20px;
  }
  
  .feature-text {
    font-size: 12px;
  }
  
  /* Right Column - Slightly Reduced */
  .ai-visual-right {
    min-height: 520px;
  }
  
  .ai-visual-container {
    transform: scale(0.95);
  }
  
  .ai-orb-core {
    width: 170px;
    height: 170px;
  }
  
  .orb-center {
    width: 75px;
    height: 75px;
  }
  
  .orb-emoji {
    font-size: 38px;
  }
  
  .ring-one {
    width: 115px;
    height: 115px;
  }
  
  .ring-two {
    width: 150px;
    height: 150px;
  }
  
  .ring-three {
    width: 185px;
    height: 185px;
  }
  
  .platform-item {
    padding: 7px 14px;
  }
  
  .platform-icon {
    font-size: 16px;
  }
  
  .platform-title {
    font-size: 11px;
  }
  
  .google-badge {
    top: 15px;
    left: 5px;
  }
  
  .chatgpt-badge {
    top: 50px;
    right: 5px;
  }
  
  .perplexity-badge {
    bottom: 50px;
    left: 10px;
  }
  
  .metric-data {
    padding: 10px 16px;
    min-width: 90px;
  }
  
  .metric-number {
    font-size: 24px;
  }
  
  .metric-name {
    font-size: 10px;
  }
  
  .visibility-metric {
    top: 100px;
    right: 10px;
  }
  
  .ranking-metric {
    bottom: 120px;
    right: 40px;
  }
  
  .traffic-metric {
    bottom: 150px;
    left: 20px;
  }
  
  .geo-tag-badge {
    bottom: 30px;
    right: 10px;
    padding: 6px 14px;
  }
  
  .tag-emoji {
    font-size: 14px;
  }
  
  .tag-title {
    font-size: 10px;
  }
  
  .wave-primary {
    width: 220px;
    height: 220px;
  }
  
  .wave-secondary {
    width: 280px;
    height: 280px;
  }
  
  .wave-tertiary {
    width: 340px;
    height: 340px;
  }
}

/* Small Mobile */
@media (max-width: 550px) {
  .geo-wrapper {
    padding: 30px 15px;
  }
  
  .geo-title {
    font-size: 26px;
  }
  
  .ai-visual-right {
    min-height: 480px;
  }
  
  .ai-visual-container {
    transform: scale(0.9);
  }
  
  .ai-orb-core {
    width: 160px;
    height: 160px;
  }
  
  .orb-center {
    width: 70px;
    height: 70px;
  }
  
  .orb-emoji {
    font-size: 35px;
  }
  
  .metric-data {
    padding: 8px 14px;
    min-width: 80px;
  }
  
  .metric-number {
    font-size: 22px;
  }
  
  .visibility-metric {
    top: 80px;
    right: 5px;
  }
  
  .ranking-metric {
    bottom: 100px;
    right: 30px;
  }
  
  .traffic-metric {
    bottom: 130px;
    left: 15px;
  }
}


/* Industries Section Styles */
.industries-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0f1f 0%, #050b16 100%);
  padding: 70px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin: 20px 0;
}

.industries-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.industries-header {
  text-align: center;
  margin-bottom: 55px;
}

.industries-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.2), rgba(255, 77, 28, 0.15));
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #4da3ff;
  margin-bottom: 20px;
  border: 1px solid rgba(77, 163, 255, 0.3);
}

.industries-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 18px;
  line-height: 1.2;
}

.industries-title .gradient-text {
  background: linear-gradient(135deg, #4da3ff, #ff4d1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.industries-desc {
  font-size: 16px;
  color: #a0a8c0;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Industries Grid - 6 Items (3x2 layout) */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Industry Card with Image Hover Effect */
.industry-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(77, 163, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 163, 255, 0.6);
  background: rgba(77, 163, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image Container with Scroll Effect - Auto Scroll on Hover */
.card-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0a0f1f;
  cursor: pointer;
}

.image-scroll-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(77, 163, 255, 0.5) rgba(255, 255, 255, 0.1);
}

.image-scroll-wrapper::-webkit-scrollbar {
  width: 6px;
}

.image-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.image-scroll-wrapper::-webkit-scrollbar-thumb {
  background: rgba(77, 163, 255, 0.5);
  border-radius: 3px;
}

.image-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(77, 163, 255, 0.8);
}

.scrolling-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Auto Scroll Animation on Hover - Starts Moving Upward */
.industry-card:hover .image-scroll-wrapper {
  animation: autoScrollUp 12s linear infinite;
}

/* Different scroll speeds for variety */
.industry-card:nth-child(1):hover .image-scroll-wrapper { animation: autoScrollUp 10s linear infinite; }
.industry-card:nth-child(2):hover .image-scroll-wrapper { animation: autoScrollUp 14s linear infinite; }
.industry-card:nth-child(3):hover .image-scroll-wrapper { animation: autoScrollUp 11s linear infinite; }
.industry-card:nth-child(4):hover .image-scroll-wrapper { animation: autoScrollUp 13s linear infinite; }
.industry-card:nth-child(5):hover .image-scroll-wrapper { animation: autoScrollUp 9s linear infinite; }
.industry-card:nth-child(6):hover .image-scroll-wrapper { animation: autoScrollUp 15s linear infinite; }

@keyframes autoScrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-100% + 280px));
  }
}

/* Card Content - Uniform Text Sizes */
.card-content {
  padding: 24px 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-content p {
  font-size: 13px;
  color: #a0a8c0;
  line-height: 1.5;
  margin: 0;
}

/* CTA Button */
.industries-cta {
  text-align: center;
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4da3ff, #2d7edb);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(77, 163, 255, 0.3);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(77, 163, 255, 0.4);
  background: linear-gradient(135deg, #5cadff, #3e8ae8);
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.industry-card:nth-child(1) { animation-delay: 0.02s; }
.industry-card:nth-child(2) { animation-delay: 0.04s; }
.industry-card:nth-child(3) { animation-delay: 0.06s; }
.industry-card:nth-child(4) { animation-delay: 0.08s; }
.industry-card:nth-child(5) { animation-delay: 0.10s; }
.industry-card:nth-child(6) { animation-delay: 0.12s; }

/* Responsive Design */
@media (max-width: 992px) {
  .industries-wrapper {
    padding: 50px 20px;
  }
  
  .industries-title {
    font-size: 36px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .card-image-container {
    height: 240px;
  }
  
  @keyframes autoScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-100% + 240px)); }
  }
  
  .card-content h3 {
    font-size: 18px;
  }
  
  .card-content p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .industries-title {
    font-size: 30px;
  }
  
  .industries-desc {
    font-size: 14px;
  }
  
  /* 2 cards in a row on mobile */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
  }
  
  .card-image-container {
    height: 180px;
  }
  
  @keyframes autoScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-100% + 180px)); }
  }
  
  .card-content {
    padding: 16px 12px;
  }
  
  .card-content h3 {
    font-size: 15px;
  }
  
  .card-content p {
    font-size: 11px;
  }
  
  .cta-button {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 550px) {
  .industries-title {
    font-size: 26px;
  }
  
  .industries-grid {
    gap: 12px;
  }
  
  .card-image-container {
    height: 160px;
  }
  
  @keyframes autoScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-100% + 160px)); }
  }
  
  .card-content {
    padding: 12px 10px;
  }
  
  .card-content h3 {
    font-size: 14px;
  }
  
  .card-content p {
    font-size: 10px;
  }
}


/* Pricing Section Styles */
.pricing-section {
  background: #f9fafc;
  padding: 80px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-subtitle {
  color: #4ea3ff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b101c;
  margin-bottom: 16px;
}

.pricing-desc {
  color: #5a657c;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Grid - 3 Columns */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

/* Popular Card Styling */
.pricing-card.popular {
  border: 2px solid #4ea3ff;
  box-shadow: 0 10px 30px rgba(78, 163, 255, 0.15);
  position: relative;
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4ea3ff;
  color: #ffffff;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(78, 163, 255, 0.3);
}

/* Plan Header */
.plan-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eef2f6;
}

.plan-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b101c;
  margin-bottom: 8px;
}

.plan-desc {
  color: #5a657c;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.amount {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ea3ff, #1e5bbf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.period {
  color: #5a657c;
  padding-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Plan Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1e293b;
}

.plan-features li svg {
  width: 18px;
  height: 18px;
  color: #4ea3ff;
  flex-shrink: 0;
  stroke-width: 2.5;
}

/* View More Link */
.view-more-link {
  display: inline-block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ea3ff;
  text-decoration: none;
  margin: 8px 0 20px 0;
  padding: 6px 0;
  transition: all 0.3s ease;
  border-bottom: 1px dashed rgba(78, 163, 255, 0.3);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.view-more-link:hover {
  color: #ed4119;
  border-bottom-color: #ed4119;
  gap: 6px;
  transform: translateX(3px);
}

/* Buttons */
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

.pricing-btn-primary {
  background: #ed4119;
  color: #ffffff;
  border: none;
}

.pricing-btn-primary:hover {
  background: #ed4119;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 65, 25, 0.3);
  color: #ffffff;
}

.pricing-btn-outline {
  background: transparent;
  color: #4ea3ff;
  border: 2px solid #4ea3ff;
}

.pricing-btn-outline:hover {
  background: rgba(78, 163, 255, 0.05);
  transform: translateY(-2px);
  border-color: #ed4119;
  color: #ed4119;
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
  }
  
  .pricing-title {
    font-size: 2rem;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .plan-header h3 {
    font-size: 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 50px 0;
  }
  
  .pricing-header {
    margin-bottom: 35px;
  }
  
  .pricing-title {
    font-size: 1.8rem;
  }
  
  .pricing-desc {
    font-size: 1rem;
  }
  
  .pricing-card {
    padding: 28px;
  }
  
  .plan-header h3 {
    font-size: 1.4rem;
  }
  
  .amount {
    font-size: 2.2rem;
  }
  
  .plan-features li {
    font-size: 0.85rem;
  }
  
  .view-more-link {
    font-size: 0.75rem;
  }
  
  .pricing-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 0;
  }
  
  .pricing-title {
    font-size: 1.5rem;
  }
  
  .pricing-subtitle {
    font-size: 0.75rem;
  }
  
  .pricing-card {
    padding: 22px;
  }
  
  .plan-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .plan-header h3 {
    font-size: 1.3rem;
  }
  
  .amount {
    font-size: 2rem;
  }
  
  .plan-features {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .plan-features li {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .plan-features li svg {
    width: 16px;
    height: 16px;
  }
  
  .view-more-link {
    font-size: 0.7rem;
    margin: 5px 0 18px 0;
  }
}

/* Main Container - Pure White Background - NO DOTS */
.seo-content-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff !important;
  padding: 60px 40px;
  border-radius: 28px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  position: relative;
  z-index: 10;
}

/* Remove any possible background images or patterns */
.seo-content-wrapper::before,
.seo-content-wrapper::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.seo-content-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 11;
  background: transparent;
}

/* Typography */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-title .highlight {
  color: #ff4d1c;
  position: relative;
}

.section-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Hero Section */
.seo-hero {
  text-align: center;
  padding: 40px 0 30px;
  border-bottom: 2px solid #eef2f6;
  margin-bottom: 40px;
}

.seo-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.seo-hero-title .gradient-text {
  background: linear-gradient(135deg, #4da3ff, #ff4d1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.seo-hero-desc {
  font-size: 18px;
  color: #4a5568;
  font-weight: 500;
}

/* Introduction Section */
.seo-intro {
  margin-bottom: 50px;
  padding: 20px 0;
}

/* AI Info Section */
.ai-info-section {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f8faff, #ffffff);
  border-radius: 24px;
  border: 1px solid #eef2f6;
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.15), rgba(255, 77, 28, 0.1));
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #4da3ff;
  margin-bottom: 16px;
  border: 1px solid rgba(77, 163, 255, 0.2);
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.ai-feature-card {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.ai-feature-card:hover {
  transform: translateY(-5px);
  border-color: #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ai-icon-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ai-icon {
  font-size: 32px;
}

.ai-headline {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.ai-feature-card p {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
}

/* Importance Grid - Icons inline with headlines */
.importance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.importance-card {
  background: #fafbfc;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.importance-card:hover {
  transform: translateY(-5px);
  border-color: #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card-icon-headline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.card-headline {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.importance-card p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
}

/* How SEO Works */
.seo-how-works {
  margin: 50px 0;
  padding: 30px;
  background: #fafbfc;
  border-radius: 24px;
  border: 1px solid #eef2f6;
}

.work-steps {
  margin-top: 25px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #eef2f6;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4da3ff, #ff4d1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

/* Benefits Section - Larger Icons */
.seo-benefits {
  margin: 50px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px 0 20px;
}

.benefit-item {
  background: #fafbfc;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item:hover {
  transform: translateX(5px);
  border-color: #e2e8f0;
  background: #ffffff;
}

.benefit-icon-large {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.benefit-text {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
}

.benefit-note {
  background: #fafbfc;
  padding: 20px;
  border-radius: 16px;
  margin-top: 20px;
  border: 1px solid #eef2f6;
}

.benefit-note p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.seo-cta {
  text-align: center;
  padding: 40px 0 20px;
  border-top: 2px solid #eef2f6;
  margin-top: 30px;
}

.seo-cta p {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff4d1c, #e63e0e);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 77, 28, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 77, 28, 0.4);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .seo-content-wrapper {
    padding: 40px 25px;
  }
  
  .seo-hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .importance-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .ai-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .seo-content-wrapper {
    padding: 30px 20px;
  }
  
  .seo-hero-title {
    font-size: 28px;
  }
  
  .seo-hero-desc {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-text {
    font-size: 14px;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .ai-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .ai-feature-card {
    padding: 15px 12px;
  }
  
  .ai-icon {
    font-size: 28px;
  }
  
  .ai-headline {
    font-size: 13px;
  }
  
  .card-icon {
    font-size: 28px;
  }
  
  .card-headline {
    font-size: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .benefit-item {
    padding: 12px 15px;
  }
  
  .benefit-icon-large {
    font-size: 24px;
  }
  
  .benefit-text {
    font-size: 13px;
  }
  
  .seo-cta p {
    font-size: 18px;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 550px) {
  .seo-hero-title {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .importance-card {
    padding: 18px;
  }
  
  .card-icon {
    font-size: 24px;
  }
  
  .card-headline {
    font-size: 15px;
  }
  
  .ai-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .ai-feature-card {
    padding: 12px 10px;
  }
  
  .ai-icon {
    font-size: 24px;
  }
  
  .ai-headline {
    font-size: 12px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .benefit-item {
    padding: 10px 12px;
  }
  
  .benefit-icon-large {
    font-size: 22px;
  }
  
  .benefit-text {
    font-size: 11px;
  }
}


/* Why Choose Us Section - Redesigned */
.why-choose-redesigned {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-redesigned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ea3ff, #ed4119, #4ea3ff, transparent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(78, 163, 255, 0.1), rgba(237, 65, 25, 0.05));
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #4ea3ff;
  margin-bottom: 16px;
  border: 1px solid rgba(78, 163, 255, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b101c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #4ea3ff, #ed4119);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-desc {
  font-size: 10% /* Simple number formatting */
  font-size: 1rem;
  color: #5a657c;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid - 3 Columns */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Card Styling - No Icons */
.why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s ease;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #4ea3ff;
  box-shadow: 0 20px 35px rgba(78, 163, 255, 0.12);
}

/* Typography */
.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.9rem;
  color: #5a657c;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* Card Footer */
.card-footer {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
  margin-top: auto;
}

.footer-highlight {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ea3ff, #ed4119);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 45px;
  padding: 20px 0;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  padding: 6px 18px;
  background: #ffffff;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: #4ea3ff;
}

.trust-badge:hover {
  border-color: #4ea3ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 163, 255, 0.1);
}

/* CTA Button */
.why-cta {
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0b101c, #1a1f2e);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: #ed4119;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(237, 65, 25, 0.35);
  gap: 16px;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1100px) {
  .why-grid {
    gap: 20px;
  }
  
  .why-card {
    padding: 24px;
  }
  
  .why-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .why-choose-redesigned {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .trust-badges {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .why-choose-redesigned {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-desc {
    font-size: 0.9rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .cta-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .why-choose-redesigned {
    padding: 30px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-badge {
    font-size: 0.7rem;
  }
  
  .why-card {
    padding: 20px;
  }
  
  .why-card h3 {
    font-size: 1.1rem;
  }
  
  .footer-highlight {
    font-size: 1rem;
  }
}

/* SEO in 2027 Section Styles */
.seo-future-section {
  background: #ffffff;
  padding: 70px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
}

.seo-future-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.seo-future-header {
  text-align: center;
  margin-bottom: 50px;
}

.seo-future-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(78, 163, 255, 0.1), rgba(237, 65, 25, 0.05));
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #4ea3ff;
  margin-bottom: 16px;
  border: 1px solid rgba(78, 163, 255, 0.2);
}

.seo-future-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b101c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.seo-future-title .gradient-text {
  background: linear-gradient(135deg, #4ea3ff, #ed4119);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.seo-future-desc {
  font-size: 1rem;
  color: #5a657c;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Two Column Grid */
.seo-future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Left Column Cards */
.value-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: #4ea3ff;
  box-shadow: 0 12px 25px rgba(78, 163, 255, 0.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 163, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  color: #4ea3ff;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: #5a657c;
  line-height: 1.6;
  margin-bottom: 20px;
}

.value-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0;
}

.value-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.value-stat {
  flex: 1;
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
}

.value-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ea3ff, #ed4119);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.value-label {
  font-size: 0.65rem;
  color: #5a657c;
}

.evolution-card {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.evolution-card:hover {
  border-color: #4ea3ff;
}

.evolution-icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 163, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.evolution-icon svg {
  width: 26px;
  height: 26px;
  color: #4ea3ff;
}

.evolution-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 12px;
}

.evolution-subnote {
  font-size: 0.9rem;
  color: #5a657c;
  line-height: 1.6;
  margin: 12px 0 20px 0;
}

.evolution-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.evolution-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.point-icon {
  width: 32px;
  height: 32px;
  background: rgba(78, 163, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon svg {
  width: 18px;
  height: 18px;
  color: #4ea3ff;
}

.evolution-point strong {
  font-size: 0.95rem;
  color: #0b101c;
  display: block;
  margin-bottom: 4px;
}

.evolution-point p {
  font-size: 0.85rem;
  color: #5a657c;
  margin: 0;
  line-height: 1.45;
}

.trust-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 28px;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: #ed4119;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(237, 65, 25, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  color: #ed4119;
}

.trust-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 12px;
}

.trust-card > p {
  font-size: 0.95rem;
  color: #5a657c;
  line-height: 1.6;
  margin-bottom: 20px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #2d3748;
}

.trust-point svg {
  width: 14px;
  height: 14px;
  color: #4ea3ff;
  flex-shrink: 0;
}

/* Right Column */
.whats-changed-card {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
}

.changed-icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 163, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.changed-icon svg {
  width: 26px;
  height: 26px;
  color: #4ea3ff;
}

.whats-changed-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 20px;
}

.change-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef2f6;
}

.change-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.change-icon {
  width: 34px;
  height: 34px;
  background: rgba(78, 163, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.change-icon svg {
  width: 18px;
  height: 18px;
  color: #4ea3ff;
}

.change-content strong {
  font-size: 0.95rem;
  color: #0b101c;
  display: block;
  margin-bottom: 4px;
}

.change-content p {
  font-size: 0.85rem;
  color: #5a657c;
  margin: 0;
  line-height: 1.45;
}

.bottom-line-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.bottom-line-icon {
  width: 48px;
  height: 48px;
  background: rgba(237, 65, 25, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bottom-line-icon svg {
  width: 28px;
  height: 28px;
  color: #ed4119;
}

.bottom-line-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0b101c;
  margin-bottom: 6px;
}

.bottom-line-content p {
  font-size: 0.85rem;
  color: #5a657c;
  margin: 0;
  line-height: 1.45;
}

/* CTA Button */
.seo-future-cta {
  text-align: center;
}

.future-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4ea3ff, #2d7edb);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.future-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(78, 163, 255, 0.35);
  gap: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .seo-future-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .seo-future-title {
    font-size: 2rem;
  }
  
  .value-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .seo-future-section {
    padding: 50px 0;
  }
  
  .seo-future-title {
    font-size: 1.8rem;
  }
  
  .seo-future-desc {
    font-size: 0.9rem;
  }
  
  .value-card, .evolution-card, .trust-card, .whats-changed-card {
    padding: 20px;
  }
  
  .value-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .value-stat {
    padding: 10px;
  }
  
  .evolution-points {
    gap: 16px;
  }
  
  .future-cta-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .bottom-line-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .seo-future-section {
    padding: 40px 0;
  }
  
  .seo-future-title {
    font-size: 1.5rem;
  }
  
  .seo-future-badge {
    font-size: 0.7rem;
  }
}


/* FAQ Section Styles */
.faq-section {
  background: #f9fafc;
  padding: 60px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-subtitle {
  color: #4ea3ff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b101c;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: rgba(78, 163, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #0b101c;
  background: #ffffff;
  transition: all 0.3s ease;
}

.faq-question span {
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #4ea3ff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fefefe;
  border-top: 1px solid transparent;
}

.faq-answer p {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: #5a657c;
  line-height: 1.6;
  margin: 0;
}

/* Active State */
.faq-item.active {
  border-color: rgba(78, 163, 255, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  border-top-color: #eef2f6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-header {
    margin-bottom: 35px;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-subtitle {
    font-size: 0.75rem;
  }
  
  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    padding: 0 20px 16px 20px;
    font-size: 0.9rem;
  }
  
  .faq-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-header {
    margin-bottom: 28px;
  }
  
  .faq-title {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .faq-answer p {
    padding: 0 16px 14px 16px;
    font-size: 0.85rem;
  }
  
  .faq-icon {
    width: 16px;
    height: 16px;
  }
}

/* Honesty & Transparency Section - New Colors */
.honesty-transparency-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff !important;
  padding: 70px 40px;
  border-radius: 28px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  position: relative;
  z-index: 10;
}

.honesty-transparency-section::before,
.honesty-transparency-section::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.honesty-transparency-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 11;
}

/* Left Column */
.honesty-transparency-left {
  padding-right: 20px;
}

.honesty-badge {
  display: inline-block;
  background: rgba(78, 163, 255, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #4ea3ff;
  margin-bottom: 24px;
  border: 1px solid rgba(78, 163, 255, 0.2);
}

.honesty-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b0b17;
  margin-bottom: 20px;
  line-height: 1.2;
}

.honesty-title .highlight {
  color: #f63822;
  position: relative;
  display: inline-block;
}

.honesty-desc {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Promise List */
.promise-list {
  margin-bottom: 35px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.promise-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #0b0b17, #4ea3ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promise-icon svg {
  width: 11px;
  height: 11px;
  color: white;
}

.promise-item span {
  font-size: 15px;
  font-weight: 500;
  color: #0b0b17;
}

/* Button */
.honesty-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f63822;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246, 56, 34, 0.25);
  border: none;
  cursor: pointer;
}

.honesty-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246, 56, 34, 0.35);
  background: #e02e18;
  gap: 16px;
}

/* Right Column */
.honesty-transparency-right {
  position: relative;
}

/* SEO Success Meter */
.success-meter {
  background: #f8fafc;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #eef2f6;
}

.meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f6;
}

.meter-title {
  font-size: 14px;
  font-weight: 700;
  color: #0b0b17;
}

.meter-badge {
  font-size: 10px;
  font-weight: 600;
  color: #4ea3ff;
  background: rgba(78, 163, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.meter-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meter-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0b0b17, #4ea3ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-circle span {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.step-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0b0b17;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 11px;
  color: #718096;
  margin: 0;
}

/* Trust Metrics Row */
.trust-metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-card {
  flex: 1;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: #4ea3ff;
  background: #ffffff;
}

.trust-number {
  font-size: 28px;
  font-weight: 800;
  color: #f63822;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 10px;
  font-weight: 500;
  color: #0b0b17;
}

/* Philosophy Cards */
.philosophy-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.philosophy-card {
  flex: 1;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-2px);
  border-color: #4ea3ff;
  background: #ffffff;
}

.philosophy-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.philosophy-text h4 {
  font-size: 11px;
  font-weight: 700;
  color: #0b0b17;
  margin-bottom: 3px;
}

.philosophy-text p {
  font-size: 9px;
  color: #718096;
  margin: 0;
  line-height: 1.3;
}

/* Floating Warning Badge */
.floating-warning-badge {
  position: absolute;
  top: -18px;
  right: -15px;
  background: #ffffff;
  border-radius: 40px;
  padding: 8px 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(246, 56, 34, 0.3);
  animation: badgeFloat 2.5s ease-in-out infinite;
}

.warning-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.warning-icon {
  font-size: 14px;
  color: #f63822;
}

.warning-text {
  font-size: 11px;
  font-weight: 700;
  color: #0b0b17;
}

.warning-line {
  width: 1px;
  height: 16px;
  background: #e2e8f0;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.02) translateY(-3px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .honesty-transparency-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .honesty-transparency-left {
    text-align: center;
    padding-right: 0;
  }
  
  .honesty-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .promise-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  
  .honesty-title {
    font-size: 36px;
  }
  
  .honesty-transparency-right {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .floating-warning-badge {
    right: -5px;
    top: -12px;
  }
}

@media (max-width: 768px) {
  .honesty-transparency-section {
    padding: 50px 20px;
  }
  
  .honesty-title {
    font-size: 30px;
  }
  
  .honesty-desc {
    font-size: 14px;
  }
  
  .trust-metrics {
    flex-wrap: wrap;
  }
  
  .philosophy-cards {
    flex-direction: column;
    gap: 10px;
  }
  
  .philosophy-card {
    padding: 10px 15px;
  }
  
  .meter-step {
    gap: 12px;
  }
  
  .step-circle {
    width: 36px;
    height: 36px;
  }
  
  .step-circle span {
    font-size: 14px;
  }
  
  .step-content h4 {
    font-size: 13px;
  }
  
  .step-content p {
    font-size: 10px;
  }
}

@media (max-width: 550px) {
  .meter-steps {
    gap: 15px;
  }
  
  .meter-step {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .trust-metrics {
    flex-direction: column;
  }
  
  .trust-card {
    padding: 12px;
  }
  
  .trust-number {
    font-size: 24px;
  }
  
  .floating-warning-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 15px;
    justify-content: center;
    display: inline-flex;
    width: auto;
  }
}




















/* =========================================
   FOOTER SECTION - SEO Expert India
   ========================================= */

/* Footer main container */
.site-footer {
    background-color: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Footer inner container */
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer grid layout - 4 columns desktop */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 0;
}

/* Footer logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 1.2rem;
    text-decoration: none;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff, #4ea3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo-text span {
    color: #ed4119;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.footer-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 5px;
    display: block;
    color: #9aa3b8;
}

/* About column description */
.footer-about p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
    max-width: 350px;
    line-height: 1.6;
    color: #9aa3b8;
    font-size: 0.85rem;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: #4ea3ff;
    border-color: #4ea3ff;
    transform: translateY(-3px);
}

/* Footer column headings */
.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Quick links list */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #9aa3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-block;
}

.footer-links li a:hover {
    color: #4ea3ff;
    transform: translateX(5px);
}

/* Contact info list */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #9aa3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list li a {
    color: #9aa3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: #4ea3ff;
}

.contact-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* =========================================
   MOBILE RESPONSIVE FIXES
   ========================================= */

/* Tablet */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-about p {
        max-width: 100%;
    }
}

/* Mobile - Increased Text Sizes */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 45px 0 25px;
    }
    
    .footer-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: left;
        width: 100%;
        margin-bottom: 5px;
    }
    
    /* INCREASED TEXT SIZES FOR MOBILE */
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-subtitle {
        font-size: 0.85rem;
    }
    
    .footer-about p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 1.1rem;
    }
    
    .footer-links li a {
        font-size: 0.95rem;
        padding: 4px 0;
    }
    
    .contact-list li {
        font-size: 0.95rem;
        gap: 14px;
        margin-bottom: 18px;
    }
    
    .contact-list li svg {
        width: 20px;
        height: 20px;
    }
    
    .business-hours div {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .contact-phone span {
        font-size: 0.75rem;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-bottom: 10px;
        gap: 14px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Small Mobile - Further Text Size Adjustments */
@media screen and (max-width: 550px) {
    .footer-container {
        padding: 0 16px;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo-text {
        font-size: 1.7rem;
    }
    
    .footer-subtitle {
        font-size: 0.8rem;
    }
    
    .footer-about p {
        font-size: 0.9rem;
    }
    
    .footer-col h3 {
        font-size: 1.15rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
    }
    
    .contact-list li {
        font-size: 0.9rem;
    }
    
    .business-hours div {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 380px) {
    .footer-container {
        padding: 0 14px;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-about p {
        font-size: 0.88rem;
    }
    
    .footer-col h3 {
        font-size: 1.1rem;
    }
    
    .footer-links li a {
        font-size: 0.88rem;
    }
    
    .contact-list li {
        font-size: 0.88rem;
    }
    
    .business-hours div {
        font-size: 0.88rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}



/* ============================================================
   HERO SECTION - Complete Styling
   ============================================================ */

/* ---- Base Reset & Hero Container ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0 100px 0;
  overflow: hidden;
  background: #0b101c;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ---- Background Effects ---- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.sphere-1 {
  width: 500px;
  height: 500px;
  background: #4ea3ff;
  top: -100px;
  left: -100px;
}
.sphere-2 {
  width: 400px;
  height: 400px;
  background: #ed4119;
  bottom: -100px;
  right: -50px;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(100px) translateZ(-200px);
}

/* ---- Canvas for Dots ---- */
.dots-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

/* ---- Floating Elements ---- */
.floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.04);
  z-index: 0;
  pointer-events: none;
}
.floating-element svg {
  width: 60px;
  height: 60px;
}
.float-1 { top: 15%; left: 8%; animation: float-slow 15s infinite ease-in-out; }
.float-2 { top: 25%; right: 12%; animation: float-slow 20s infinite ease-in-out reverse; }
.float-3 { bottom: 15%; left: 20%; animation: float-slow 18s infinite ease-in-out 2s; }
.float-4 { bottom: 25%; right: 8%; animation: float-slow 16s infinite ease-in-out reverse 1s; }
.float-5 { top: 45%; left: 3%; animation: float-slow 22s infinite ease-in-out 3s; }
.float-6 { top: 60%; right: 3%; animation: float-slow 19s infinite ease-in-out 1s; }

@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(10deg) scale(1.1); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

/* ---- Container & Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 10;
}

/* ---- Hero Text ---- */
.hero-text {
  flex: 1;
  max-width: 650px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 4.8rem);
  margin-bottom: 24px;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 800;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #ffffff 0%, #4ea3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #ed4119 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-white-solid {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 550px;
}

/* ---- Hero Buttons ---- */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  text-align: center;
}

.hero-btn-primary {
  background: #ed4119;
  color: #fff;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(237, 65, 25, 0.35);
  color: #fff;
}

.hero-shadow-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(237, 65, 25, 0.35);
}

.hero-btn-outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}
.hero-btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #4ea3ff;
  transform: translateY(-2px);
  color: #4ea3ff !important;
}

/* ---- Brand Tags ---- */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.brand-pill img {
  height: 18px;
  filter: grayscale(100%) brightness(200%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.brand-pill:hover {
  background: rgba(255,255,255,0.15);
  border-color: #4ea3ff;
  color: #4ea3ff !important;
  transform: translateY(-4px);
}
.brand-pill:hover img {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}

/* ============================================================
   FORM WRAPPER - Header + Fluent Forms
   ============================================================ */

.hero-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
  position: relative;
  z-index: 15;
}

/* ---- Form Header Text ---- */
.form-header-text {
  margin-bottom: 28px;
  text-align: center;
}

.hero-form-title {
  font-size: 1.6rem;
  color: #ffffff !important;
  margin-bottom: 8px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: -0.5px;
}

.hero-form-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   FLUENT FORMS - COMPLETE FIX FOR TEXT VISIBILITY
   ============================================================ */

.fluent-form-wrapper {
  width: 100%;
}

.fluent-form-wrapper .fluentform {
  width: 100%;
}

/* ---- ALL INPUT FIELDS - FIXED TEXT VISIBILITY ---- */
.fluent-form-wrapper .fluentform .ff-el-form-control,
.fluent-form-wrapper .fluentform input[type="text"],
.fluent-form-wrapper .fluentform input[type="email"],
.fluent-form-wrapper .fluentform input[type="tel"],
.fluent-form-wrapper .fluentform input[type="url"],
.fluent-form-wrapper .fluentform input[type="number"],
.fluent-form-wrapper .fluentform select,
.fluent-form-wrapper .fluentform textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  color: #ffffff !important;  /* WHITE TEXT FOR ENTERED DATA */
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: none !important;
  height: auto;
  min-height: 48px;
}

/* ---- FOCUS STATE - KEEP TEXT WHITE ---- */
.fluent-form-wrapper .fluentform .ff-el-form-control:focus,
.fluent-form-wrapper .fluentform input:focus,
.fluent-form-wrapper .fluentform select:focus,
.fluent-form-wrapper .fluentform textarea:focus {
  border-color: #4ea3ff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(78, 163, 255, 0.15) !important;
  color: #ffffff !important;  /* KEEP TEXT WHITE ON FOCUS */
}

/* ---- AUTO-FILL FIX ---- */
.fluent-form-wrapper .fluentform input:-webkit-autofill,
.fluent-form-wrapper .fluentform input:-webkit-autofill:hover,
.fluent-form-wrapper .fluentform input:-webkit-autofill:focus,
.fluent-form-wrapper .fluentform input:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.08) inset !important;
  background: rgba(255, 255, 255, 0.08) !important;
  caret-color: #ffffff !important;
}

/* ---- PLACEHOLDER COLOR ---- */
.fluent-form-wrapper .fluentform input::placeholder,
.fluent-form-wrapper .fluentform textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

/* ---- SELECT DROPDOWN ---- */
.fluent-form-wrapper .fluentform select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  color: #ffffff !important;
  cursor: pointer;
}

.fluent-form-wrapper .fluentform select option {
  background: #0b101c !important;
  color: #ffffff !important;
}

/* ---- HIDE LABELS ---- */
.fluent-form-wrapper .fluentform .ff-el-input--label {
  display: none !important;
}

/* ---- FORM ROWS - STACK VERTICALLY ---- */
.fluent-form-wrapper .fluentform .ff-t-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fluent-form-wrapper .fluentform .ff-t-cell {
  display: block;
  width: 100%;
  padding: 0 !important;
}

/* ---- FORM GROUPS ---- */
.fluent-form-wrapper .fluentform .ff-el-group {
  margin-bottom: 15px;
  padding: 0 !important;
}

.fluent-form-wrapper .fluentform .ff-el-group:last-child {
  margin-bottom: 0;
}

/* ---- SUBMIT BUTTON ---- */
.fluent-form-wrapper .fluentform .ff-btn-submit {
  width: 100% !important;
  padding: 14px 28px !important;
  background: #ed4119 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  min-height: 52px;
  margin-top: 5px;
}

.fluent-form-wrapper .fluentform .ff-btn-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(237, 65, 25, 0.4) !important;
  background: #ed4119 !important;
  color: #ffffff !important;
}

.fluent-form-wrapper .fluentform .ff-btn-submit:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(237, 65, 25, 0.3) !important;
}

/* ---- ERROR MESSAGES ---- */
.fluent-form-wrapper .fluentform .error {
  color: #ff6b6b !important;
  font-size: 0.85rem !important;
  margin-top: 4px !important;
}

.fluent-form-wrapper .fluentform .ff-el-is-error .ff-el-form-control {
  border-color: #ff6b6b !important;
}

/* ---- SUCCESS MESSAGE ---- */
.fluent-form-wrapper .fluentform .ff-message-success {
  background: rgba(78, 163, 255, 0.15) !important;
  border: 1px solid rgba(78, 163, 255, 0.3) !important;
  color: #4ea3ff !important;
  padding: 16px 20px !important;
  border-radius: 8px !important;
  text-align: center;
}

/* ---- RESPONSIVE - FORCE SINGLE COLUMN ---- */
.fluent-form-wrapper .fluentform .ff-t-container.ff-column-2 .ff-t-cell {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .fluent-form-wrapper .fluentform .ff-t-container {
    flex-direction: column !important;
  }
  .fluent-form-wrapper .fluentform .ff-t-cell {
    width: 100% !important;
    padding: 0 !important;
  }
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible {
  opacity: 1;
}

.fade-left {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-form-wrapper {
    width: 100%;
    max-width: 550px;
    margin-top: 30px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-tags {
    justify-content: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-form-wrapper {
    padding: 25px 20px;
  }
  
  .hero-form-title {
    font-size: 1.3rem;
  }
  
  .hero-form-desc {
    font-size: 0.9rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 40px 0 60px 0;
  }
}