/* ═══════════════════════════════════════════
   RESPONSIVE.CSS — CLEAN MOBILE-FIRST
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTION SPACING ── */
.who-shivamm-section, .swl-section, .strategy-section, .orm-section,
.xab-featured-section, .vf-section, .wtf-section, .lf-section,
.faq-section, .wf-section, .gcp-section, .xab-learn-section { padding: 48px 0; }
.wtf-section { padding: 0 0 48px; }
.who-shivamm-banner { margin: 0 !important; padding: 0 !important; }
.main-section { padding-bottom: 0 !important; }

/* ── WHO IS SHIVAMM ── */
.ws-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ws-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #00f5ff, #8b5cf6);
}

/* ── SWL 5 CARDS ── */
.swl-cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 20px; }

/* ── ORM ── */
.orm-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.orm-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #00f5ff);
}
.orm-text-col { width: 100% !important; text-align: center !important; display: flex; flex-direction: column; align-items: center; }
.orm-cards-grid { width: 100% !important; text-align: left; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 24px; }

/* ── LEAD FUNNEL ── */
.lf-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.lf-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #00f5ff, #8b5cf6);
}

/* ── STATS BAR ── */
.stats-bar {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: space-between;
}

/* ── HERO NAME CARD ── */
.hero-name-card {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.10));
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 14px;
  padding: 14px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-name-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #00f5ff, #8b5cf6);
}
.hero-name-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff, #00f5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL ANCHOR ── */
#get-access { scroll-margin-top: 20px; }

/* ══════════════════════════════════
   TABLET — max 1024px
══════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* HERO */
  .hero-container { flex-direction: column; gap: 32px; text-align: center; padding: 0 28px; }
  .hero-text { text-align: center; max-width: 100%; order: 1; }
  .hero-image { order: 2; width: 100%; display: flex; justify-content: center; }
  .hero-person-img { max-width: 300px; margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-subtitle { margin: 0 auto 24px; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .stat-divider { display: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-right: 1px solid rgba(59,130,246,0.2); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(59,130,246,0.2); }
  .stat-item { padding: 12px 8px; }

  /* WHO IS SHIVAMM */
  .ws-inner { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
  .ws-image-col { order: 2; display: flex; flex-direction: column; align-items: center; }
  .ws-content-col { order: 1; }
  .ws-img-wrap { max-width: 260px; margin: 0 auto; }
  .ws-heading { font-size: clamp(18px, 2.5vw, 26px); margin-top: 0; padding-top: 0; }

  .lf-inner { grid-template-columns: 1fr 360px; gap: 28px; padding: 28px; }
  .swl-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .orm-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .wtf-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gcp-grid { grid-template-columns: repeat(3, 1fr); }
  .strategy-cards-row { gap: 8px; }
}

/* ══════════════════════════════════
   TABLET SMALL — max 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .who-shivamm-section, .swl-section, .strategy-section, .orm-section,
  .xab-featured-section, .vf-section, .wtf-section, .lf-section,
  .faq-section, .wf-section, .gcp-section, .xab-learn-section { padding: 36px 0; }
  .wtf-section { padding: 0 0 36px; }

  /* HERO */
  .hero-container { flex-direction: column; gap: 24px; text-align: center; }
  .hero-text { text-align: center; max-width: 100%; order: 1; }
  .hero-image { order: 2; width: 100%; }
  .hero-person-img { max-width: 260px; margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-subtitle { margin: 0 auto 24px; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .stat-divider { display: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-right: 1px solid rgba(59,130,246,0.2); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(59,130,246,0.2); }
  .stat-item { padding: 12px 8px; }
  .stat-value { font-size: 20px; }

  /* WHO IS SHIVAMM */
  .ws-inner { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .ws-image-col { order: 2; }
  .ws-content-col { order: 1; }
  .ws-img-wrap { max-width: 220px; margin: 0 auto; }

  /* SWL */
  .swl-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* STRATEGY */
  .strategy-cards-row { flex-direction: column; gap: 10px; }
  .strategy-arrow { transform: rotate(90deg); padding: 4px 0; }

  /* ORM */
  .orm-inner { padding: 24px 20px; }
  .orm-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* XAB */
  .xab-what-grid { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .xab-what-cards { grid-template-columns: 1fr 1fr; }
  .xab-how-steps { flex-direction: column; gap: 20px; }
  .xab-how-arrow { transform: rotate(90deg); }
  .xab-why-grid { grid-template-columns: 1fr; gap: 12px; }

  /* LEARN VIDEOS */
  .xab-learn-video-row { flex-wrap: wrap; gap: 12px; }
  .xab-learn-video-item { flex: 0 0 calc(50% - 6px); min-width: unset; }

  /* VF */
  .vf-grid { grid-template-columns: 1fr; gap: 14px; }

  /* WTF */
  .wtf-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* LEAD FUNNEL */
  .lf-inner { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }

  /* GCP */
  .gcp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* WF */
  .wf-item { grid-template-columns: 44px 48px 1fr; gap: 0 12px; padding: 14px 16px; }

  /* PREDICTION */
  .prediction-timeline { flex-direction: column; gap: 12px; }
  .pred-arrow { transform: rotate(90deg); text-align: center; }

  /* FCTA */
  .fcta-wrap { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; text-align: center; width: calc(100% - 28px); }
  .fcta-checks { align-items: flex-start; text-align: left; }
  .fcta-btns { justify-content: center; flex-wrap: wrap; }
  .fcta-right { display: flex; justify-content: center; }

  /* ZOOM */
  .zoom-main-card { flex-direction: column; gap: 16px; padding: 20px; }
  .zoom-join-btn { width: 100%; justify-content: center; }
  .zoom-community { flex-direction: column; gap: 8px; }
  .zoom-comm-btn { justify-content: center; }
}

/* ══════════════════════════════════
   MOBILE — max 480px
══════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .who-shivamm-section, .swl-section, .strategy-section, .orm-section,
  .xab-featured-section, .vf-section, .wtf-section, .lf-section,
  .faq-section, .wf-section, .gcp-section, .xab-learn-section { padding: 24px 0; }
  .wtf-section { padding: 0 0 24px; }

  /* HERO */
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 13px; }
  .hero-person-img { max-width: 220px; }
  .hero-name-card { padding: 10px 16px; margin-top: 10px; }
  .hero-name-title { font-size: 18px; }
  .glow-btn { min-width: unset; width: 100%; padding: 14px 16px; }
  .glow-btn span { font-size: 14px; }
  .hero-btn { width: 100%; justify-content: center; padding: 13px 14px; font-size: 13px; white-space: normal; text-align: center; box-sizing: border-box; }
  .hero-cta-group { width: 100%; }

  /* BANNER */
  .banner-card { padding: 20px 14px; margin-bottom: 18px; border-radius: 14px; }
  .banner-title { font-size: clamp(18px, 5vw, 24px); letter-spacing: 0.5px; }

  /* WHO IS SHIVAMM */
  .ws-inner { padding: 18px 14px; border-radius: 18px; }
  .ws-img-wrap { max-width: 180px; }
  .ws-heading { font-size: 17px; }
  .ws-bio { font-size: 13px; }
  .ws-bullet { padding: 7px 10px; }
  .ws-bullet strong { font-size: 12px; }

  /* SWL */
  .swl-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .swl-cards-grid .swl-feat-card:last-child { grid-column: 1 / -1; max-width: 240px; margin: 0 auto; }
  .swl-feat-card { padding: 14px 10px; border-radius: 12px; }
  .swl-feat-num { font-size: 22px; margin-bottom: 6px; }
  .swl-feat-icon-box { width: 36px; height: 36px; margin-bottom: 8px; }
  .swl-feat-card h4 { font-size: 11px; line-height: 1.3; }
  .swl-intro-card { padding: 14px; }
  .swl-goal-banner { flex-direction: column; text-align: center; padding: 14px; }

  /* STRATEGY */
  .strategy-card { padding: 18px 14px; }
  .sc-number { font-size: 36px; }
  .sc-icon { width: 50px; height: 50px; }
  .sc-title { font-size: 15px; }
  .sc-desc { font-size: 12px; }

  /* ORM */
  .orm-inner { padding: 18px 14px; border-radius: 18px; }
  .orm-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .orm-cards-grid .orm-card:last-child { grid-column: 1 / -1; max-width: 240px; margin: 0 auto; }
  .orm-card { padding: 16px 12px; }
  .orm-card-icon { width: 44px; height: 44px; }
  .orm-card-body h4 { font-size: 12px; }

  /* XAB */
  .xab-what-grid { padding: 18px 14px; border-radius: 18px; }
  .xab-what-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .xab-how-steps { padding: 16px 12px; border-radius: 16px; }
  .xab-how-step h4 { font-size: 14px; }
  .xab-how-step p { font-size: 12px; }
  .xab-why-grid { grid-template-columns: 1fr; gap: 10px; }
  .xab-why-card { padding: 18px 14px; }
  .xab-why-card h4 { font-size: 15px; }
  .xab-why-card p { font-size: 12.5px; }
  .xab-learn-wrap { padding: 18px 14px; border-radius: 18px; }

  /* LEARN VIDEOS */
  .xab-learn-video-row { flex-direction: column; gap: 12px; }
  .xab-learn-video-item { flex: unset; width: 100%; }
  .xab-learn-info { padding: 10px 12px 14px; }
  .xab-learn-desc { font-size: 12px; }

  /* VF */
  .vf-grid { grid-template-columns: 1fr; gap: 12px; }
  .vf-card-info h4 { font-size: 13px; }
  .vf-card-info p { font-size: 12px; }
  .vf-main-info { padding: 14px 16px; }
  .vf-main-info h3 { font-size: 15px; }

  /* WTF */
  .wtf-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .wtf-card { padding: 16px 10px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .wtf-icon { font-size: 30px; margin-bottom: 8px; width: 50px; height: 50px; background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .wtf-card h4 { font-size: 12px; margin-bottom: 4px; }
  .wtf-card p { font-size: 11px; line-height: 1.5; }
  .wtf-grid .wtf-card:last-child { grid-column: 1 / -1; max-width: 240px; margin: 0 auto; }

  /* LEAD FUNNEL */
  .lf-inner { padding: 18px 14px; border-radius: 16px; gap: 20px; }
  .lf-heading { font-size: clamp(18px, 5.5vw, 24px); line-height: 1.3; }
  .lf-tag { font-size: 9px; padding: 3px 10px; }
  .lf-desc { font-size: 13px; }
  .lf-benefit { font-size: 13px; }
  .lf-form-card { padding: 18px 14px; border-radius: 14px; }
  .lf-form-icon { font-size: 28px; margin-bottom: 8px; }
  .lf-form-header h3 { font-size: 16px; }
  .lf-form-header p { font-size: 12px; }
  .lf-form { gap: 10px; }
  .lf-input-wrap { padding: 0 12px; border-radius: 8px; }
  .lf-input-wrap input { font-size: 13px; padding: 11px 0; }
  .lf-input-wrap svg { width: 15px; height: 15px; }
  .lf-btn { padding: 13px 16px; font-size: 13px; border-radius: 10px; }
  .lf-privacy { font-size: 11px; }

  /* FAQ */
  .faq-q { padding: 14px 14px; font-size: 13px; }
  .faq-item.open .faq-a { padding: 0 14px 14px; }

  /* GCP */
  .gcp-grid { grid-template-columns: 1fr; gap: 8px; }
  .gcp-card { padding: 12px 12px; }
  .gcp-flag { font-size: 28px; }
  .gcp-info h4 { font-size: 13px; }
  .gcp-info span { font-size: 11px; }

  /* WF */
  .wf-item { grid-template-columns: 36px 42px 1fr; gap: 0 8px; padding: 10px 10px; }
  .wf-num { font-size: 22px; }
  .wf-icon { width: 40px; height: 40px; }
  .wf-content h4 { font-size: 13px; }
  .wf-content p { font-size: 12px; }

  /* PREDICTION */
  .xrp-prediction { padding: 18px 14px; border-radius: 18px; }
  .pred-card { padding: 14px 12px; }
  .pred-target { font-size: 22px; }
  .prediction-verdict { flex-direction: column; gap: 10px; padding: 14px; }

  /* FCTA */
  .fcta-wrap { padding: 20px 14px; border-radius: 18px; width: calc(100% - 20px); }
  .fcta-heading { font-size: clamp(20px, 6vw, 28px); }
  .fcta-btn-primary, .fcta-btn-wa { width: 100%; justify-content: center; }
  .fcta-btns { flex-direction: column; gap: 8px; }

  /* ZOOM */
  .zoom-section { padding: 24px 14px; width: calc(100% - 20px); }
  .zoom-time-val { font-size: 24px; }
  .zoom-benefit { font-size: 12px; padding: 6px 12px; }
  .zoom-timings { padding: 18px 14px; }
  .zoom-local-time { font-size: 28px; }

  /* FOOTER */
  .footer { padding: 24px 14px; gap: 12px; }
  .footer-row { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer-icons { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .footer-links a { font-size: 11px; }
  .footer-copy { font-size: 11px; line-height: 1.6; padding: 0 10px; }
}

/* ══════════════════════════════════
   SMALL MOBILE — max 360px
══════════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 10px; }
  .hero h1 { font-size: 22px; }
  .ws-inner { padding: 14px 10px; }
  .lf-inner { padding: 14px 10px; }
  .swl-cards-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .wtf-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gcp-grid { grid-template-columns: 1fr; }
  .fcta-wrap { padding: 16px 10px; }
  .zoom-section { padding: 18px 10px; }
}

/* ── VF GRID 5TH CARD CENTER ── */
@media (min-width: 481px) {
  .vf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .vf-grid .vf-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ── WHY FOLLOW 2 COLUMN LAYOUT ── */
.wf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .wf-two-col {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ── TESTIMONIALS 4 CARDS ALL SCREENS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  align-items: stretch;
}

.testi-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testi-text {
  flex: 1;
}

@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 480px) {
  .testi-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .testi-card { padding: 18px 14px; }
  .testi-text { font-size: 13px; }
}
