/* ══ HERO SECTION ══ */
/* Pre-hide — prevents FOUC before GSAP runs */
.hero-badge,
.hero-title,
.hero-sub,
.hero-btns,
.trust-row,
#heroVisual {
  opacity: 0;
}

.hero {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible !important;
  background: var(--bg-dark);
  padding-top: 0;
}

#heroCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  will-change: transform;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, .14), transparent 70%);
  top: -80px;
  left: -100px;
  animation: orbF 18s ease-in-out infinite;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, .11), transparent 70%);
  bottom: 0;
  right: 200px;
  animation: orbF 14s ease-in-out infinite reverse;
}

@keyframes orbF {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px,-30px); }
}

/* ── Layout ── */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;

 padding: 120px 10px 60px;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  min-width: 0;
  margin-left: 0;
  margin-left: -40px;
}

/* ── Left: text ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #a5b4fc;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  will-change: opacity,transform;
}

.bdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: bpulse 2s infinite;
}

@keyframes bpulse {
  0%,100% { opacity:1; }
  50% { opacity:.4; }
}

.hero-title {
  font-size: clamp(2.2rem,3.8vw,4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #f8faff;
  margin-bottom: 20px;
  will-change: opacity,transform;
}

.hero-title .gtext {
  background: linear-gradient(
    95deg,
    #3b51f6 0%,
    #4A6AFF 20%,
    #4660F8 30%,
    #6A8CFF 42%,
    #5878FF 55%,
    #5060F5 66%,
    #7048EE 76%,
    #8B5CF6 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
  will-change: opacity,transform;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  will-change: opacity,transform;
}

.trust-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px 22px;
  width: fit-content;
  will-change: opacity,transform;
}

.tbadge {
  text-align: center;
  padding: 0 18px;
}

.tnum {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #f8faff;
}

.tlabel {
  font-size: .72rem;
  color: #64748b;
  font-weight: 500;
}

.tdiv {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.1);
}

/* ── Right: globe visual ── */
.hero-visual {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 560px;
  z-index: 2;
  overflow: visible;
  will-change: opacity,transform;
}

/* Navbar always above hero canvas layers */
.navbar {
  z-index: 1000;
}

/* ── ORBIT SVG ── */
#orbit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;

  /* FIXED ALIGNMENT */
  transform: translateX(90px);
}

.odot {
  animation: odotPulse 3s ease-in-out infinite;
}

.odot-d {
  animation: odotPulseDark 4.5s ease-in-out infinite;
}

@keyframes odotPulse {
  0%,100% { opacity:.85; }
  50% { opacity:.25; }
}

@keyframes odotPulseDark {
  0%,100% { opacity:.4; }
  50% { opacity:.08; }
}

#globe-container{
  position:absolute;

  /* move globe right */
  right:calc(2% - 5px);

  top:calc(46% - 64px);

  /* IMPORTANT FIX */
  transform:translate(35px,-50%);

  width:500px;
  height:500px;

  overflow:visible;
  pointer-events:none;
  z-index:1;
}

#globe-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(110,100,255,.28));
}

/* ── Orbit labels ── */
.orbit-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  /* FIXED ALIGNMENT */
  transform: translateX(90px);
}

.olabel {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #080d22;
  border: 1px solid rgba(99,102,241,.40);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #ffffff;
  white-space: nowrap;
  animation: olFloat 5s ease-in-out infinite;
  box-shadow:
    0 4px 22px rgba(0,0,0,.60),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.olabel .ol-emoji {
  font-size: 1.05rem;
  line-height: 1;
}

.ol-1 { top:-62px; left:254px; animation-delay:0s; }
/* RIGHT SIDE LABELS FIXED */
.ol-2{
  top:36px;
  left:540px;
  animation-delay:-.7s;
}

.ol-3{
  top:390px;
  left:540px;
  animation-delay:-1.4s;
}
.ol-4 { top:488px; left:254px; animation-delay:-2.1s; }
.ol-5 { top:390px; left:-6px; animation-delay:-2.8s; }
.ol-6 { top:36px; left:-6px; animation-delay:-3.5s; }

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

/* ✅ FINAL MOBILE HERO AUTO-FIT FIX */
@media (max-width: 768px) {

  .hero {
    height: auto !important;
    min-height: calc(100dvh - var(--nav-h)) !important;
    overflow: visible !important;
    padding-top: 0 !important;
  }

  .hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 90px 10px 44px !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin-left: 0 !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    line-height: 1.08 !important;
  }

  .hero-sub {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .hero-btns {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    height: min(340px, 72vw) !important;
    overflow: visible !important;
  }

  #globe-container {
    width: min(300px, 82vw) !important;
    height: min(300px, 82vw) !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}

@media (max-width: 640px) {

  .hero-inner {
    padding-top: 82px !important;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-title {
    font-size: clamp(1.85rem, 10vw, 2.55rem) !important;
  }

  .hero-badge {
    font-size: 0.7rem !important;
    padding: 6px 10px !important;
  }
}

@media (max-width: 360px) {

  .hero-inner {
    padding-left: 8px !important;
    padding-right: 8px !important;
    padding-top: 76px !important;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }

  .hero-sub {
    font-size: 0.88rem !important;
  }
}

/* ✅ IPAD / TABLET HERO EXACT ALIGNMENT */
@media (min-width: 769px) and (max-width: 1180px) {

  .hero {
    height: 100vh !important;
    min-height: 640px !important;
    padding: 70px 24px 42px !important;
    overflow: hidden !important;
  }

  .hero-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 70px 0 35px !important;
    gap: 0 !important;
  }

  .hero-content {
    flex: 0 0 43% !important;
    max-width: 43% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .hero-badge {
    font-size: 0.72rem !important;
    padding: 6px 13px !important;
    margin-bottom: 18px !important;
  }

  .hero-title {
    font-size: clamp(2rem, 4.1vw, 3rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }

  .hero-sub {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    max-width: 390px !important;
    margin-bottom: 24px !important;
  }

  .hero-btns {
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-bottom: 28px !important;
  }

  .trust-row {
    margin-inline: 0 !important;
    padding: 10px 14px !important;
  }

  .tbadge {
    padding: 0 10px !important;
  }

  .tnum {
    font-size: 1.05rem !important;
  }

  .tlabel {
    font-size: 0.62rem !important;
  }

  .hero-visual {
    position: relative !important;
    flex: 0 0 57% !important;
    max-width: 57% !important;
    height: 430px !important;
    overflow: visible !important;
    transform: translateX(20px) !important;
  }

  #orbit-svg {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 500px !important;
    height: 390px !important;
    transform: translate(-50%, -50%) scale(.9) !important;
    transform-origin: center center !important;
  }

  .orbit-labels {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 500px !important;
    height: 390px !important;
    transform: translate(-50%, -50%) !important;
  }

  #globe-container {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 270px !important;
    height: 270px !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
  }

  .ol-1 { top: -18px !important; left: 225px !important; }
  .ol-2 { top: 54px !important; left: 390px !important; }
  .ol-3 { top: 260px !important; left: 390px !important; }
  .ol-4 { top: 345px !important; left: 225px !important; }
  .ol-5 { top: 260px !important; left: 25px !important; }
  .ol-6 { top: 54px !important; left: 25px !important; }
}
/* ✅ MOBILE LANDSCAPE HERO FIX */
@media (orientation: landscape) and (max-height: 500px) and (max-width: 950px) {

  .hero {
    height: auto !important;
    min-height: auto !important;
    padding: 72px 14px 34px !important;
    overflow: hidden !important;
  }

  .hero-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 28px 10px 28px !important;
    gap: 14px !important;
  }

  .hero-content {
    flex: none !important;
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-badge {
    margin-bottom: 10px !important;
    font-size: 0.68rem !important;
    padding: 5px 10px !important;
  }

  .hero-title {
    font-size: clamp(1.7rem, 5vw, 2.35rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 10px !important;
  }

  .hero-sub {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    max-width: 560px !important;
    margin: 0 auto 14px !important;
  }

  .hero-btns {
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  .trust-row {
    margin: 0 auto !important;
    padding: 9px 12px !important;
    transform: scale(0.9) !important;
    transform-origin: center !important;
  }

  .hero-visual,
  #heroVisual,
  #orbit-svg,
  .orbit-labels,
  #globe-container {
    display: none !important;
  }
}

/* ✅ MOBILE TRUST/STATS BLOCK FIX */
@media (max-width: 640px) {

  .trust-row {
    width: calc(100% - 28px) !important;
    max-width: 360px !important;
    margin: 26px auto 0 !important;
    padding: 16px 10px !important;

    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    align-items: stretch !important;

    border-radius: 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .trust-row .tdiv {
    display: none !important;
  }

  .trust-row .tbadge {
    padding: 14px 8px !important;
    text-align: center !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .trust-row .tnum {
    font-size: 1.55rem !important;
    line-height: 1.1 !important;
    margin-bottom: 6px !important;
  }

  .trust-row .tlabel {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
  }

  .trust-row .tbadge:nth-of-type(1),
  .trust-row .tbadge:nth-of-type(2) {
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  }

  .trust-row .tbadge:nth-of-type(1),
  .trust-row .tbadge:nth-of-type(3) {
    border-right: 1px solid rgba(255,255,255,0.12) !important;
  }
}


/* ✅ HOMEPAGE HERO - IPAD PORTRAIT + LANDSCAPE FINAL FIX */
/* Paste at bottom of public/css/sections/hero.css */


/* ---------- IPAD PORTRAIT FIX ---------- */
@media (min-width: 641px) and (max-width: 900px) and (orientation: portrait) {

  .hero {
    height: auto !important;
    min-height: calc(100dvh - var(--nav-h)) !important;
    padding: 0 22px 60px !important;
    overflow: hidden !important;
  }

  .hero-inner {
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: 100px 0 50px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 34px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 680px !important;
    flex: none !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-badge {
    margin-bottom: 18px !important;
  }

  .hero-title {
    font-size: clamp(3rem, 7vw, 4.4rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 18px !important;
  }

  .hero-sub {
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 1.08rem !important;
    line-height: 1.65 !important;
  }

  .hero-sub br {
    display: none !important;
  }

  .hero-btns {
    justify-content: center !important;
    margin-bottom: 34px !important;
  }

  .trust-row {
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    padding: 18px 18px !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  .tbadge {
    flex: 1 1 25% !important;
    padding: 0 10px !important;
  }

  .tnum {
    font-size: 1.35rem !important;
  }

  .tlabel {
    font-size: 0.72rem !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 680px !important;
    flex: none !important;
    height: 460px !important;
    margin: 0 auto !important;
    transform: none !important;
    overflow: visible !important;
  }

  #orbit-svg {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 620px !important;
    height: 460px !important;
    transform: translate(-50%, -50%) scale(0.92) !important;
    transform-origin: center !important;
  }

  .orbit-labels {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 620px !important;
    height: 460px !important;
    transform: translate(-50%, -50%) scale(0.92) !important;
    transform-origin: center !important;
  }

  #globe-container {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    width: 330px !important;
    height: 330px !important;
    transform: translate(-50%, -50%) !important;
  }

  .olabel {
    font-size: 0.76rem !important;
    padding: 7px 12px !important;
  }

  .ol-1 { top: -20px !important; left: 260px !important; }
  .ol-2 { top: 70px !important; left: 440px !important; }
  .ol-3 { top: 320px !important; left: 430px !important; }
  .ol-4 { top: 420px !important; left: 260px !important; }
  .ol-5 { top: 320px !important; left: 40px !important; }
  .ol-6 { top: 70px !important; left: 40px !important; }
}


/* ---------- IPAD LANDSCAPE FIX ---------- */
@media (min-width: 901px) and (max-width: 1180px) and (orientation: landscape) {

  .hero {
    height: auto !important;
    min-height: calc(100dvh - var(--nav-h)) !important;
    padding: 0 28px 42px !important;
    overflow: hidden !important;
  }

  .hero-inner {
    width: 100% !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 96px 0 40px !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 20px !important;
  }

  .hero-content {
    flex: 0 0 46% !important;
    max-width: 46% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .hero-title {
    font-size: clamp(2.4rem, 4.1vw, 3.45rem) !important;
    line-height: 1.06 !important;
    margin-bottom: 16px !important;
  }

  .hero-sub {
    max-width: 460px !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
    margin-bottom: 26px !important;
  }

  .hero-sub br {
    display: none !important;
  }

  .hero-btns {
    justify-content: flex-start !important;
    margin-bottom: 30px !important;
  }

  .trust-row {
    max-width: 100% !important;
    width: fit-content !important;
    padding: 13px 16px !important;
    margin: 0 !important;
  }

  .tbadge {
    padding: 0 12px !important;
  }

  .tnum {
    font-size: 1.18rem !important;
  }

  .tlabel {
    font-size: 0.66rem !important;
  }

  .hero-visual {
    flex: 0 0 52% !important;
    max-width: 52% !important;
    height: 460px !important;
    transform: none !important;
    overflow: visible !important;
  }

  #orbit-svg {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 560px !important;
    height: 420px !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    transform-origin: center !important;
  }

  .orbit-labels {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 560px !important;
    height: 420px !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    transform-origin: center !important;
  }

  #globe-container {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    width: 300px !important;
    height: 300px !important;
    transform: translate(-50%, -50%) !important;
  }

  .olabel {
    font-size: 0.72rem !important;
    padding: 7px 11px !important;
  }

  .ol-1 { top: -12px !important; left: 245px !important; }
  .ol-2 { top: 62px !important; left: 405px !important; }
  .ol-3 { top: 290px !important; left: 405px !important; }
  .ol-4 { top: 370px !important; left: 245px !important; }
  .ol-5 { top: 290px !important; left: 35px !important; }
  .ol-6 { top: 62px !important; left: 35px !important; }
}


/* ---------- SMALL TABLET / LARGE MOBILE SAFETY FIX ---------- */
@media (min-width: 641px) and (max-width: 768px) {

  .hero-visual {
    display: block !important;
    height: 390px !important;
  }

  #orbit-svg,
  .orbit-labels {
    width: 520px !important;
    height: 390px !important;
    transform: translate(-50%, -50%) scale(0.82) !important;
  }

  #globe-container {
    width: 280px !important;
    height: 280px !important;
  }
}



/* ✅ IPAD FIX: REMOVE HOMEPAGE HERO RINGS + LABELS ONLY */
/* Keeps globe visible on iPad portrait + landscape */

@media (min-width: 641px) and (max-width: 1180px) {

  .hero .ring,
  .hero .r1,
  .hero .r2,
  .hero .r3,
  .hero .fnode,
  .hero .fnode-card,
  .hero .fnode-float,
  .hero #connectCanvas,
  .hero #heroCsrGlow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .hero-visual {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  #globeCanvas {
    display: block !important;
    margin: 0 auto !important;
  }
}


/* ✅ IPAD PORTRAIT: GLOBE ONLY CENTER */
@media (min-width: 641px) and (max-width: 900px) and (orientation: portrait) {

  .hero-visual {
    width: 100% !important;
    max-width: 680px !important;
    min-height: 360px !important;
    height: 360px !important;
    margin: 0 auto !important;
  }

  #globeCanvas {
    width: 320px !important;
    height: 320px !important;
  }
}


/* ✅ IPAD LANDSCAPE: GLOBE ONLY RIGHT SIDE */
@media (min-width: 901px) and (max-width: 1180px) and (orientation: landscape) {

  .hero-visual {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    min-height: 360px !important;
    height: 360px !important;
    margin: 0 !important;
  }

  #globeCanvas {
    width: 300px !important;
    height: 300px !important;
  }
}

/* =====================================================
   FINAL IPAD FIX — REMOVE HOMEPAGE RINGS + LABELS
   Works for iPad portrait, iPad landscape, iPad Pro
   ===================================================== */

@media (min-width: 641px) and (max-width: 1366px) {

  /* Hide every decorative thing inside homepage hero visual */
  .hero .hero-visual .ring,
  .hero .hero-visual .r1,
  .hero .hero-visual .r2,
  .hero .hero-visual .r3,
  .hero .hero-visual .fnode,
  .hero .hero-visual .fnode-card,
  .hero .hero-visual .fnode-float,
  .hero .hero-visual #connectCanvas,
  .hero .hero-visual #heroCsrGlow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Keep only globe visible */
  .hero .hero-visual {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .hero .hero-visual #globeCanvas {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 auto !important;
  }
}


/* ✅ iPad Portrait */
@media (min-width: 641px) and (max-width: 1024px) and (orientation: portrait) {

  .hero .hero-visual {
    width: 100% !important;
    max-width: 680px !important;
    height: 360px !important;
    min-height: 360px !important;
    margin: 0 auto !important;
  }

  .hero .hero-visual #globeCanvas {
    width: 320px !important;
    height: 320px !important;
  }
}


/* ✅ iPad Landscape + iPad Pro Landscape */
@media (min-width: 901px) and (max-width: 1366px) and (orientation: landscape) {

  .hero .hero-visual {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    height: 360px !important;
    min-height: 360px !important;
    margin: 0 !important;
  }

  .hero .hero-visual #globeCanvas {
    width: 300px !important;
    height: 300px !important;
  }
}

