/* ── GLOBAL FONT OVERRIDE ── */
*, *::before, *::after {
  font-family: 'Poppins', 'Montserrat', sans-serif !important;
}

/*--------SCROLLL BAR */

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, rgba(59,130,246,0.9), rgba(167,139,250,0.9), rgba(244,114,182,0.9));
  z-index: 999999;
  box-shadow: 0 0 8px rgba(96,165,250,0.6);
}

/*------------------------------------------------------------Disable Side Scroll :)-----------*/
html, body {
  overflow-x: hidden;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(96,165,250,0.25);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(96,165,250,0.5);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(96,165,250,0.25) transparent;
}

/* ---- Marketing Success Slide ---- */
.mkt-success-slide {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.mkt-success-left {
  flex: 1.1;
  min-width: 0;
}

.mkt-success-para {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.85;
}

.mkt-success-para strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.mkt-success-right {
  flex: 1;
  min-width: 0;
}

.mkt-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.mkt-stat-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.2s;
}

.mkt-stat-block:hover {
  border-color: rgba(244,114,182,0.25);
}

.mkt-stat-n {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #f472b6;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.mkt-stat-l {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
}

.mkt-stat-src {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  font-family: 'Montserrat', sans-serif;
  margin-top: 1px;
}

.mkt-source-note {
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .mkt-success-slide {
    flex-direction: column;
    padding: 0 20px;
    gap: 28px;
  }
  .mkt-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ===================== OFFER CAROUSEL ===================== */

.offer-carousel-section {
  background: linear-gradient(145deg, #07090f 0%, #0a1020 55%, #0c1530 100%);
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.offer-track {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.offer-slide {
  display: none;
  width: 100%;
  animation: offerFadeIn 0.45s ease;
}

.offer-track {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-slide {
  display: none;
  width: 100%;
  animation: offerFadeIn 0.45s ease;
}

.offer-slide.active {
  display: block;
}

@keyframes offerFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- SLIDE 0 — Hero Overview ---- */
.s0-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.s0-headline {
  text-align: center;
}

.s0-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.s0-title-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s0-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.s0-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.s0-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.s0-stat-n {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.s0-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.s0-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Three pillars */
.s0-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.s0-pillar {
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.s0-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pink-pillar:hover  { border-color: rgba(244,114,182,0.3); }
.blue-pillar:hover  { border-color: rgba(96,165,250,0.3); }
.green-pillar:hover { border-color: rgba(74,222,128,0.3); }

/* Subtle background glow on each pillar */
.pink-pillar::before  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(244,114,182,0.08) 0%, transparent 70%); pointer-events:none; }
.blue-pillar::before  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(96,165,250,0.08) 0%, transparent 70%); pointer-events:none; }
.green-pillar::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(74,222,128,0.08) 0%, transparent 70%); pointer-events:none; }

.s0-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pink-pillar  .s0-pillar-icon { background: rgba(244,114,182,0.1); border: 1px solid rgba(244,114,182,0.2); }
.blue-pillar  .s0-pillar-icon { background: rgba(96,165,250,0.1);  border: 1px solid rgba(96,165,250,0.2); }
.green-pillar .s0-pillar-icon { background: rgba(74,222,128,0.1);  border: 1px solid rgba(74,222,128,0.2); }

.s0-pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.s0-pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.s0-pillar-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.s0-pillar-link {
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}
.s0-pillar-link:hover { opacity: 0.7; }
.pink-link  { color: #f472b6; }
.blue-link  { color: #60a5fa; }
.green-link { color: #4ade80; }

@media (max-width: 768px) {
  .s0-wrap { padding: 0 20px; gap: 28px; }
  .s0-pillars { grid-template-columns: 1fr; }
  .s0-stat { padding: 0 16px; }
  .s0-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ---- SLIDE 0 — Hero Overview ---- */
.s0-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.s0-headline {
  text-align: center;
}

.s0-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.s0-title-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s0-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.s0-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.s0-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.s0-stat-n {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.s0-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.s0-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Three pillars */
.s0-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.s0-pillar {
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.s0-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pink-pillar:hover  { border-color: rgba(244,114,182,0.3); }
.blue-pillar:hover  { border-color: rgba(96,165,250,0.3); }
.green-pillar:hover { border-color: rgba(74,222,128,0.3); }

/* Subtle background glow on each pillar */
.pink-pillar::before  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(244,114,182,0.08) 0%, transparent 70%); pointer-events:none; }
.blue-pillar::before  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(96,165,250,0.08) 0%, transparent 70%); pointer-events:none; }
.green-pillar::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(74,222,128,0.08) 0%, transparent 70%); pointer-events:none; }

.s0-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pink-pillar  .s0-pillar-icon { background: rgba(244,114,182,0.1); border: 1px solid rgba(244,114,182,0.2); }
.blue-pillar  .s0-pillar-icon { background: rgba(96,165,250,0.1);  border: 1px solid rgba(96,165,250,0.2); }
.green-pillar .s0-pillar-icon { background: rgba(74,222,128,0.1);  border: 1px solid rgba(74,222,128,0.2); }

.s0-pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.s0-pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.s0-pillar-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.s0-pillar-link {
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}
.s0-pillar-link:hover { opacity: 0.7; }
.pink-link  { color: #f472b6; }
.blue-link  { color: #60a5fa; }
.green-link { color: #4ade80; }

@media (max-width: 768px) {
  .s0-wrap { padding: 0 20px; gap: 28px; }
  .s0-pillars { grid-template-columns: 1fr; }
  .s0-stat { padding: 0 16px; }
  .s0-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ---- SLIDE 0 — Hero Overview ---- */
.s0-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.s0-headline {
  text-align: center;
}

.s0-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.s0-title-accent {
  background: linear-gradient(135deg, #3072c2 0%, #7389e4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s0-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.s0-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.s0-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.s0-stat-n {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.s0-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.s0-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Three pillars */
.s0-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.s0-pillar {
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.s0-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pink-pillar:hover  { border-color: rgba(244,114,182,0.3); }
.blue-pillar:hover  { border-color: rgba(96,165,250,0.3); }
.green-pillar:hover { border-color: rgba(74,222,128,0.3); }

/* Subtle background glow on each pillar */
.pink-pillar::before  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(244,114,182,0.08) 0%, transparent 70%); pointer-events:none; }
.blue-pillar::before  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(96,165,250,0.08) 0%, transparent 70%); pointer-events:none; }
.green-pillar::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at bottom right, rgba(74,222,128,0.08) 0%, transparent 70%); pointer-events:none; }

.s0-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pink-pillar  .s0-pillar-icon { background: rgba(244,114,182,0.1); border: 1px solid rgba(244,114,182,0.2); }
.blue-pillar  .s0-pillar-icon { background: rgba(96,165,250,0.1);  border: 1px solid rgba(96,165,250,0.2); }
.green-pillar .s0-pillar-icon { background: rgba(74,222,128,0.1);  border: 1px solid rgba(74,222,128,0.2); }

.s0-pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.s0-pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.s0-pillar-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.s0-pillar-link {
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}
.s0-pillar-link:hover { opacity: 0.7; }
.pink-link  { color: #f472b6; }
.blue-link  { color: #60a5fa; }
.green-link { color: #4ade80; }

@media (max-width: 768px) {
  .s0-wrap { padding: 0 20px; gap: 28px; }
  .s0-pillars { grid-template-columns: 1fr; }
  .s0-stat { padding: 0 16px; }
  .s0-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ---- Deep-dive slide layout ---- */
.offer-deep {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.offer-deep-left {
  flex: 1;
  min-width: 0;
}

.offer-deep-right {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

/* ---- Hover visual card ---- */
.offer-visual {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: rgba(255,255,255,0.04);
}

.offer-visual:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.pink-visual:hover  { border-color: rgba(219,39,119,0.35); }
.blue-visual:hover  { border-color: rgba(59,130,246,0.35); }
.green-visual:hover { border-color: rgba(34,197,94,0.35); }

.offer-visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ov-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ov-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}

.ov-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
}

.ov-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.ov-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  bottom: -80px;
  right: -60px;
  pointer-events: none;
  transition: opacity 0.35s;
}

.offer-visual:hover .ov-glow { opacity: 0.3; }

.pink-glow  { background: #db2777; }
.blue-glow  { background: #3b82f6; }
.green-glow { background: #22c55e; }

/* ---- UI Mockups ---- */
.omock {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12,16,28,0.9);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.omock:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 36px 80px rgba(0,0,0,0.65);
}

.omock-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.omock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.omock-dot.r { background: #ff5f57; }
.omock-dot.y { background: #febc2e; }
.omock-dot.g { background: #28c840; }

.omock-title {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  margin-left: 8px;
  letter-spacing: 0.3px;
}

.omock-body {
  padding: 20px;
}

/* -- Marketing mockup -- */
.omock-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.omock-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
}

.omock-stat-n {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.omock-stat-l {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  margin-top: 2px;
}

.omock-stat-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  padding: 2px 7px;
  border-radius: 20px;
}
.omock-stat-badge.up { background: rgba(34,197,94,0.15); color: #4ade80; }

.pink-txt { color: #f472b6; }
.blue-txt  { color: #60a5fa; }
.green-txt { color: #4ade80; }

.omock-chart-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.omock-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-bottom: 4px;
}

.omock-bar {
  flex: 1;
  background: rgba(219,39,119,0.2);
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
}
.omock-bar:hover,
.omock-bar.active {
  background: rgba(219,39,119,0.7);
}

.omock-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 14px;
}

.omock-audience-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.omock-aud-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  width: 90px;
  flex-shrink: 0;
}

.omock-aud-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}

.omock-aud-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.6s ease;
}
.pink-fill  { background: linear-gradient(90deg, #db2777, #f472b6); }
.blue-fill  { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.green-fill { background: linear-gradient(90deg, #16a34a, #4ade80); }

.omock-aud-pct {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  width: 28px;
  text-align: right;
}

/* -- Studio builder mockup -- */
.studio-body {
  display: flex;
  gap: 0;
  padding: 0;
}

.studio-sidebar {
  width: 90px;
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

.studio-tool {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  padding: 7px 8px;
  border-radius: 6px;
  cursor: default;
  transition: background 0.2s;
}
.studio-tool:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }
.active-tool { background: rgba(59,130,246,0.15); color: #60a5fa !important; }

.studio-canvas {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.studio-hero-block {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  height: 80px;
}

.studio-hero-img {
  width: 100px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  flex-shrink: 0;
}

.studio-hero-text {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.studio-line {
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}
.studio-line.bright { background: rgba(255,255,255,0.25); }
.studio-line.w80 { width: 80%; }
.studio-line.w90 { width: 90%; }
.studio-line.w75 { width: 75%; }
.studio-line.w55 { width: 55%; }
.studio-line.w40 { width: 40%; }

.studio-btn-mock {
  font-size: 9px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  width: fit-content;
  margin-top: 2px;
}

.studio-section-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

.studio-cards-row {
  display: flex;
  gap: 8px;
}

.studio-mini-card {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}
.blue-border { border: 1px solid rgba(59,130,246,0.25); }

/* -- Store mockup -- */
.store-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.store-search-icon { font-size: 12px; }

.store-search-placeholder {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-family: 'Montserrat', sans-serif;
}

.store-filter-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.store-filter {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  cursor: default;
}
.active-filter {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}

.store-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.store-biz-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s, border-color 0.2s;
  cursor: default;
}
.store-biz-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}

.store-biz-img {
  height: 52px;
  width: 100%;
}

.store-biz-body {
  padding: 8px 10px;
}

.store-biz-badge {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 3px;
}
.green-badge { color: #4ade80; }

.store-biz-name {
  font-size: 11px;
  font-weight: 700;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.store-biz-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  margin-top: 1px;
}

.store-biz-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(34,197,94,0.3) !important;
  background: rgba(34,197,94,0.04) !important;
  min-height: 90px;
  font-size: 10px;
  color: #4ade80;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ---- Business rows inside marketing mockup ---- */
.mkt-biz-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mkt-biz-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.mkt-biz-info {
  flex: 1;
  min-width: 0;
}

.mkt-biz-name {
  font-size: 11px;
  font-weight: 700;
  color: white;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mkt-biz-handle {
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
}

.mkt-biz-desc {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  margin-top: 2px;
}

.mkt-biz-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.mkt-biz-num {
  font-size: 13px;
  font-weight: 800;
  color: #f472b6;
  font-family: 'Montserrat', sans-serif;
}

.mkt-biz-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-family: 'Montserrat', sans-serif;
}

/* ---- Marketing visual wrapper ---- */
.mkt-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.mkt-insta-strip {
  display: flex;
  gap: 8px;
  margin-bottom: -24px;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.mkt-insta-post {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: transform 0.25s ease;
}

.mkt-insta-post:hover {
  transform: translateY(-4px) scale(1.03);
}

.mkt-insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder style when image fails to load */
.mkt-insta-placeholder {
  background: linear-gradient(135deg, rgba(219,39,119,0.15), rgba(219,39,119,0.05));
  border: 1px dashed rgba(219,39,119,0.3) !important;
}

.mkt-insta-placeholder::after {
  content: '📸 Add photo';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 10px;
  color: rgba(219,39,119,0.6);
  font-family: 'Montserrat', sans-serif;
}

.mkt-visual-wrap .omock {
  position: relative;
  z-index: 1;
}

/* ---- Tags ---- */
.offer-deep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-tag {
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
}
.offer-tag.blue  { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); color: #60a5fa; }
.offer-tag.pink  { background: rgba(219,39,119,0.12); border: 1px solid rgba(219,39,119,0.25); color: #f472b6; }
.offer-tag.green { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.25);  color: #4ade80; }

/* ---- Controls ---- */
.offer-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 0 0;
}

.offer-prev,
.offer-next {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-prev:hover,
.offer-next:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: scale(1.1);
}

.offer-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.offer-dot.active {
  background: #fff;
  transform: scale(1.4);
}

/* ---- Slide 0 size overrides ---- */
.offer-carousel-section .services-cards-new {
  gap: 32px;
  padding: 0 60px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.offer-carousel-section .services-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.offer-carousel-section .services-subhead {
  font-size: 14px;
  margin-bottom: 20px;
}

.offer-carousel-section .svc-stats {
  margin-top: 16px;
}

.offer-carousel-section .svc-stat-num {
  font-size: 1.8rem;
}

.offer-carousel-section .svc-card {
  padding: 22px 24px;
}

.offer-carousel-section .svc-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.offer-carousel-section .svc-card p {
  font-size: 13px;
  line-height: 1.5;
}

.offer-carousel-section .svc-stack {
  gap: 16px;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .offer-deep {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
  }
  .offer-carousel-section {
    min-height: auto;
    padding: 60px 0 40px;
  }
  .offer-visual {
    max-width: 100%;
  }
  .offer-carousel-section .services-cards-new {
    padding: 0 20px;
  }
}


.quote-trigger {

  position: relative;
  padding: 16px 38px;

  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.6px;

  color: white;
  background: linear-gradient(135deg, #00c6ff, #0072ff);

  border: none;
border-radius: 14px;

  cursor: pointer;

  box-shadow:
    0 0 25px rgba(0,114,255,0.65),
    0 10px 35px rgba(0,0,0,0.6);

  transition: all 0.22s ease;

  overflow: hidden;
}

/* Glow pulse */
.quote-trigger::before {

  content: "";

  position: absolute;
  top: -50%;
  left: -50%;

  width: 200%;
  height: 200%;

  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover */
.quote-trigger:hover {

  transform: translateY(-4px) scale(1.06);

  background: linear-gradient(135deg, #4facfe, #00f2fe);

  box-shadow:
    0 0 45px rgba(0,242,254,0.95),
    0 18px 55px rgba(0,0,0,0.75);
}

.quote-trigger:hover::before {
  opacity: 1;
}

/* Click */
.quote-trigger:active {
  transform: scale(0.96);
}

/* Subtle breathing animation */
.quote-trigger {
  animation: quoteBreath 2.6s infinite;
}

@keyframes quoteBreath {

  0% {
    box-shadow:
      0 0 20px rgba(0,114,255,0.5),
      0 10px 30px rgba(0,0,0,0.5);
  }

  50% {
    box-shadow:
      0 0 40px rgba(0,114,255,0.9),
      0 18px 45px rgba(0,0,0,0.7);
  }

  100% {
    box-shadow:
      0 0 20px rgba(0,114,255,0.5),
      0 10px 30px rgba(0,0,0,0.5);
  }

}

/*ALL FIX*/

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* =========================================
   MAGNIFY GLASS CONTACT FORM
   ========================================= */

.contact-popup {
  position: fixed;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 30% 20%, rgba(59,130,246,0.18), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(37,99,235,0.18), transparent 40%),
    rgba(5,10,20,0.65);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  z-index: 999999;
}


/* MAIN GLASS CARD */
/* CONTACT FORM CENTERING FIX */

.contact-box {
  position: relative;
  width: 92%;
  max-width: 480px;
  padding: 42px;
  border-radius: 18px;
  background: linear-gradient(
      145deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(35px) saturate(180%);
  -webkit-backdrop-filter: blur(35px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
      0 25px 70px rgba(0,0,0,0.65),
      inset 0 1px 0 rgba(255,255,255,0.12);
  animation: contactFadeIn 0.35s ease;

  /* Centering Fix */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  color: white;
}

.contact-box input,
.contact-box textarea,
.contact-box button {
  width: 100%;
  max-width: 400px; /* Adjust to 380px for tighter premium look */
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 15px;
}


/* glossy focus */
.contact-box input:focus,
.contact-box textarea:focus {

  border: 1px solid rgba(59,130,246,0.6);

  background: rgba(59,130,246,0.08);

  box-shadow:
    0 0 0 1px rgba(59,130,246,0.25),
    0 0 18px rgba(59,130,246,0.25);
}


/* BUTTON */
.contact-box button {

  width: 100%;

  padding: 14px;

  border-radius: 12px;

  border: none;

  font-weight: 700;
  font-size: 15px;

  color: white;

  cursor: pointer;

  background:
    linear-gradient(135deg, #3b82f6, #2563eb);

  box-shadow:
    0 10px 30px rgba(37,99,235,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: all 0.25s ease;
}


/* button hover glow */
.contact-box button:hover {

  transform: translateY(-2px);

  box-shadow:
    0 15px 40px rgba(37,99,235,0.65),
    0 0 25px rgba(59,130,246,0.55);
}


/* CLOSE BUTTON */
.contact-close {

  position: absolute;
  top: 16px;
  right: 20px;

  font-size: 24px;
  color: rgba(255,255,255,0.7);

  cursor: pointer;

  transition: all 0.2s ease;
}

.contact-close:hover {
  color: white;
  transform: scale(1.15);
}


/* animation */
@keyframes contactFadeIn {

  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/*-------------------------------STRAIGHT 2 DA POINT SECTIONS----------*/

.card-btn {
  margin-top: 16px;

  padding: 10px 18px;

  font-size: 0.9rem;
  font-weight: 600;

  color: white;
  text-decoration: none;

  background: rgba(37,99,235,0.85);

  border-radius: 8px;

  backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}

.card-btn:hover {
  background: rgba(37,99,235,1);
  transform: translateY(-2px);
}



.why-compact-section {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  padding: 100px 40px;

  text-align: center;
  
  background: #0f1218;

    overflow: hidden;
}

.why-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 60px;

  max-width: 1100px;
  margin: 0 auto;
}


.why-compact-card {
  aspect-ratio: 1 / 1;   /* ← forces square */

  background: rgba(255,255,255,0.06);

  backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.5);

  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  position: relative;
  overflow: hidden;

  border-radius: 12px;
  padding: 28px;

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  border: 1px solid rgba(255,255,255,0.18);

  transition: 
    transform 0.3s ease,
    backdrop-filter 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.why-compact-card:hover {
  transform: translateY(-10px) scale(1.03);

   background: rgba(255,255,255,0.14);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.7),
    inset 0 0 20px rgba(255,255,255,0.08);

  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);

  box-shadow: 
    0 20px 40px rgba(0,0,0,0.5),
    inset 0 0 20px rgba(255,255,255,0.08);
}




/* CTA button */
 
.why-learn-btn {
  display: inline-block;

  padding: 16px 40px;

  backdrop-filter: blur(18px);
  background: #2563eb; /* nice modern blue */
  border-radius: 6px;
  color: white;
  text-decoration: none;

  font-weight: bold;
  letter-spacing: 1px;

  margin-top: 50px;

  transition: all 0.25s ease;
}

.why-learn-btn:hover {
  background: rgba(51, 47, 250, 0.997);
  transform: translateY(-3px);
}

/*MOBILE*/

@media (max-width: 768px) {
  .why-compact-grid {
    grid-template-columns: 1fr;
  }
}




/*-------------------------------SCROLLLL-----------------------*/

.scroll-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;

  transform: translateX(-50%); /* THIS centers it perfectly */

  z-index: 3;
}

.scroll-arrow {
  width: 40px;
  height: 40px;

  border-right: 3px solid rgba(255,255,255,0.85);
  border-bottom: 3px solid rgba(255,255,255,0.85);

  transform: rotate(45deg);

  animation: arrowScroll 1.8s infinite;
}

@keyframes arrowScroll {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(45deg);
  }

  40% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translateY(14px) rotate(45deg);
  }

  100% {
    opacity: 0;
  }
}


/*-------------------------------INTRODUCTION PAGE-----------------------*/

.panel-section .container {
  display: block;
  min-height: 100%;
  padding: 0;
}

/*------------------------INFO PAGE----------*/



/*-------------------------------YAP SECTION-----------------------*/

.section-heading {
  text-align: center;

  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;

  color: white;

  margin-bottom: 70px;

  background: none;
}


.why-grid-section {
  padding: 60px 4vw;

  background:
    radial-gradient(circle at 20% 20%, rgb(0, 0, 0), transparent 40%),
    radial-gradient(circle at 80% 8%, rgba(0,150,255,0.15), transparent 45%),
    #050505;

  width: 100vw;
  margin-left: calc(50% - 50vw);
}



.why-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 16px;
  padding: 24px;

  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden; /* ← prevents escape */
}

.why-compact-card img {
  max-width: 70%;
  max-height: 40%;

  object-fit: contain;

  margin-bottom: 12px;

  pointer-events: none;
}


.why-card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.text-card p {
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

.image-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  box-shadow: none;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 250px; /* slightly bigger */
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}




@media (max-width: 768px) {

  .bottom-cards {
    position: static;      /* ← key change */
    transform: none;
    margin-top: 24px;

    justify-content: center;
    flex-wrap: wrap;
  }

}


@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 100px 16px 40px;
  }

}

.why-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 769px) {

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

/* Secondary CTA — visible but still premium */
.cta-outline {

  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.6);

  padding: 12px 24px;
  border-radius: 8px;

  font-weight: 600;
  font-size: 0.95rem;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: all 0.2s ease;

  background: rgba(37, 99, 235, 0.25);
border: 1px solid rgba(96, 165, 250, 0.8);
}

/* Hover */
.cta-outline:hover {
  background: rgba(37, 99, 235, 0.35);
  border-color: rgba(96, 165, 250, 0.9);
  transform: translateY(-2px);
}

/* Click */
.cta-outline:active {
  transform: translateY(0);
}

/* =========================================
   SERVICES SECTION — REVAMP
   ========================================= */

.services-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 120px 60px 160px;
  overflow: hidden;
  background: linear-gradient(145deg, #07090f 0%, #0a1020 55%, #0c1530 100%);
  margin-top: -1px;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #0f1218, transparent);
  pointer-events: none;
  z-index: 2;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #0a1020);
  pointer-events: none;
  z-index: 2;
}
 
/* animated bg slides */
.services-bg-track { display: none; }
.services-bg-slide  { display: none; }
.services-bg-slide.active { display: none; }
 
/* inner wrapper */
.services-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
 
/* ── Header (left-aligned) ── */
.services-header {
  max-width: 680px;
  margin-bottom: 64px;
  display: none;
}
 
.services-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(100,165,255,0.75);
  text-transform: uppercase;
  margin-bottom: 16px;
}
 
.services-heading {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
}
 
.services-subhead {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 8px;
}

.svc-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.svc-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1;
}

.svc-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.svc-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

.svc-cta-btn {
  display: inline-block;
  padding: 13px 26px;
  background: #2563eb;
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 24px rgba(37,99,235,0.35);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.svc-cta-btn:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(59,130,246,0.5);
}
 
/* ── Cards grid ── */
.services-cards-new {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
 
/* right column stacks two equal cards */
.svc-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* ── Base card ── */
.svc-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px 28px;
  color: white;
  overflow: hidden;
  transition:
    transform   .35s cubic-bezier(.2,.8,.2,1),
    background  .35s ease,
    border-color .35s ease,
    box-shadow  .35s ease;
}
 
.svc-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 28px 60px rgba(0,0,0,0.45);
}
 
/* large card fills full left column height */
.svc-large {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
 
/* small cards each take half the height */
.svc-small {
  flex: 1;
}
 
/* ── Icon pills ── */
.svc-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  font-size: 19px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
 
.svc-icon-pill.blue  { background: rgba(37,99,235,0.22);  border: 1px solid rgba(59,130,246,0.30); }
.svc-icon-pill.pink  { background: rgba(37,99,235,0.22); border: 1px solid rgba(59,130,246,0.30); }
.svc-icon-pill.green { background: rgba(37,99,235,0.22); border: 1px solid rgba(59,130,246,0.30); }
 
/* ── Card typography ── */
.svc-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -.3px;
  color: #fff;
  margin-bottom: 14px;
}
 
.svc-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  flex-grow: 1;
}
 
.svc-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(120,170,255,0.85);
  text-decoration: none;
  letter-spacing: .3px;
  transition: color .2s ease, letter-spacing .2s ease;
  display: inline-block;
  margin-top: auto;
}
.svc-link:hover { color: #fff; letter-spacing: .6px; }
 
/* ── Corner glow decorations ── */
.svc-corner-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  bottom: -80px;
  right: -60px;
  opacity: 0;
  transition: opacity .5s ease;
}
.svc-corner-glow.blue  { background: radial-gradient(circle, rgba(37,99,235,0.22), transparent 65%); }
.svc-corner-glow.pink  { background: radial-gradient(circle, rgba(37,99,235,0.22), transparent 65%); }
.svc-corner-glow.green { background: radial-gradient(circle, rgba(37,99,235,0.22), transparent 65%); }
 
.svc-card:hover .svc-corner-glow { opacity: 1; }
 
/* ── Top-edge shimmer on hover ── */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  border-radius: 1px;
  opacity: 0;
  transition: opacity .35s ease;
}
.svc-card[data-index="0"]::before { background: linear-gradient(90deg, transparent, rgba(59,130,246,0.7), transparent); }
.svc-card[data-index="1"]::before { background: linear-gradient(90deg, transparent, rgba(59,130,246,0.7), transparent); }
.svc-card[data-index="2"]::before { background: linear-gradient(90deg, transparent, rgba(59,130,246,0.7), transparent); }
.svc-card:hover::before { opacity: 1; }
 
/* ── Scroll-reveal animation ── */
.reveal-svc {
  opacity: 1;
  transform: none;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-svc.visible { opacity: 1; transform: translateY(0); }
 
/* ── Mobile ── */
@media (max-width: 820px) {

  .services-section {
    padding: 60px 20px 70px;
  }

  .services-inner {
    max-width: 100%;
  }

  .services-cards-new {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .svc-left-text {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 0;
  }

  .services-heading {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    letter-spacing: -1px;
  }

  .services-subhead {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .svc-stats {
    padding: 16px 0;
    gap: 20px;
  }

  .svc-stat-num {
    font-size: 1.8rem;
  }

  .svc-stack {
    gap: 16px;
  }

  .svc-card {
    padding: 22px 20px;
  }

  .svc-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .svc-card p {
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.6;
  }

  .svc-icon-pill {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 12px;
  }

}
 
/* ── dots (keep existing .sdot styles, just hide them) ── */
.services-dots { display: none; }

/* =========================================
   PARTNERS SECTION — REVAMP
   ========================================= */

.partners-outer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #000000;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

/* animated mesh blobs */
.partners-outer .p-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

.partners-outer .p-blob-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(37,99,235,0.55), transparent 65%);
  top: -80px; left: -100px;
}

.partners-outer .p-blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.45), transparent 65%);
  bottom: -100px; right: -80px;
}

.partners-outer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #080c14);
  pointer-events: none;
  z-index: 2;
}

/* top fade blending into services section */
.partners-outer .partners-top-fade {
  display: none;
}

/* subtle center glow */
.partners-outer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.partners-header {
  text-align: center;
  padding: 90px 40px 48px;
  max-width: 100%;
  margin: 0;
  background: none;
  position: relative;
  z-index: 1;
}

.partners-outer {
  padding-top: 0;
}

.partners-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

.partners-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.48);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.adssection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
}

/* card */
.advertspot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, box-shadow 0.35s ease;
}

/* top shimmer line on hover */
.advertspot::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), transparent);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
}

.advertspot:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 30px rgba(37,99,235,0.08);
}

.advertspot:hover::before { opacity: 1; }

/* image area */
.partnerimage {
  width: 100%;
  height: 190px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  position: relative;
}

/* fade image into card body */
.partnerimage::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(10,14,24,0.85));
}

.advertspot:hover .partnerimage { transform: scale(1.05); }

/* body */
.partnerbody {
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.partnertitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  letter-spacing: -.2px;
  margin: 0;
}

.partnerbio {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.52);
  flex: 1;
  margin: 0;
}

/* badge — now sits at TOP of body */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: #93c5fd;
  width: fit-content;
  letter-spacing: .3px;
}

/* explore link at bottom */
.partner-explore {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(120,170,255,0.85);
  letter-spacing: .3px;
  margin-top: 4px;
  transition: color .2s, letter-spacing .2s;
}

.advertspot:hover .partner-explore {
  color: white;
  letter-spacing: .6px;
}

@media (max-width: 768px) {
  .partners-header {
    padding: 50px 20px 28px;
  }

  /* Carousel container */
  .adssection {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    /* side padding = (100vw - card width) / 2 so cards center */
    padding: 0 calc(50vw - 39vw) 48px;
    scrollbar-width: none;
    scroll-padding-left: calc(50vw - 39vw);
  }

  .adssection::-webkit-scrollbar {
    display: none;
  }

  .advertspot {
    flex: 0 0 78vw;
    max-width: 78vw;
    scroll-snap-align: center;
  }

  /* Swipe hint dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-bottom: 28px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .carousel-dot.active {
    background: #3b82f6;
    transform: scale(1.3);
  }
}

/* =========================================
   SCROLL REVEAL — GLOBAL
   ========================================= */

.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

.sr.sr-visible {
  opacity: 1;
  transform: none;
}

/* stagger delays for grid children */
.sr-delay-1 { transition-delay: .1s; }
.sr-delay-2 { transition-delay: .2s; }
.sr-delay-3 { transition-delay: .3s; }
.sr-delay-4 { transition-delay: .4s; }

/* =========================================
   SITE FOOTER
   ========================================= */

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #06080e;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 40px;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  height: 26px;
  opacity: 0.85;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 90px 40px 100px;
  background: #05080f;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

/* Full-bleed deep blue radial glow behind everything */
.pricing-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Hairline separator from partners section above */
.pricing-section::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}

.pricing-inner {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.pricing-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 52px;
  letter-spacing: 0.2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* BASE CARD — dark glass */
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  padding: 32px 26px 28px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 55px rgba(0,0,0,0.5);
}

/* POPULAR CARD — glowing blue */
.pricing-card.popular {
  background: linear-gradient(165deg, rgba(37,99,235,0.22) 0%, rgba(15,30,80,0.4) 100%);
  border: 1px solid rgba(59,130,246,0.35);
  border-top: 1px solid rgba(100,160,255,0.55);
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(37,99,235,0.18),
    0 24px 60px rgba(0,0,0,0.5);
}

.pricing-card.popular:hover {
  transform: translateY(-14px);
  box-shadow:
    0 0 60px rgba(37,99,235,0.28),
    0 32px 72px rgba(0,0,0,0.55);
}

/* Inner glow streak on popular card */
.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147,197,253,0.6), transparent);
  border-radius: 1px;
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(37,99,235,0.5);
}

.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(100,160,255,0.75);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
}

.pricing-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 18px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Replace ✓ text ticks with a proper coloured check */
.pricing-features li::before {
  content: '✓';
  color: #3b82f6;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Hide the original ✓ characters in the HTML since ::before adds them */
.pricing-features li {
  text-indent: 0;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.22s ease;
  margin-top: auto;
  letter-spacing: 0.2px;
}

.pricing-btn:hover {
  background: rgba(255,255,255,0.11);
  color: white;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
}

.pricing-btn.featured {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border: none;
  color: white;
  box-shadow: 0 6px 24px rgba(37,99,235,0.45);
}

.pricing-btn.featured:hover {
  box-shadow: 0 10px 36px rgba(37,99,235,0.65);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .pricing-section {
    padding: 50px 0 60px;
  }

  .pricing-heading {
    padding: 0 20px;
    font-size: 1.8rem;
  }

  .pricing-sub {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .services-label {
    display: block;
    padding: 0 20px;
  }

  /* ── Carousel track ── */
  .pricing-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 16px 4vw 36px;
    scrollbar-width: none;
    align-items: start;
    scroll-padding-left: 4vw;
  }

  .pricing-grid::-webkit-scrollbar { display: none; }

  /* ── Each card: full-width, one at a time ── */
  .pricing-card {
    flex: 0 0 92vw;
    max-width: 92vw;
    scroll-snap-align: center;
    box-sizing: border-box;
    padding: 24px 22px 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pricing-card.popular {
    transform: none;
    border-color: rgba(59,130,246,0.45);
  }

  /* Tier label */
  .pricing-tier {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
  }

  /* Big price */
  .pricing-price {
    font-size: 2.8rem;
    margin-bottom: 6px;
    line-height: 1;
  }

  /* Hide the description — price speaks for itself on mobile */
  .pricing-desc {
    display: none;
  }

  /* Hide the full feature list — replaced by 3 key bullets below */
  .pricing-features {
    display: none;
  }

  /* Show only first 3 features via a mobile-only summary */
  .pricing-card::after {
    content: attr(data-features);
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin: 10px 0 18px;
    white-space: pre-line;
  }

  .pricing-btn {
    padding: 12px 18px;
    font-size: 0.85rem;
    order: 10;
    margin-top: 4px;
  }

  .pricing-card::after {
    order: 5;
  }

  .popular-badge {
    font-size: 0.6rem;
    padding: 3px 12px;
    top: -11px;
    letter-spacing: 1.5px;
  }
}

.pricing-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: white;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}

.pricing-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 36px 28px 32px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.18);
}

.pricing-card.popular {
  background: rgba(37,99,235,0.12);
  border-color: rgba(59,130,246,0.45);
  transform: translateY(-10px);
}

.pricing-card.popular:hover {
  transform: translateY(-16px);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(100,160,255,0.8);
  margin-bottom: 14px;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 14px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

.pricing-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-features li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  transition: all 0.25s ease;
}

.pricing-btn:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.pricing-btn.featured {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  box-shadow: 0 8px 28px rgba(37,99,235,0.4);
}

.pricing-btn.featured:hover {
  box-shadow: 0 12px 38px rgba(37,99,235,0.6);
}



/*---------------------------------------------------------------------------------------------TOP WORDS------------------------*/
.hero {
  position: relative;
  z-index: 2;
  overflow: hidden;

  width: 100%;

  /* THE FIX */
  min-height: 100dvh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 120px 20px 80px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  background: rgba(0, 0, 0, 0.15); /* slight darkening */

  z-index: 1;
}

.hero::after{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 220px;

  background: linear-gradient(
    to bottom,
    rgba(15, 18, 24, 0) 0%,
    rgba(15, 18, 24, 0.4) 40%,
    rgba(15, 18, 24, 0.75) 70%,
    rgba(15, 18, 24, 1) 100%
  );

  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 40px;
}

.hero-inner h1 {

  font-size: clamp(2.4rem, 4.2vw, 3.6rem); /* slightly smaller */

  font-weight: 700; /* thinner than 800 */

  color: #ffffff;

  text-shadow:
    0 2px 6px rgba(0,0,0,0.6),
    0 4px 18px rgba(0,0,0,0.35);

  line-height: 1.15;
  margin-bottom: 18px;

}


.hero-inner p {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600; /* makes it bold but not too heavy */

  color: rgba(255,255,255,0.95);

  text-shadow:
    0 2px 6px rgba(0,0,0,0.6);

  margin-bottom: 28px;
}


.hero-content {
  position: relative;
  z-index: 5;
}


.hero-title {
  min-height: 2.4em;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

#typed-text {
  color: #ffffff;
}

.type-cursor {
  display: inline-block;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  animation: cursorBlink 0.85s step-end infinite;
  margin-left: 2px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-subtitle {
  color: rgba(255,255,255,0.95);

  text-shadow:
    0 2px 6px rgba(0,0,0,0.7),
    0 4px 16px rgba(0,0,0,0.6);
}


.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons a {

  display: inline-block;

  padding: 16px 30px;

  font-size: 1.05rem;
  font-weight: 700;

  color: #ffffff;

  /* darker glass background */
  background: rgba(20, 20, 20, 0.55);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);

  border-radius: 14px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.5);

  transition: all 0.25s ease;

}

.hero-buttons a:hover {

  background: rgba(30, 30, 30, 0.75);

  transform: translateY(-3px);

  box-shadow:
    0 16px 45px rgba(0,0,0,0.65);

}


.hero-btn {
  padding: 14px 28px;
  border-radius: 10px;

  color: white;
  text-decoration: none;
  font-weight: 600;

  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.18);

  transition: all 0.25s ease;
}

.hero-btn-primary {
  border: 1px solid rgba(59,130,246,0.6);
}

.hero-btn-primary:hover {
  background: rgba(37,99,235,0.35);
}


.hero-btn:hover {
  background: rgba(30,30,30,0.75);
  transform: translateY(-3px);
}


/* Bottom cards */
.bottom-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {

  .hero {
    padding: 100px 16px 40px;
    min-height: auto;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .bottom-cards {
    width: 100%;
  }

  .glass-card {
    flex: 1;
    min-width: 120px;
  }

}

@media (max-width: 768px) {

  .panel-section::before {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.60) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.35) 70%,
        rgba(0,0,0,0.20) 100%
      ),
      radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.30) 0%,
        rgba(0,0,0,0.10) 60%,
        rgba(0,0,0,0.00) 100%
      );
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 120px 16px 60px;
    min-height: auto;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-title {
    font-size: 28px;
  }

}

@media (max-width: 768px) {

  .hero {
    min-height: 100dvh;
    padding-top: 100px;
    padding-bottom: 60px;

    display: flex;
    justify-content: center;
    align-items: center;
  }

}

@media (max-width: 768px) {

  .hero-inner {

    padding: 140px 20px 100px;

  }

  .hero-inner h1 {

    font-size: 2.2rem;
    line-height: 1.25;

    margin-bottom: 26px;   /* increased from ~18 */

  }

  .hero-inner p {

    font-size: 1rem;

    margin-bottom: 38px;   /* increased from ~28 */

  }

  .hero-buttons {

    display: flex;
    flex-direction: column;

    gap: 18px;   /* increased spacing between buttons */

  }

  .hero-buttons a {

    padding: 18px 22px;

  }

}
@media (max-width: 768px) {

  .hero-inner {
    padding-top: 40px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.4rem) !important;
    line-height: 1.2;
    margin-bottom: 16px !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    color: rgba(255,255,255,0.65);
    max-width: 300px;
    margin: 0 auto 28px !important;
  }

  .hero-buttons {
    gap: 12px !important;
    align-items: center;
  }

  .hero-buttons a {
    padding: 14px 22px !important;
    font-size: 0.93rem;
    width: 100%;
    max-width: 280px;
  }

}

.hero-about {
  margin-top: 26px;
  text-align: center;
}

.hero-about-btn {
  display: inline-block;

  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  color: #ffffff;
  text-decoration: none;

  background: rgba(37, 99, 235, 0.15);
  border: 2px solid rgba(37, 99, 235, 0.6);

  border-radius: 12px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 8px 25px rgba(37, 99, 235, 0.25);

  transition: all 0.25s ease;
}

.hero-about-btn:hover {
  background: rgba(37, 99, 235, 0.35);
  border-color: rgba(37, 99, 235, 1);

  transform: translateY(-3px);

  box-shadow:
    0 12px 40px rgba(37, 99, 235, 0.45);
}



/*---------------------------------------------------------------------------------------------Glass Buttons------------------------*/

.hero-buttons button {
  padding: 14px 28px;
  font-size: 16px;

  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.5);

  color: white;
  background: rgba(255,255,255,0.15);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  cursor: pointer;

  transition: all 0.25s ease;
}

.hero-buttons .primary-cta {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  border: none;
}

.hero-buttons button:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

/*---------------------------------------------------------------------------------------------bottom glass cards------------------------*/

.glass-card {
  width: 130px;
  height: 110px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 18px;
  color: white;

  border-radius: 12px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.3);

  cursor: pointer;

  transition: all 0.25s ease;
}

.glass-card:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-6px);
}

.bottom-cards a {
  text-decoration: none;
  color: white;
}

.bottom-cards a:visited,
.bottom-cards a:active {
  color: white;
}



/*---------------------------------------------------------------------------------------------SIDENAV------------------------*/
body.nav-open .sitelogo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.sitelogo {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.nav-open{
  overflow: hidden;
}

.account-icon {
  position: absolute;
  top: 20px;
  left: 20px;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  box-shadow: 0 0 18px rgba(37,99,235,0.5);

  cursor: pointer;
  transition: all 0.2s ease;
}

.account-icon:hover {
  background: rgba(59,130,246,0.8);
  transform: scale(1.08);
}

.account-icon svg {
  width: 22px;
  height: 22px;
}

/*--------------SIDE NAV LAYER?*/

.sidenav {
  position: fixed;
  top: 0;
  left: 0;

  width: 0;
  height: 100vh;

  z-index: 999999;

  overflow-x: hidden;

  /* REAL glass effect */
  background: rgba(15, 18, 24, 0.45);

  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  border-right: 1px solid rgba(255,255,255,0.12);

  box-shadow: 6px 0 30px rgba(0,0,0,0.6);

  padding-top: 110px;

  transition: width 0.35s ease;

  display: flex;
  flex-direction: column;
}


.sidenav ul,
.sidenav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*clean nav links*/
.sidenav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;

  padding: 10px 16px;
  border-radius: 5px;

  transition: background 0.2s ease;
}

/*hover*/
.sidenav a:hover {
  background: rgba(255,255,255,0.12);
}

/*active item*/
.sidenav a.active {
  background: #3b82f6;
}

.sidenav a.active2 {
  background: #23529d;
  border-radius: 0px;
}

.sidenav .closebtn {
  position: absolute;
  top: 16px;
  right: 16px;

  font-size: 50px;          /* normal size */
  line-height: 1;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgb(255, 255, 255);
  text-decoration: none;

  border-radius: 2px;

  background: rgba(255,255,255,0.08);

  transition: 
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;

  z-index: 10001;
}


.sidenav .closebtn:hover {
  background: rgba(255,255,255,0.15);
  color: white;

  transform: scale(1.05); /* subtle */
}



#main {
  transition: margin-left .5s;
  padding: 0;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

#overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.35);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;

  z-index: 9000;
}

body.nav-open #overlay {
  opacity: 1;
  pointer-events: auto;
}


.menuBtn {
  position: fixed;
  top: 35px;
  left: 20px;
  cursor: pointer;
  z-index: 99999;
  background: none;
  border: none;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menuBtn:hover {
  transform: translateY(-1px);
  opacity: 0.75;
}

.menuBtn svg {
  display: block;
}



/*---------------------------------------------------------------------------------------------BACKGROUND------------------------*/

.panel-section {
  position: relative;
  margin-top: -20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
  min-height: calc(100dvh + 40px);
  display: flex;
}

/* Blurred background image — works on all mobile browsers */
.panel-section::before {
  content: "";
  position: absolute;
  inset: -20px; /* overshoot edges so blur doesn't show white borders */
  z-index: 0;

  background-image: url("images/aboutus.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  filter: blur(1px);
  -webkit-filter: blur(3px);
  transform: scale(1.05); /* prevent blur edge bleed */
}

/* Dark overlay on top of the blurred bg */
.panel-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.20) 70%,
      rgba(0,0,0,0.05) 100%
    );
  pointer-events: none;
}

.panel-section-fade {
  position: absolute;
  left: 0;
  bottom: -1px;

  width: 100%;
  height: 220px;

  background: linear-gradient(
    to bottom,
    rgba(15,18,24,0) 0%,
    rgba(15,18,24,0.25) 30%,
    rgba(15,18,24,0.55) 55%,
    rgba(15,18,24,0.82) 75%,
    #0f1218 100%
  );

  pointer-events: none;
  z-index: 3;
}





/*---------------------------------------------------------------------------------------------Top Logo-----------------------*/
.sitelogo {
  position: fixed;

  top: 8px;     
  right: 16px;   

  transform: none;

  padding: 6px 10px;

  border-radius: 8px;
  z-index: 999999;


  transition: transform 0.25s ease, filter 0.25s ease;
}

.sitelogo:hover {

   /* Floating effect */
  transform: translateY(-8px) scale(1.04);
}

.sitelogo img {
  height: 70px;
  display: block;


}

/* PROMO BANNER */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    background-size: 200% 100%;
    animation: promoBannerShimmer 3s ease-in-out infinite;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    height: 36px;
    box-shadow: 0 2px 12px rgba(245,158,11,0.5);
}

@keyframes promoBannerShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.promo-banner-text {
    text-align: center;
    letter-spacing: 0.02em;
}

.promo-banner-btn {
    background: #1a1a1a;
    color: #fbbf24;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s;
}

.promo-banner-btn:hover {
    background: #333;
}

.promo-banner-close {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.promo-banner-close:hover {
    opacity: 1;
}

/*---------------------------------------------------------------------------------------------MAIN------------------------*/

/*New font. Should work on all devices*/
body {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  background-color: #000;
  background-size: 400% 400%;
  animation: gradient 2s ease infinite;
  margin: 0;
  padding-top: 0;
}

/*---------------------------------------------------------------------------------------------TITLE BANNER------------------------*/
/*.container{
    display:flex;
    gap:20px;
    min-height:55vh;

    margin-top: 10px; 

    padding: 0 40px;

    position: relative;
  z-index: 1;
}*/

/*---------------------------------------------------------------------------------------------QUICK NAV------------------------*/

.quick-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;
  gap: 24px;

  padding: 14px 20px;

  background: rgba(10, 12, 18, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  box-shadow:
    0 8px 32px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.07);

  z-index: 8000;

  opacity: 1;
  pointer-events: auto;

  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

.quick-nav.nav-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
}

/* SCROLLED GLASS MODE */

.quick-nav.scrolled {
  background: rgba(15,18,24,0.72);

  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  box-shadow:
    0 10px 35px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.quick-btn {
  color: white;
  text-decoration: none;
  font-weight: 600;
  

  padding: 12px 18px;
  border-radius: 8px;

  transition: all 0.2s ease;
}

.quick-btn.active {
  color: #60a5fa;
}

.quick-btn:hover {
  transform: translateY(-2px);
}

/*---------------------------------------------------------------------------------------------BACK TO TOP------------------------*/

html{
  scroll-behavior: smooth;
}

.back-to-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 10000;
}

.back-to-top:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.2);
  color: white;
  transform: translateY(-3px);
}

/*---------------------------------------------------------------------------------------------ADVERTISING (what is this?? to scared to delete)------------------------*/

/* ts makes sure everything is aligned 4 the ads n stuff*/

.adcard{
    display: none;
}

/* Placeholder images */
.ad1{ background-image: url("images/ad1.jpg"); }
.ad2{ background-image: url("images/ad2.jpg"); }
.ad3{ background-image: url("images/ad3.jpg"); }

/* Dark overlay */
.adcard::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

/* Hover animation */
.adcard:hover{
  transform: scale(1.06);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.adcard:hover::before{
  background: rgba(0,0,0,0.45);
}

/* Button */
.adbutton{
  position: relative;
  z-index: 1;

  background: white;
  color: black;

  padding: 14px 26px;
  border-radius: 30px;

  font-weight: bold;
  font-size: 16px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.adcard:hover .ad-btn{
  transform: scale(1.08);
}


/*------------------------------------------------------------PARTNER AREA, SUPER IMPORTANT-----------*/

/*imma debug this and i pray u work/*

/* image area 4 our clients */
.partnerimage {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
}


.partnerbody {
  padding: 20px 24px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
}

.card-btn{
    margin-top:auto;
}


.partnertitle {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.partnerbio {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

/* middle card the feature one for high payers */
.advertspot.featured {
  transform: scale(1.05);
  border: 2px solid rgba(255,255,255,0.4);
  animation: jump 1s ease-in-out infinite;
}

.advertspot.featured:hover {
  transform: translateY(-18px) scale(1.08);
}

.advertspot:hover .partnerimage {
  transform: scale(1.08);
}

/*---------------------------------------------------------------------------------------------CLICK ME! (Animation)-----------------------*/

@keyframes jump{
  0%, 100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-12px);
  }
}

/*------------------------------------------------------------Readable Text (becoz im to lazy to go in one by one)-----------*/
.cardcontent,
.partnerbody,
.partnerbio,
.cardcontent h2,
.partnertitle {
  color: #ffffff !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.infocard {
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  background: rgba(255,255,255,0.25);
}


/*------------------------------------------------------------Mobile Compatibility-----------*/
@media (max-width: 768px){
   .container {
    flex-direction: column;
    padding: 0 16px;
   }

    .panel {
    min-height: auto;
    padding: 24px;
  }

  /* Fix logo position — centred at top on mobile */
  .sitelogo {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    top: 10px !important;
  }

  .sitelogo img {
    height: 80px;
  }

  /* Right stack should be vertical */
  .rightstack {
    flex-direction: column;
  }

  /* Cards should use full width */
  .newcards {
    width: 100%;
    padding: 24px;
  }

  /* Reduce font sizes */
  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  /*Ts hides quick nav on mobile*/
  .quick-nav {
    display: none;
  }
}

/*------------------------------------------------------------Mobile Header Fix-----------*/
@media (max-width: 768px) {

body::before {
  display: none !important;
}

}

@media (max-width: 768px) {

  body.nav-open::before {
    display: none;
  }

}

/*FADE*/

.section-fade {
  display: none;
}


.section-title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.section-title h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 15px auto 0 auto;

  font-size: 1.1rem;
  line-height: 1.6;

  color: rgba(255,255,255,0.75);
}

/* ---------------- HIDE QUICK NAV ON MOBILE (FINAL OVERRIDE) ---------------- */

@media (max-width: 768px) {

  .quick-nav {
    display: none !important;
  }

}



/* =========================================
   PRIMARY CTA — UNIVERSAL (Nav + Hero)
   ========================================= */

/* =========================================
   DARK PREMIUM CTA
========================================= */

/* =========================================
   PREMIUM MINIMAL CTA
========================================= */

.primary-cta {
  background: #2563eb; /* single solid brand color */
  color: #ffffff !important;

  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;

  padding: 12px 22px;   /* tighter = cleaner */
  border-radius: 8px;   /* less bubbly */
  border: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);

  transition: all 0.18s ease;
}

/* Hover */
.primary-cta:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Click */
.primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* pulse */
@keyframes ctaPulse {

  0% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

  50% {
    box-shadow:
      0 0 35px rgba(59,130,246,0.85),
      0 12px 35px rgba(0,0,0,0.6);
  }

  100% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

}



/* Fix CTA buttons overriding .btn */

.btn.primary-cta {

  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;

  color: white !important;

  text-decoration: none !important;

  border: none;

}

/* =========================================
   BOTTOM LEFT CORNER LOGO
   ========================================= */

.corner-logo {

  position: fixed;
  bottom: -7px;
  left: -10px;

  z-index: 9999;

  padding: 8px;

  border-radius: 10px;

  transition: all 0.25s ease;
}

.corner-logo img {

  height: 100px;
  width: auto;

  opacity: 0.85;

  display: block;

  transition: all 0.25s ease;
}


.corner-logo:hover img {

  opacity: 1;
  transform: scale(1.08);
}

/* Quote button — matches Get Started perfectly */
.quote-btn {

  background: linear-gradient(135deg, #00c6ff, #0072ff);

  box-shadow:
    0 4px 14px rgba(0,114,255,0.35);

}

/* Hover */
.quote-btn:hover {

  background: linear-gradient(135deg, #4facfe, #00f2fe);

  box-shadow:
    0 6px 20px rgba(0,242,254,0.45);

  transform: translateY(-1px);
}










/*------------------------technical stuff*/

/* =========================================
   ALPHA LOGIN MODAL
========================================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  z-index: 999999;

  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(15, 18, 24, 0.85);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  padding: 40px;
  border-radius: 18px;

  width: 90%;
  max-width: 420px;

  color: white;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.1);

  animation: modalFade 0.3s ease;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 25px;
}

.modal-content input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.05);
  color: white;
}

.modal-content button {
  width: 100%;
  padding: 14px;

  border-radius: 10px;
  border: none;

  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;

  font-weight: 600;
  cursor: pointer;

  transition: 0.2s ease;
}

.modal-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,99,235,0.5);
}

#closeModal {
  position: absolute;
  top: 15px;
  right: 20px;

  font-size: 24px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}

#closeModal:hover {
  color: white;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Launch Popup Overlay ===== */

/* ===== Launch Popup Overlay ===== */

.launch-popup{
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    min-height: 100dvh; /* fixes mobile viewport bugs */

    background: rgba(5,10,25,0.65);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    overflow: hidden;
}

body.popup-open{
    overflow: hidden;
}


/* ===== Glass Card ===== */

.launch-box{

    position:relative;

    width:90%;
    max-width:480px;

    padding:45px 40px;

    border-radius:22px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.18);

    backdrop-filter:blur(35px);
    -webkit-backdrop-filter:blur(35px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.25);

    text-align:center;

    color:white;

    animation:popupFade 0.6s ease;
}


/* ===== Animation ===== */

@keyframes popupFade{
    from{
        opacity:0;
        transform:translateY(35px) scale(.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}


/* ===== Text ===== */

.launch-box h2{
    font-size:30px;
    margin-bottom:12px;
    font-weight:600;
    color:white;
}

.launch-text{
    opacity:0.85;
    margin-bottom:25px;
    color:white;
}

.launch-sub{
    margin-top:22px;
    opacity:0.75;
    color:white;
}


/* ===== Countdown ===== */

/* ===== Countdown ===== */

.launch-countdown{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;   /* allows wrapping on small screens */
    gap:12px;
    width:100%;
}

.launch-time{

    flex:1 1 60px;   /* flexible boxes */
    max-width:80px;

    background:rgba(255,255,255,0.12);

    padding:12px 10px;

    border-radius:14px;

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.15);

    text-align:center;
}

@media (max-width: 420px){

  .launch-countdown{
      gap:8px;
  }

  .launch-time{
      flex:1 1 55px;
      max-width:70px;
      padding:10px 6px;
  }

  .launch-time span{
      font-size:18px;
  }

}

@media (max-width:768px){

.launch-box{
   padding:32px 22px;
}

}



.launch-time span{
    font-size:22px;
    font-weight:700;
}

.launch-time span{
    font-size:24px;
    font-weight:700;
    display:block;
    color:white;
}

.launch-time small{
    font-size:11px;
    opacity:0.7;
    color:white;
}


/* ===== Close Button ===== */

.launch-close{

    position:absolute;
    right:18px;
    top:14px;

    font-size:24px;
    cursor:pointer;

    color:white;

    opacity:0.8;

    transition:all .2s ease;
}

.launch-close:hover{
    opacity:1;
    transform:scale(1.15);
}

/* Fade out animation */

.launch-popup.fade-out{
    animation:popupFadeOut 0.45s ease forwards;
}

@keyframes popupFadeOut{
    from{
        opacity:1;
        transform:scale(1);
    }
    to{
        opacity:0;
        transform:scale(.96);
    }
}

/* ================================
   Launch Popup Mobile Optimization
================================ */

@media (max-width: 600px){

    .launch-popup{
        width: 92%;
        max-width: 92%;
        padding: 28px 20px;
        border-radius: 18px;
    }

    .launch-popup h2{
        font-size: 22px;
    }

    .launch-popup p{
        font-size: 14px;
        line-height: 1.5;
    }

    .countdown{
        gap: 8px;
        margin: 20px 0;
    }

    .time-box{
        min-width: 55px;
        padding: 10px;
    }

    .time-number{
        font-size: 18px;
    }

    .time-label{
        font-size: 10px;
    }

    .popup-close{
        top: 10px;
        right: 12px;
        font-size: 18px;
    }

}

/* ---------------- NOTICE SECTION ---------------- */

.notice-section{
    max-width:900px;
    margin:140px auto 80px auto;
    padding:0 20px;
    text-align:center;
}

.notice-card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
    padding:30px;
    margin-top:25px;
    transition:0.3s ease;
}

.notice-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,0.2);
}

.notice-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.notice-card p{
    opacity:0.85;
    line-height:1.6;
}


.community-btn{
position: fixed;
top: 80px;
left: 14px;
padding:10px;
border-radius:12px;
cursor:pointer;
z-index:999;
transition:0.25s;
}

.community-envelope{
position:absolute;
top:95px;
left:28px;

width:42px;
height:42px;

display:flex;
align-items:center;
justify-content:center;

font-size:20px;
color:white;

border-radius:10px;

background:rgba(255,255,255,0.05);
backdrop-filter:blur(8px);

cursor:pointer;
transition:all .25s ease;
}

.community-envelope:hover{
background:rgba(255,255,255,0.12);
transform:scale(1.05);
}

/* notification dot */

.notif-dot{
position:absolute;
top:6px;
right:6px;

width:8px;
height:8px;

background:#ff3b3b;
border-radius:50%;

box-shadow:0 0 6px rgba(255,60,60,0.8);
}

.community-btn:hover{
transform:scale(1.08);
}

.community-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

display:flex;
align-items:center;
justify-content:center;

background:rgba(0,0,0,0.45);

opacity:0;
visibility:hidden;

transition:opacity .35s ease, visibility .35s ease;

z-index:2000;
}

.community-popup.active{
opacity:1;
visibility:visible;
}

/* modal box */

.community-box{

width:90%;
max-width:520px;

padding:34px 36px;

border-radius:18px;

background:rgba(20,28,40,0.35);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,0.08);
box-shadow:0 15px 50px rgba(0,0,0,0.5);

color:white;

transform:scale(.92);
opacity:0;

transition:all .35s cubic-bezier(.2,.8,.2,1);
}

/* animate open */

.community-popup.active .community-box{
transform:scale(1);
opacity:1;
}

/* title */

.community-box h2{
font-size:26px;
margin-bottom:18px;
}

/* text */

.community-box p{
font-size:15px;
line-height:1.6;
color:rgba(255,255,255,0.8);
margin-bottom:16px;
}

/* button */

.community-cta{

margin-top:12px;

padding:12px 22px;

border-radius:10px;
border:none;

background:#3b82f6;
color:white;

font-size:14px;
font-weight:600;

cursor:pointer;
transition:.2s;
}

.community-cta:hover{
transform:translateY(-1px);
background:#4b8df7;
}

/* close */

.community-close{

position:absolute;
right:20px;
top:18px;

font-size:20px;
cursor:pointer;

opacity:.7;
}

.community-close:hover{
opacity:1;
}

/* MOBILE */

@media (max-width:600px){

.community-box{

padding:26px 22px;
border-radius:16px;

}

.community-box h2{
font-size:20px;
}

.community-box p{
font-size:14px;
}

.community-cta{
width:100%;
margin-top:14px;
}

}

.community-close{
position:absolute;
right:20px;
top:15px;
font-size:24px;
cursor:pointer;
}

.community-text{
margin:20px 0;
line-height:1.6;
}

.community-form-popup{
position:fixed;
inset:0;

display:flex;
align-items:center;
justify-content:center;

background:rgba(0,0,0,0.55);

opacity:0;
pointer-events:none;

transition:opacity .35s ease;

z-index:9999;
}

.community-form-popup.active{
opacity:1;
pointer-events:auto;
}

/* form card */

.community-form-box{

width:420px;
max-width:90%;

padding:32px;

border-radius:18px;

background:rgba(20,25,35,0.55);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,0.08);

transform:translateY(20px) scale(.96);
opacity:0;

transition:all .35s cubic-bezier(.2,.8,.2,1);

}

.community-form-popup.active .community-form-box{
transform:translateY(0) scale(1);
opacity:1;
}

.community-cta{
display:block;
margin:25px auto 0 auto;
text-align:center;
}

/* FORM FADE OUT */

.community-form-popup.closing{
opacity:0;
pointer-events:none;
}

.community-form-popup.closing .community-form-box{
transform:translateY(20px) scale(.96);
opacity:0;
}

/* ======================================================
   GLOBAL MOBILE STABILITY OVERRIDE
   Fixes popup overflow, timers, background glitches
   ====================================================== */

@media (max-width: 768px) {

  /* Prevent horizontal scroll bugs */
  html, body {
    overflow-x: hidden;
  }

  /* ---------- POPUP CONTAINER ---------- */

  .contact-popup,
  .countdown-popup,
  .popup-overlay {
    padding: 20px;
    align-items: center;
    justify-content: center;
  }

  /* ---------- POPUP BOX ---------- */

  .contact-box,
  .countdown-box,
  .popup-box {

    width: 92%;
    max-width: 420px;

    padding: 24px;

    max-height: 85vh;

    overflow-y: auto;

    border-radius: 16px;
  }

  /* ---------- COUNTDOWN TIMER ---------- */

  .countdown,
  .countdown-timer {

    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    gap: 10px;

    width: 100%;
  }

  .countdown div,
  .timer-block {

    flex: 1 1 60px;

    min-width: 60px;

    font-size: 18px;
    padding: 10px;
  }

  /* Prevent numbers pushing outside box */

  .countdown span,
  .timer-number {
    font-size: clamp(18px, 6vw, 26px);
  }

  /* ---------- BACKDROP STABILITY ---------- */

  .contact-popup,
  .popup-overlay {

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* ---------- FIX IOS 100VH BUG ---------- */

  .hero,
  .panel-section {
    min-height: 100svh;
  }

  /* ---------- BUTTON STACK ---------- */

  .hero-buttons,
  .popup-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a,
  .popup-buttons button {
    width: 100%;
  }

}

/* ===== Launch Popup Overlay ===== */

.launch-popup{
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(10,12,18,0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 9999;
}

/* ===== Actual Popup Box ===== */

.launch-box{

    width: 92%;
    max-width: 420px;

    padding: 32px 26px;

    border-radius: 18px;

    background: rgba(20,25,35,0.55);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);

    position: relative;
}

/* FULL SCREEN BLUR OVERLAY */
.countdown-overlay {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background: rgba(0,0,0,0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

/* ensure popup stays centered */
.countdown-popup {
  position: relative;
  max-width: 90%;
}

/* ============================= */
/* MOBILE FIX — LAUNCH POPUP    */
/* ============================= */

@media (max-width: 768px){
  .launch-popup{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-width: none !important;

    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
  }
}

@media (min-width: 769px) {
  #mySidenav { display: none !important; }
  #menuBtn   { display: none !important; }
  #overlay   { display: none !important; }
}

/* Desktop My Account glass button */
.desktop-account-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 99999;
}

@media (max-width: 768px) {
  .desktop-account-btn { display: none !important; }
  #mySidenav { display: flex !important; }
  #menuBtn   { display: block !important; }
}

.account-glass-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 20px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;

  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;

  transition: background 0.2s ease, transform 0.2s ease;
}

.account-glass-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.acct-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.acct-dot.logged-in  { background: #3ecf6e; box-shadow: 0 0 6px rgba(62,207,110,0.8); }
.acct-dot.logged-out { background: #888; }

/* =====================================================
   MOBILE OPTIMISATION — Full safety layer
   ===================================================== */

@media (max-width: 768px) {

  /* ── General ── */
  html, body { overflow-x: hidden; }

  /* ── Hero ── */
  .hero {
    padding: 100px 20px 60px;
    min-height: 100svh;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    min-height: auto;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 14px !important;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons a,
  .hero-buttons button {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  /* ── Offer carousel section ── */
  .offer-carousel-section {
    min-height: auto;
    padding: 48px 0 32px;
  }

  .offer-carousel-controls {
    gap: 10px;
    padding: 20px 0 0;
  }

  .offer-prev, .offer-next {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  /* Slide 0 hero */
  .s0-wrap { padding: 0 18px; gap: 24px; }

  .s0-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    letter-spacing: -0.5px;
  }

  .s0-sub { font-size: 13px; }

  .s0-stats-row {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .s0-stat { padding: 6px 14px; }
  .s0-stat-div { display: none; }

  .s0-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .s0-pillar { padding: 22px 20px; }

  /* Deep-dive slides */
  .offer-deep {
    flex-direction: column;
    padding: 0 18px;
    gap: 28px;
  }

  .offer-deep-left,
  .offer-deep-right {
    width: 100%;
    min-width: 0;
  }

  .omock { max-width: 100%; }

  /* Marketing success slide */
  .mkt-success-slide {
    flex-direction: column;
    padding: 0 18px;
    gap: 24px;
  }

  .mkt-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* ── Partners section ── */
  .partners-outer { padding: 48px 0 32px; }

  .adssection {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .advertspot {
    scroll-snap-align: start;
    min-width: 80vw;
  }

  /* ── Pricing ── */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .pricing-card.popular {
    transform: none;
  }

  /* ── Footer ── */
  .site-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 32px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* ── Quick nav — already hidden, but ensure no overflow ── */
  .quick-nav { display: none !important; }

  /* ── Back to top button ── */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  /* ── Modals ── */
  .contact-box {
    padding: 28px 20px;
    width: 95%;
  }

  /* ── Corner logo ── */
  .corner-logo { display: none; }

  /* ── Scroll reveal — disable heavy animations on mobile ── */
  .sr { opacity: 1 !important; transform: none !important; }

  /* ── Services heading size fix ── */
  .services-heading {
    font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem !important; }
  .s0-title   { font-size: 1.5rem !important; }
  .offer-prev, .offer-next { width: 32px; height: 32px; font-size: 13px; }
  .s0-stat-n  { font-size: 1.1rem; }
}

/* =====================================================
   MOBILE OPTIMISATION — Full safety layer
   ===================================================== */

@media (max-width: 768px) {

  /* ── General ── */
  html, body { overflow-x: hidden; }

  /* ── Hero ── */
  .hero {
    padding: 100px 20px 60px;
    min-height: 100svh;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    min-height: auto;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 14px !important;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons a,
  .hero-buttons button {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  /* ── Offer carousel section ── */
  .offer-carousel-section {
    min-height: auto;
    padding: 48px 0 32px;
  }

  .offer-carousel-controls {
    gap: 10px;
    padding: 20px 0 0;
  }

  .offer-prev, .offer-next {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  /* Slide 0 hero */
  .s0-wrap { padding: 0 18px; gap: 24px; }

  .s0-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    letter-spacing: -0.5px;
  }

  .s0-sub { font-size: 13px; }

  .s0-stats-row {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .s0-stat { padding: 6px 14px; }
  .s0-stat-div { display: none; }

  .s0-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .s0-pillar { padding: 22px 20px; }

  /* Deep-dive slides */
  .offer-deep {
    flex-direction: column;
    padding: 0 18px;
    gap: 28px;
  }

  .offer-deep-left,
  .offer-deep-right {
    width: 100%;
    min-width: 0;
  }

  .omock { max-width: 100%; }

  /* Marketing success slide */
  .mkt-success-slide {
    flex-direction: column;
    padding: 0 18px;
    gap: 24px;
  }

  .mkt-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* ── Partners section ── */
  .partners-outer { padding: 48px 0 32px; }

  .adssection {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .advertspot {
    scroll-snap-align: start;
    min-width: 80vw;
  }

  /* ── Pricing ── */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .pricing-card.popular {
    transform: none;
  }

  /* ── Footer ── */
  .site-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 32px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* ── Quick nav — already hidden, but ensure no overflow ── */
  .quick-nav { display: none !important; }

  /* ── Back to top button ── */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  /* ── Modals ── */
  .contact-box {
    padding: 28px 20px;
    width: 95%;
  }

  /* ── Corner logo ── */
  .corner-logo { display: none; }

  /* ── Scroll reveal — disable heavy animations on mobile ── */
  .sr { opacity: 1 !important; transform: none !important; }

  /* ── Services heading size fix ── */
  .services-heading {
    font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem !important; }
  .s0-title   { font-size: 1.5rem !important; }
  .offer-prev, .offer-next { width: 32px; height: 32px; font-size: 13px; }
  .s0-stat-n  { font-size: 1.1rem; }
}

/* ── PROMO BANNER MOBILE ── */
@media (max-width: 768px) {

    .promo-banner {
        height: auto;
        min-height: 36px;
        padding: 8px 36px 8px 12px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .promo-banner-text {
        font-size: 11px;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }

    .promo-banner-btn {
        font-size: 11px;
        padding: 4px 10px;
    }

    .promo-banner-close {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .account-icon {
        top: 12px !important;
    }

}