/* ============================================================
   MAIN WEBSITE STYLES — JN Studio
   Full-page premium design system
   ============================================================ */

/* ── Shared Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.desktop-only { display: inline; }

/* Reveal animation base */
.reveal,
.reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Gradient text utility */
.grad-text {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #8b5cf6 0%,
    #ec4899 30%,
    #06b6d4 65%,
    #10b981 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease infinite;
}

/* Section shared */
.section {
  padding: 72px 0;
}
.section--alt {
  background: #080b14;
  position: relative;
}
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 40px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5.8vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: #f1f5f9;
  margin-bottom: 18px;
}

.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: #64748b;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

.section-footer {
  text-align: center;
  margin-top: 56px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              background 0.2s, color 0.2s, border-color 0.2s;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }

.btn--glow {
  position: relative;
  isolation: isolate;
  background: linear-gradient(120deg, #f43f5e, #f97316, #facc15, #34d399, #22d3ee, #818cf8, #e879f9, #f43f5e);
  background-size: 300% 300%;
  animation: borderSpin 3s linear infinite;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 5px 0 0 rgba(0,0,0,0.45),
    0 8px 28px rgba(139,92,246,0.5),
    0 0 40px rgba(139,92,246,0.22);
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.5));
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.25s cubic-bezier(0.16,1,0.3,1),
              filter 0.25s;
}
.btn--glow::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 38px;
  background: linear-gradient(145deg, #1c0a36 0%, #0f172a 55%, #1a0e30 100%);
  z-index: -1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.25);
}
.btn--glow:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 7px 0 0 rgba(0,0,0,0.45),
    0 14px 40px rgba(139,92,246,0.65),
    0 0 60px rgba(139,92,246,0.35);
  filter: drop-shadow(0 0 18px rgba(139,92,246,0.75));
}
.btn--glow:hover::before { background: linear-gradient(145deg, #200c40 0%, #111827 55%, #1e1035 100%); }
.btn--glow:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 2px 0 0 rgba(0,0,0,0.45),
    0 4px 16px rgba(139,92,246,0.4);
  filter: drop-shadow(0 0 6px rgba(139,92,246,0.4));
}

.btn--outline {
  background: transparent;
  color: #94a3b8;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.btn--outline:hover {
  color: #f1f5f9;
  border-color: rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.06);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #f1f5f9;
}

.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--lg { padding: 15px 34px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding: calc(72px + 40px) 0 80px;
  position: relative;
}

/* Full-width background */
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #080b14;
}

/* Animated gradient orbs */
.hero__orb { display: none; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.04); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

/* Dot grid */
.hero__grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #f1f5f9;
  margin-bottom: 24px;
  text-align: center;
  white-space: nowrap;
}

@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 0%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(139,92,246,0.55)) drop-shadow(0 4px 12px rgba(236,72,153,0.3)); }
  33%       { filter: drop-shadow(0 0 28px rgba(6,182,212,0.6))  drop-shadow(0 4px 16px rgba(139,92,246,0.4)); }
  66%       { filter: drop-shadow(0 0 24px rgba(245,158,11,0.5)) drop-shadow(0 4px 14px rgba(16,185,129,0.4)); }
}

.hero__title-gradient {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #8b5cf6 0%,
    #ec4899 20%,
    #06b6d4 40%,
    #10b981 60%,
    #f59e0b 80%,
    #8b5cf6 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
  position: relative;
}

.hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  color: #f1f5f9;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 16px;
  text-align: center;
}

.hero__hosting {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #a78bfa;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
  padding: 10px 28px;
  display: inline-block;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.01em;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0d1120;
  margin-right: -10px;
  object-fit: cover;
}

.hero__stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.hero__proof-text {
  font-size: 12.5px;
  color: #64748b;
}
.hero__proof-text strong { color: #94a3b8; }

/* Mockup */
.hero__mockup-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup__browser {
  width: 100%;
  max-width: 480px;
  background: #0f1522;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5),
              0 0 0 1px rgba(139,92,246,0.06),
              0 0 60px rgba(139,92,246,0.06);
  animation: floatBrowser 6s ease-in-out infinite;
}

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

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0a0e1a;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup__dot--red    { background: #ff5f57; }
.mockup__dot--yellow { background: #febc2e; }
.mockup__dot--green  { background: #28c840; }

.mockup__url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #475569;
  text-align: center;
  margin-left: 6px;
}

.mockup__screen {
  padding: 20px;
}

.mockup__hero-block {
  background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(6,182,212,0.04) 100%);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 14px;
}

.mockup__line {
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.mockup__line--title { width: 70%; height: 14px; background: rgba(255,255,255,0.12); }
.mockup__line--sub   { width: 90%; }
.mockup__line--sub.short { width: 60%; }

.mockup__btn-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.mockup__btn {
  height: 28px;
  width: 90px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
}
.mockup__btn--filled {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border: none;
}

.mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__card-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(6,182,212,0.1));
}

.mockup__card-lines div {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 5px;
}
.mockup__card-lines div:last-child { width: 60%; }

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,17,32,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: floatBadge 5s ease-in-out infinite;
}

.float-badge--tl {
  top: -20px;
  left: -30px;
  animation-delay: -1s;
}
.float-badge--br {
  bottom: 10px;
  right: -20px;
  animation-delay: -2.5s;
}

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

.float-badge__icon { font-size: 22px; }
.float-badge__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #f1f5f9;
  line-height: 1;
}
.float-badge__label {
  font-size: 10.5px;
  color: #64748b;
  margin-top: 1px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #334155;
  letter-spacing: 0.05em;
}

.hero__scroll-wheel {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-wheel::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(139,92,246,0.6);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%  { opacity: 0; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

/* ── MARQUEE ───────────────────────────────────────────────── */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
  overflow: hidden;
  position: relative;
}

.marquee-label {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #334155;
  white-space: nowrap;
  z-index: 2;
}

.marquee-track {
  overflow: hidden;
  padding: 0 200px;
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-inner span {
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  padding: 0 16px;
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-inner span:hover { color: #94a3b8; }
.marquee-inner .sep { color: #1e293b; padding: 0 2px; }

/* ── What's Included ──────────────────────────────────────── */
.included-section {
  padding: 72px 0 56px;
  position: relative;
}

.included-section__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(200, 210, 240, 0.78);
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(13, 17, 32, 0.45);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 16px;
  padding: 22px 24px;
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.included-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.included-item__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.4);
}

.included-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.included-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #f0f4ff;
  line-height: 1.3;
}

.included-item__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(180, 190, 220, 0.65);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ── STATS ─────────────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-card {
  background: #0a0e1a;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: background 0.2s;
}
.stat-card:hover { background: #0d1120; }
.stat-card:hover .stat-num { background: linear-gradient(135deg, #8b5cf6, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  letter-spacing: -2px;
  transition: 0.3s;
}

.stat-plus {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #8b5cf6;
  vertical-align: super;
}

.stat-label {
  font-size: 13px;
  color: #475569;
  margin-top: 10px;
  font-weight: 500;
}

/* ── FOUNDER MESSAGE ────────────────────────────────────────── */
.founder-msg-section {
  padding: 200px 0 60px;
}
.founder-msg-card {
  position: relative;
  background: rgba(13,17,32,0.35);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 24px;
  padding: 48px 56px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.founder-msg-card__glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.founder-msg__eyebrow {
  display: block;
  margin-bottom: 28px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #f472b6 0%, #e879f9 40%, #a78bfa 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25;
}
.founder-msg__rainbow {
  background: linear-gradient(90deg,
    #ff6ec7, #ff9a3c, #ffe34d, #4dff91,
    #4dc8ff, #a78bfa, #ff6ec7, #ff9a3c);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: founderRainbow 3s linear infinite;
  filter: drop-shadow(0 0 10px rgba(244,114,182,0.8)) drop-shadow(0 0 22px rgba(167,139,250,0.6));
}
@keyframes founderRainbow {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
.founder-msg__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.founder-msg__body--thanks {
  font-style: italic;
  color: #a78bfa;
  font-size: 16px;
}
.founder-msg__sig {
  margin-top: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ── Shared: 3D rainbow brand name ────────────────────────── */
.brand-rainbow {
  display: inline-block;
  background: linear-gradient(90deg,
    #ff4d4d, #ff9900, #ffe600, #00cc66,
    #00ccff, #5064ff, #cc50ff, #ff4d4d
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    brandRainbowShift 3s linear infinite,
    brand3DTilt 4s ease-in-out infinite;
  filter:
    drop-shadow(0 0 6px rgba(200, 80, 255, 0.45))
    drop-shadow(0 0 14px rgba(0, 200, 255, 0.3));
}

@keyframes brandRainbowShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes brand3DTilt {
  0%,100% { transform: perspective(300px) rotateY(0deg)   scale(1); }
  25%     { transform: perspective(300px) rotateY(8deg)   scale(1.04); }
  50%     { transform: perspective(300px) rotateY(0deg)   scale(1.06); }
  75%     { transform: perspective(300px) rotateY(-8deg)  scale(1.04); }
}
@media (max-width: 640px) {
  .founder-msg-card { padding: 36px 28px; }
  .founder-msg__body { font-size: 15px; }
}

/* ── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(13, 17, 32, 0.35);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.3s ease-out, background 0.35s;
}
/* Rainbow edge glow — pulses on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(120deg, #8b5cf6, #f0abfc, #67e8f9, #34d399, #f59e0b, #ec4899, #8b5cf6);
  background-size: 300% 300%;
  animation: borderSpin 4s linear infinite;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s;
}
.service-card:hover {
  background: rgba(15, 10, 35, 0.55);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.3),
    0 4px 16px rgba(139,92,246,0.1),
    0 0 0 1px rgba(139,92,246,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.service-card:hover::after  { opacity: 0.25; }

.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}
.service-card__icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #8b5cf6;
}
.service-card:hover .service-card__icon-wrap {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.3);
}

.service-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.service-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 13.5px;
  font-weight: 600;
  color: #6366f1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.service-card__link span { transition: transform 0.2s; }
.service-card__link:hover { color: #8b5cf6; }
.service-card__link:hover span { transform: translateX(4px); }

/* CTA card variant */
.service-card--cta {
  background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(6,182,212,0.06) 100%);
  border-color: rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card--cta:hover { border-color: rgba(139,92,246,0.4); }

.service-card__cta-inner { text-align: center; }
.service-card__cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6366f1;
  margin-bottom: 12px;
}
.service-card__cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

/* ── PORTFOLIO GRID ────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.port-card { border-radius: 18px; overflow: hidden; position: relative; }
.port-card--wide { grid-column: span 2; }

.port-card__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.port-card:hover .port-card__img { transform: scale(1.04); }

/* Unique gradient backgrounds per card (placeholder art) */
.port-card__img--1 { background: linear-gradient(135deg, #1a1040 0%, #2d1b4e 35%, #0f3460 100%), url(''); background-blend-mode: overlay; }
.port-card__img--2 { background: linear-gradient(135deg, #0a2940 0%, #104060 50%, #0f2030 100%); }
.port-card__img--3 { background: linear-gradient(135deg, #1a0a30 0%, #3d1073 50%, #150a20 100%); }
.port-card__img--4 { background: linear-gradient(135deg, #200a0a 0%, #5c1515 50%, #2a0808 100%); }
.port-card__img--5 { background: linear-gradient(135deg, #0a2010 0%, #0d4020 50%, #061408 100%); }

/* Add subtle noise texture */
.port-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.port-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.port-card:hover .port-card__overlay { opacity: 1; }

.port-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(139,92,246,0.25);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c4b5fd;
  margin-bottom: 8px;
  align-self: flex-start;
}

.port-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.port-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  align-self: flex-start;
  transition: background 0.2s;
}
.port-card__btn:hover { background: rgba(255,255,255,0.2); }

/* ── PROCESS ───────────────────────────────────────────────── */
.process-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(6,182,212,0.08));
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #8b5cf6;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step__content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.process-step__content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  max-width: 190px;
}

.process-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(139,92,246,0.3), rgba(6,182,212,0.2));
  margin-top: -48px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366f1;
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.price-card {
  background: #0d1120;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  border-color: rgba(139,92,246,0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.price-card--popular {
  background: linear-gradient(180deg, #130f2a 0%, #0d1120 100%);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.1),
              0 32px 64px rgba(0,0,0,0.4),
              0 0 60px rgba(139,92,246,0.06);
  transform: translateY(-8px);
}
.price-card--popular:hover { transform: translateY(-12px); }

.price-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.price-card__header {
  margin-bottom: 24px;
}

.price-card__icon { font-size: 28px; margin-bottom: 12px; }

.price-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
  letter-spacing: -0.8px;
}

.price-card__desc {
  font-size: 13px;
  color: #64748b;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-card__amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2.5px;
  display: inline-block;
  background: linear-gradient(90deg,
    #ff4d4d, #ff9900, #ffe600, #00cc66,
    #00ccff, #5064ff, #cc50ff, #ff4d4d
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    brandRainbowShift 3s linear infinite,
    brand3DTilt 4s ease-in-out infinite;
  filter:
    drop-shadow(0 0 8px rgba(200, 80, 255, 0.5))
    drop-shadow(0 0 18px rgba(0, 200, 255, 0.35));
}

.price-card--popular .price-card__amount {
  filter:
    drop-shadow(0 0 12px rgba(200, 80, 255, 0.7))
    drop-shadow(0 0 28px rgba(0, 200, 255, 0.5));
}

.price-card__period {
  font-size: 13px;
  color: #475569;
}

.price-card__features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #94a3b8;
}

.check { color: #10b981; font-size: 13px; flex-shrink: 0; }
.muted { color: #334155; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: #475569;
  margin-top: 32px;
}
.link-grad {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.pricing-details-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(167, 139, 250, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  padding: 10px 24px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pricing-details-btn:hover {
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.55);
  background: rgba(139, 92, 246, 0.07);
}

/* ── TESTIMONIALS MARQUEE ──────────────────────────────────── */
.testi-section {
  padding: 72px 0 56px;
  overflow: hidden;
}

.testi-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
  will-change: transform;
}
.testi-track--left  { animation: scrollLeft  40s linear infinite; }
.testi-track--right { animation: scrollRight 40s linear infinite; }
.testi-marquee-wrap:hover .testi-track { animation-play-state: paused; }

@keyframes borderSpin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.testi-card {
  flex-shrink: 0;
  width: 340px;
  border-radius: 20px;
  padding: 30px 30px 26px; /* 28px content + 2px gradient border */
  position: relative;
  background: linear-gradient(120deg, #a78bfa, #f0abfc, #67e8f9, #34d399, #f59e0b, #f472b6, #a78bfa);
  background-size: 300% 300%;
  animation: borderSpin 4s linear infinite;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(139,92,246,0.15);
  pointer-events: none;
  z-index: 1;
}
/* inner fill so the gradient only shows as border */
.testi-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: #0d1120;
  z-index: 0;
}
/* push all direct children above the ::after fill */
.testi-card > * {
  position: relative;
  z-index: 1;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(167,139,250,0.25), 0 0 40px rgba(240,171,252,0.15);
  animation-duration: 1.5s;
}

.testi-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testi-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(139,92,246,0.3);
}

.testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
}

.testi-role {
  font-size: 12px;
  color: #475569;
  margin-top: 2px;
}

/* ── 3D CONTACT FORM ───────────────────────────────────────── */
.contact-3d {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: #080b14;
}
.contact-3d__ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.contact-3d__ambient--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.contact-3d__ambient--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,171,252,0.1) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}

.contact-3d__scene {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  perspective: 1600px;
  max-width: 780px;
  margin: 0 auto;
}

/* The glass card */
.contact-3d__card {
  position: relative;
  border-radius: 28px;
  padding: 52px; /* 48px content + 4px gradient border */
  transform-style: preserve-3d;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s;
  /* Rainbow gradient border via background */
  background: linear-gradient(120deg, #a78bfa, #f0abfc, #67e8f9, #34d399, #f59e0b, #f472b6, #a78bfa);
  background-size: 300% 300%;
  animation: borderSpin 3s linear infinite;
  box-shadow:
    0 0 0 4px transparent,
    0 0 40px rgba(167,139,250,0.35),
    0 0 80px rgba(240,171,252,0.2),
    24px 24px 60px rgba(0,0,0,0.5);
}
/* Dark inner fill so only the border shows */
.contact-3d__card::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 24px;
  background: #0d1120;
  backdrop-filter: blur(20px);
  z-index: 0;
}
/* Push all children above the fill layer */
.contact-3d__card > * {
  position: relative;
  z-index: 1;
}
.contact-3d__card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateZ(12px);
  box-shadow:
    0 0 60px rgba(167,139,250,0.5),
    0 0 120px rgba(240,171,252,0.3),
    0 40px 100px rgba(0,0,0,0.5);
  animation-duration: 1.2s;
}
.contact-3d__card-glow {
  display: none; /* replaced by the gradient border */
}

/* Fields */
.cf-row { display: flex; gap: 20px; margin-bottom: 28px; }
.cf-row--2 .cf-field { flex: 1; }
.cf-row .cf-field { flex: 1; }
.cf-row--footer {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  margin-top: 8px;
}
.cf-field { position: relative; }
.cf-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 20px 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #f1f5f9;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.cf-textarea { resize: none; min-height: 110px; }
.cf-input:focus {
  border-color: rgba(167,139,250,0.5);
  background: rgba(167,139,250,0.06);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.1);
}
.cf-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #4b5e82;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
.cf-textarea ~ .cf-label { top: 20px; transform: none; }
.cf-input:focus ~ .cf-label,
.cf-input:not(:placeholder-shown) ~ .cf-label {
  top: 10px;
  transform: none;
  font-size: 10px;
  color: #a78bfa;
  letter-spacing: .5px;
}
.cf-textarea:focus ~ .cf-label,
.cf-textarea:not(:placeholder-shown) ~ .cf-label {
  top: 7px;
  font-size: 10px;
  color: #a78bfa;
}
.cf-line {
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #a78bfa, #f0abfc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.cf-input:focus ~ .cf-line { transform: scaleX(1); }
.cf-reply-note {
  font-size: 13px;
  color: #475569;
  font-family: 'DM Sans', sans-serif;
}

/* 3D Submit Button */
.cf-btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transform-style: preserve-3d;
  transition: transform 0.15s, filter 0.15s;
  filter: drop-shadow(0 8px 24px rgba(139,92,246,0.4));
}
.cf-btn-3d:hover { filter: drop-shadow(0 12px 32px rgba(139,92,246,0.6)); transform: translateY(-3px); }
.cf-btn-3d:active { transform: translateY(2px); filter: drop-shadow(0 4px 12px rgba(139,92,246,0.3)); }
.cf-btn-3d__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c026d3 100%);
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  z-index: 1;
  transform: translateZ(6px);
  transition: background 0.3s;
}
.cf-btn-3d__top svg { width: 16px; height: 16px; }
.cf-btn-3d:hover .cf-btn-3d__top {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #a21caf 100%);
}
.cf-btn-3d__side {
  position: absolute;
  inset: 6px 0 -6px 4px;
  background: linear-gradient(135deg, #5b21b6, #7e22ce);
  border-radius: 14px;
  z-index: 0;
}
.cf-btn-3d__bottom {
  position: absolute;
  inset: 10px 2px -2px 2px;
  background: rgba(0,0,0,0.3);
  border-radius: 14px;
  z-index: -1;
  filter: blur(8px);
}

/* Contact form result message */
.cf-result {
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}
.cf-result--success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
}
.cf-result--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
@keyframes cfSpin {
  to { transform: rotate(360deg); }
}

/* Right info column */
.contact-3d__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.ci-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.3s, background 0.3s;
}
.ci-block:hover {
  border-color: rgba(167,139,250,0.25);
  background: rgba(167,139,250,0.06);
}
.ci-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(240,171,252,0.1));
  border: 1px solid rgba(167,139,250,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label { font-size: 11px; color: #47556a; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ci-value { font-size: 14px; color: #cbd5e1; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: color 0.2s; }
a.ci-value:hover { color: #a78bfa; }

/* ── QR CODE SECTION ────────────────────────────────────────── */
.qr-section {
  padding: 72px 0;
  background: #080b14;
}
.qr-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.qr-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(139,92,246,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  min-width: 260px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.qr-card:hover {
  transform: translateY(-8px) rotateZ(-1deg);
  box-shadow: 0 40px 80px rgba(139,92,246,0.25);
}
.qr-card__glow {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #a78bfa, #f0abfc, #67e8f9, #a78bfa);
  background-size: 300% 300%;
  animation: borderSpin 4s linear infinite;
  z-index: -1;
  opacity: 0.7;
}
.qr-frame {
  position: relative;
  display: inline-flex;
  padding: 12px;
  background: #0d1120;
  border-radius: 16px;
  margin-bottom: 20px;
}
.qr-frame__corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: #a78bfa;
  border-style: solid;
}
.qr-frame__corner--tl { top: 0; left: 0;  border-width: 3px 0 0 3px; border-radius: 6px 0 0 0; }
.qr-frame__corner--tr { top: 0; right: 0; border-width: 3px 3px 0 0; border-radius: 0 6px 0 0; }
.qr-frame__corner--bl { bottom: 0; left: 0;  border-width: 0 0 3px 3px; border-radius: 0 0 0 6px; }
.qr-frame__corner--br { bottom: 0; right: 0; border-width: 0 3px 3px 0; border-radius: 0 0 6px 0; }
.qr-img {
  display: block;
  border-radius: 8px;
  width: 180px; height: 180px;
}
.qr-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.qr-sub {
  font-size: 12px;
  color: #475569;
  font-family: 'DM Sans', sans-serif;
}
.qr-eyebrow { margin-bottom: 12px; }
.qr-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1.15;
  margin-bottom: 20px;
}
.qr-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 28px;
}
.qr-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.qr-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 50px;
  padding: 6px 16px;
}

@media (max-width: 900px) {
  .contact-3d__scene { grid-template-columns: 1fr; }
  .contact-3d__info { flex-direction: row; flex-wrap: wrap; }
  .ci-block { flex: 1 1 calc(50% - 12px); }
  .qr-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .qr-badges { justify-content: center; }
  .cf-row--2 { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .contact-3d__card { padding: 28px 20px; }
  .cf-row { flex-direction: column; }
  .cf-row--footer { flex-direction: column; gap: 20px; align-items: flex-start; }
  .ci-block { flex: 1 1 100%; }
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #080b14;
  text-align: center;
}

.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.cta-banner__orb--1 {
  width: 500px; height: 500px;
  background: rgba(139,92,246,0.12);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.cta-banner__orb--2 {
  width: 400px; height: 400px;
  background: rgba(6,182,212,0.07);
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  animation-delay: -5s;
}

.cta-banner__inner { position: relative; z-index: 1; }

.cta-banner__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 16px 0 20px;
}

.cta-banner__sub {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-banner__reply {
  font-size: 13px;
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════
   START YOUR PROJECT — PayPal Payment Section
   ═══════════════════════════════════════════════════════════ */
.pay-section {
  position: relative;
  padding: 96px 0;
  background: #0a0e1a;
  overflow: hidden;
  text-align: center;
}
.pay-section__orb--1,
.pay-section__orb--2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
}
.pay-section__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  top: -120px;
  left: -100px;
}
.pay-section__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -80px;
  right: -80px;
}
.pay-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pay-section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.pay-section__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0;
  line-height: 1.7;
}
.pay-card {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 36px 48px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pay-card__deposit-msg {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.01em;
}
.pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  background: linear-gradient(120deg, #f43f5e, #f97316, #facc15, #34d399, #22d3ee, #818cf8, #e879f9, #f43f5e);
  background-size: 300% 300%;
  animation: borderSpin 3s linear infinite;
  position: relative;
  isolation: isolate;
  box-shadow: 0 5px 0 0 rgba(0,0,0,0.45), 0 8px 28px rgba(139,92,246,0.5);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, filter 0.25s;
}
.pay-btn::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 38px;
  background: linear-gradient(145deg, #1c0a36 0%, #0f172a 55%, #1a0e30 100%);
  z-index: -1;
}
.pay-btn:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 32px rgba(139,92,246,0.6));
}
.pay-btn:active {
  transform: translateY(2px);
}
.pay-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.pay-card__secure-msg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
@media (max-width: 600px) {
  .pay-card {
    padding: 28px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .pay-btn {
    width: 100%;
    padding: 16px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Complete Redesign
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #03050d;
  position: relative;
  overflow: hidden;
}

/* Ambient background glows */
.footer__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.footer__bg-glow--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(109,40,217,0.18) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}
.footer__bg-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  top: 0;
  right: -80px;
}

/* Golden star particles */
.footer__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.footer__star {
  position: absolute;
  background: #ffd700;
  clip-path: polygon(50% 0%, 53% 47%, 100% 50%, 53% 53%, 50% 100%, 47% 53%, 0% 50%, 47% 47%);
  box-shadow: 0 0 6px 2px rgba(255,215,0,0.6);
  animation: starTwinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0;   transform: scale(0.15) rotate(var(--rot, 0deg)); }
  20%      { opacity: 0.3; transform: scale(0.6)  rotate(calc(var(--rot, 0deg) + 36deg)); }
  50%      { opacity: 1;   transform: scale(1)    rotate(calc(var(--rot, 0deg) + 72deg)); }
  80%      { opacity: 0.3; transform: scale(0.6)  rotate(calc(var(--rot, 0deg) + 108deg)); }
}

/* ── MEGA CTA HEADLINE ─────────────────────────────────── */
.footer__hero {
  position: relative;
  z-index: 1;
  padding: 90px 0 72px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer__hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer__hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #a78bfa;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.footer__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16,185,129,0.8), 0 0 24px rgba(16,185,129,0.4);
  flex-shrink: 0;
  animation: dotPulse 2.4s ease infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}

.footer__hero-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.92;
  letter-spacing: -5px;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Solid white fill lines */
.fh-fill {
  color: #f0f4ff;
  display: block;
}

/* Outlined/hollow line — the visual wow accent */
.fh-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(139,92,246,0.85);
  text-stroke: 2px rgba(139,92,246,0.85);
  background: linear-gradient(90deg, #8b5cf6, #ec4899, #06b6d4);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 5s ease infinite;
}

.footer__hero-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.2px;
  box-shadow: 0 0 32px rgba(124,58,237,0.45), 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.footer__cta-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.footer__cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 48px rgba(124,58,237,0.65), 0 12px 32px rgba(0,0,0,0.5);
}
.footer__cta-btn:hover svg { transform: translateX(4px); }

.footer__hero-reply {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #64748b;
}

/* ── MARQUEE TICKER ────────────────────────────────────── */
.footer__marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(90deg, #1e0a3c 0%, #2d0a4e 25%, #3b0764 50%, #2d0a4e 75%, #1e0a3c 100%);
  border-top: 1px solid rgba(139,92,246,0.2);
  border-bottom: 1px solid rgba(139,92,246,0.2);
  padding: 20px 0;
}
.footer__marquee::before,
.footer__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.footer__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #03050d, transparent);
}
.footer__marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #03050d, transparent);
}

.footer__marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-family: 'Syne', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(196,181,253,0.85);
}

.footer__marquee-track span:not(.footer__marquee-sep) {
  background: linear-gradient(90deg, #c4b5fd, #f0abfc, #67e8f9);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s ease infinite;
}

.footer__marquee-sep {
  color: rgba(139,92,246,0.5) !important;
  -webkit-text-fill-color: rgba(139,92,246,0.5) !important;
  font-size: 10px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV GRID ──────────────────────────────────────────── */
.footer__grid-wrap {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin: 0 0 20px;
}

.footer__email-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #7c6aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__email-link:hover { color: #a78bfa; }

/* ── Link columns ──────────────────────────────────────── */
.footer__col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: none;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #a78bfa, #f0abfc, #67e8f9, #a78bfa);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s, gap 0.2s;
}
.footer__col a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: #8b5cf6;
  transition: width 0.25s ease, margin-right 0.25s ease;
  margin-right: 0;
  vertical-align: middle;
}
.footer__col a:hover {
  color: #e2e8f0;
}
.footer__col a:hover::before {
  width: 12px;
  margin-right: 6px;
}

/* ── BOTTOM BAR ────────────────────────────────────────── */
.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #3d4e6a;
}

.footer__bottom-brand {
  font-weight: 600;
}

.footer__heart {
  color: #ec4899;
  -webkit-text-fill-color: #ec4899;
  display: inline-block;
  animation: heartbeat 1.8s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.3); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.2); }
  56%       { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   3D GLASS SOCIAL BUTTONS — shared base
   ═══════════════════════════════════════════════════════════ */

.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer__social {
  --glow-color: rgba(139,92,246,0.8);
  --glow-soft:  rgba(139,92,246,0.25);
  --icon-color: rgba(255,255,255,0.75);

  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  isolation: isolate;

  /* Glass body */
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0.08) 100%
  );
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15);

  /* 3D depth shadow stack */
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.2) inset,
    0 -1px 0 0 rgba(0,0,0,0.3) inset,
    0 6px 20px rgba(0,0,0,0.4),
    0 2px 6px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.05);

  color: var(--icon-color);
  transition:
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.35s ease,
    color 0.3s ease;
  transform: translateY(0) scale(1);
}

/* Top-left glass shine reflection */
.footer__social::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.06) 35%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}

/* Neon glow halo beneath the button */
.footer__social::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--glow-soft);
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(0.85);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 3;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
  filter: drop-shadow(0 0 0 transparent);
}

/* HOVER state */
.footer__social:hover {
  transform: translateY(-6px) scale(1.12);
  color: #fff;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.3) inset,
    0 -1px 0 0 rgba(0,0,0,0.4) inset,
    0 16px 32px rgba(0,0,0,0.45),
    0 4px 12px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1),
    0 0 24px var(--glow-soft);
}
.footer__social:hover::after {
  opacity: 1;
  transform: scale(1.05);
}
.footer__social:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px var(--glow-color));
}

/* Platform-specific neon colours */
.footer__social--instagram {
  --glow-color: rgba(225, 48, 108, 0.9);
  --glow-soft:  rgba(225, 48, 108, 0.35);
  --icon-color: rgba(245, 180, 180, 0.8);
}
.footer__social--instagram:hover {
  background: linear-gradient(
    145deg,
    rgba(225,48,108,0.22) 0%,
    rgba(131,58,180,0.14) 50%,
    rgba(247,119,55,0.16) 100%
  );
  border-color: rgba(225,48,108,0.35);
}

.footer__social--linkedin {
  --glow-color: rgba(10, 102, 194, 0.9);
  --glow-soft:  rgba(10, 102, 194, 0.4);
  --icon-color: rgba(160, 200, 255, 0.8);
}
.footer__social--linkedin:hover {
  background: linear-gradient(
    145deg,
    rgba(10,102,194,0.22) 0%,
    rgba(10,102,194,0.08) 100%
  );
  border-color: rgba(10,102,194,0.35);
}

.footer__social--twitter {
  --glow-color: rgba(255,255,255,0.85);
  --glow-soft:  rgba(200,200,220,0.3);
  --icon-color: rgba(220,220,240,0.8);
}
.footer__social--twitter:hover {
  background: linear-gradient(
    145deg,
    rgba(200,200,220,0.2) 0%,
    rgba(200,200,220,0.07) 100%
  );
  border-color: rgba(220,220,240,0.3);
}

.footer__social--github {
  --glow-color: rgba(200, 160, 255, 0.85);
  --glow-soft:  rgba(139, 92, 246, 0.35);
  --icon-color: rgba(200,185,230,0.8);
}
.footer__social--github:hover {
  background: linear-gradient(
    145deg,
    rgba(139,92,246,0.2) 0%,
    rgba(99,102,241,0.1) 100%
  );
  border-color: rgba(139,92,246,0.35);
}

.footer__col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: none;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #a78bfa, #f0abfc, #67e8f9, #a78bfa);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8896aa;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer__col a:hover {
  color: #a78bfa;
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #64748b;
}

.footer__bottom-brand {
  font-weight: 600;
}

.footer__bottom-love {
  color: #64748b;
}

.footer__heart {
  color: #ec4899;
  -webkit-text-fill-color: #ec4899;
  display: inline-block;
  animation: heartbeat 1.8s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.3); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.2); }
  56%       { transform: scale(1); }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    text-align: center;
  }
  .hero__inner { align-items: center; }
  .hero__mockup-wrap { max-width: 440px; margin: 0 auto; }
  .float-badge--tl { top: -16px; left: -10px; }
  .float-badge--br { bottom: 0; right: -10px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card--popular { transform: none; }

  .process-timeline { flex-direction: column; gap: 32px; max-width: 500px; }
  .process-step { flex-direction: row; text-align: left; }
  .process-connector { width: 2px; height: 32px; flex: 0 0 32px; background: linear-gradient(180deg, rgba(139,92,246,0.3), rgba(6,182,212,0.2)); }
  .process-connector::after { bottom: -4px; top: auto; right: -3px; }

  .testi-card { width: 280px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid .footer__col:not(:first-child) { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-title { letter-spacing: -1.2px; }
  .section-sub { font-size: 15px; }

  .hero {
    padding: calc(64px + 24px) 20px 60px;
    min-height: auto;
  }
  .hero__title { letter-spacing: -1.8px; white-space: normal; }
  .hero__ctas { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .port-card--wide { grid-column: span 1; }
  .port-card { height: 220px; }
  .port-card__overlay { opacity: 1; }

  .desktop-only { display: none; }

  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer__hero-heading { letter-spacing: -2.5px; }
  .fh-outline { -webkit-text-stroke-width: 1.5px; }
  .footer__grid .footer__col:not(:first-child) { display: block; }
  .footer__grid .footer__col h4 { margin-bottom: 16px; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .orb { width: 48px; height: 48px; }
  .orb svg { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   FOLLOW THE FUN — 3D Orb Social Buttons
   ═══════════════════════════════════════════════════════════ */

.follow-section {
  padding: 72px 0 80px;
  background: #080b14;
  position: relative;
}
.follow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.follow-section__title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #c4b5fd;
  letter-spacing: -0.3px;
  margin: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.follow-section__emoji {
  font-size: 24px;
  line-height: 1;
}

.follow-section__orbs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

/* ── Float / bounce keyframes ─────────────────────────────── */
@keyframes orbFloat {
  0%   { transform: translateY(0px) scale(1); }
  30%  { transform: translateY(-14px) scale(1.04); }
  60%  { transform: translateY(-6px) scale(1.01); }
  80%  { transform: translateY(-11px) scale(1.03); }
  100% { transform: translateY(0px) scale(1); }
}
@keyframes orbShadowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.2); }
}

/* ── Orb base ─────────────────────────────────────────────── */
.orb {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  isolation: isolate;
  cursor: pointer;
  color: #fff;
  animation: orbFloat 3.6s ease-in-out infinite;
  transition: filter 0.3s ease;
}
/* Stagger each orb's float timing */
.orb:nth-child(1) { animation-delay: 0s; }
.orb:nth-child(2) { animation-delay: -0.6s; }
.orb:nth-child(3) { animation-delay: -1.2s; }
.orb:nth-child(4) { animation-delay: -1.8s; }
.orb:nth-child(5) { animation-delay: -2.4s; }
.orb:nth-child(6) { animation-delay: -3.0s; }

/* Bottom shadow that grows/shrinks in sync */
.orb::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  filter: blur(10px);
  animation: orbShadowPulse 3.6s ease-in-out infinite;
  animation-delay: inherit;
  z-index: -2;
}

/* Glass shine highlight — thick multi-layer glass */
.orb__shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    /* primary bright gloss top-left */
    radial-gradient(ellipse 55% 42% at 32% 22%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.35) 38%, transparent 62%),
    /* secondary soft rim top */
    radial-gradient(ellipse 80% 18% at 50% 4%, rgba(255,255,255,0.28) 0%, transparent 100%),
    /* bottom inner refraction glint */
    radial-gradient(ellipse 32% 18% at 65% 78%, rgba(255,255,255,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
/* Thick glass outer rim ring */
.orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  border: 3px solid rgba(255,255,255,0.22);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.35),
    inset 0 -3px 6px rgba(0,0,0,0.4),
    inset 3px 0 6px rgba(255,255,255,0.1),
    inset -3px 0 6px rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 4;
}

/* Neon glow halo beneath */
.orb__glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: var(--orb-glow, rgba(139,92,246,0.5));
  filter: blur(20px);
  opacity: 0.55;
  z-index: -1;
  animation: orbShadowPulse 3.6s ease-in-out infinite;
  animation-delay: inherit;
}

/* Outer ring — expands on hover */
@keyframes ringPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.7); opacity: 0; }
}
.orb__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2.5px solid var(--orb-glow, rgba(167,139,250,0.6));
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: none;
}
.orb:hover .orb__ring {
  animation: ringPulse 0.7s ease-out forwards;
}

/* Tooltip */
.orb__tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(15, 18, 35, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(167,139,250,0.25);
  color: #e2e8f0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.orb__tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(15, 18, 35, 0.92);
}
.orb:hover .orb__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.orb svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}

/* Hover — pause float, pop it up */
.orb:hover {
  animation-play-state: paused;
  transform: translateY(-18px) scale(1.14);
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), background 0.35s ease, box-shadow 0.35s ease;
}
.orb:hover .orb__glow {
  opacity: 1;
  transform: scale(1.25);
}
.orb:hover svg {
  transform: scale(1.12);
}

/* ── Per-orb hover colour shifts ─────────────────────────── */
/* Facebook → electric violet */
.orb--facebook:hover {
  --orb-glow: rgba(167,139,250,0.8);
  background: radial-gradient(circle at 38% 32%, #ede0ff 0%, #c4a0fa 20%, #8b5cf6 48%, #6d28d9 72%, #3b0764 100%);
  box-shadow: 0 3px 0 rgba(255,255,255,0.4) inset, 0 -5px 10px rgba(0,0,0,0.45) inset, 4px 0 14px rgba(255,255,255,0.15) inset, 0 22px 50px rgba(139,92,246,0.7), 0 8px 20px rgba(0,0,0,0.5);
}
/* Instagram → electric cyan/teal */
.orb--instagram:hover {
  --orb-glow: rgba(34,211,238,0.8);
  background: radial-gradient(circle at 38% 32%, #cffafe 0%, #67e8f9 20%, #06b6d4 48%, #0e7490 72%, #083344 100%);
  box-shadow: 0 3px 0 rgba(255,255,255,0.4) inset, 0 -5px 10px rgba(0,0,0,0.45) inset, 4px 0 14px rgba(255,255,255,0.15) inset, 0 22px 50px rgba(6,182,212,0.7), 0 8px 20px rgba(0,0,0,0.5);
}
/* Pinterest → golden amber */
.orb--pinterest:hover {
  --orb-glow: rgba(245,158,11,0.8);
  background: radial-gradient(circle at 38% 32%, #fef3c7 0%, #fcd34d 20%, #f59e0b 48%, #b45309 72%, #6d3a08 100%);
  box-shadow: 0 3px 0 rgba(255,255,255,0.4) inset, 0 -5px 10px rgba(0,0,0,0.45) inset, 4px 0 14px rgba(255,255,255,0.15) inset, 0 22px 50px rgba(245,158,11,0.7), 0 8px 20px rgba(0,0,0,0.5);
}
/* TikTok → hot pink magenta */
.orb--tiktok:hover {
  --orb-glow: rgba(244,63,94,0.8);
  background: radial-gradient(circle at 38% 32%, #ffe4e6 0%, #fda4af 20%, #f43f5e 48%, #be123c 72%, #6c0a21 100%);
  box-shadow: 0 3px 0 rgba(255,255,255,0.4) inset, 0 -5px 10px rgba(0,0,0,0.45) inset, 4px 0 14px rgba(255,255,255,0.15) inset, 0 22px 50px rgba(244,63,94,0.7), 0 8px 20px rgba(0,0,0,0.5);
}
/* YouTube → vivid orange */
.orb--youtube:hover {
  --orb-glow: rgba(249,115,22,0.8);
  background: radial-gradient(circle at 38% 32%, #ffedd5 0%, #fdba74 20%, #f97316 48%, #c2410c 72%, #6c2000 100%);
  box-shadow: 0 3px 0 rgba(255,255,255,0.4) inset, 0 -5px 10px rgba(0,0,0,0.45) inset, 4px 0 14px rgba(255,255,255,0.15) inset, 0 22px 50px rgba(249,115,22,0.7), 0 8px 20px rgba(0,0,0,0.5);
}
/* X → neon lime green */
.orb--x:hover {
  --orb-glow: rgba(132,204,22,0.8);
  background: radial-gradient(circle at 38% 32%, #f7fee7 0%, #bef264 20%, #84cc16 48%, #4d7c0f 72%, #1e3b07 100%);
  box-shadow: 0 3px 0 rgba(255,255,255,0.4) inset, 0 -5px 10px rgba(0,0,0,0.45) inset, 4px 0 14px rgba(255,255,255,0.15) inset, 0 22px 50px rgba(132,204,22,0.7), 0 8px 20px rgba(0,0,0,0.5);
}

/* ── Platform colours ─────────────────────────────────────── */

/* Facebook — sky blue sphere */
.orb--facebook {
  --orb-glow: rgba(100,181,246,0.7);
  background: radial-gradient(
    circle at 38% 32%,
    #e8f4ff 0%,
    #a8d8ff 20%,
    #5aaee8 48%,
    #2b78c2 72%,
    #1a4e8a 100%
  );
  box-shadow:
    0 3px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.45) inset,
    4px 0 14px rgba(255,255,255,0.15) inset,
    -2px 0 6px rgba(0,0,0,0.25) inset,
    0 22px 50px rgba(42,120,194,0.65),
    0 8px 20px rgba(0,0,0,0.5),
    0 2px 0 rgba(255,255,255,0.15);
}

/* Instagram — warm orange-peach to purple sphere */
.orb--instagram {
  --orb-glow: rgba(230,100,60,0.7);
  background: radial-gradient(
    circle at 38% 32%,
    #ffe8c8 0%,
    #f9a46a 20%,
    #e05c30 48%,
    #c0386a 72%,
    #833ab4 100%
  );
  box-shadow:
    0 3px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.45) inset,
    4px 0 14px rgba(255,255,255,0.15) inset,
    -2px 0 6px rgba(0,0,0,0.25) inset,
    0 22px 50px rgba(220,80,60,0.65),
    0 8px 20px rgba(0,0,0,0.5),
    0 2px 0 rgba(255,255,255,0.15);
}

/* Pinterest — crimson red sphere */
.orb--pinterest {
  --orb-glow: rgba(220,20,40,0.7);
  background: radial-gradient(
    circle at 38% 32%,
    #ffcccc 0%,
    #f96060 20%,
    #e00023 48%,
    #b00020 72%,
    #720018 100%
  );
  box-shadow:
    0 3px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.45) inset,
    4px 0 14px rgba(255,255,255,0.15) inset,
    -2px 0 6px rgba(0,0,0,0.25) inset,
    0 22px 50px rgba(210,20,40,0.7),
    0 8px 20px rgba(0,0,0,0.5),
    0 2px 0 rgba(255,255,255,0.15);
}

/* TikTok — warm champagne / gold sphere */
.orb--tiktok {
  --orb-glow: rgba(200,168,80,0.7);
  background: radial-gradient(
    circle at 38% 32%,
    #fefad0 0%,
    #edd07a 20%,
    #c9a030 48%,
    #9e7a18 72%,
    #6b500a 100%
  );
  box-shadow:
    0 3px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.45) inset,
    4px 0 14px rgba(255,255,255,0.15) inset,
    -2px 0 6px rgba(0,0,0,0.25) inset,
    0 22px 50px rgba(200,168,50,0.65),
    0 8px 20px rgba(0,0,0,0.5),
    0 2px 0 rgba(255,255,255,0.15);
}

/* YouTube — sage teal / seafoam sphere */
.orb--youtube {
  --orb-glow: rgba(50,180,160,0.7);
  background: radial-gradient(
    circle at 38% 32%,
    #d8f8f2 0%,
    #7adecb 20%,
    #35b09a 48%,
    #1e8070 72%,
    #0f5248 100%
  );
  box-shadow:
    0 3px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.45) inset,
    4px 0 14px rgba(255,255,255,0.15) inset,
    -2px 0 6px rgba(0,0,0,0.25) inset,
    0 22px 50px rgba(40,168,148,0.65),
    0 8px 20px rgba(0,0,0,0.5),
    0 2px 0 rgba(255,255,255,0.15);
}

/* X / Twitter — cool silver-gray sphere */
.orb--x {
  --orb-glow: rgba(180,180,200,0.65);
  background: radial-gradient(
    circle at 38% 32%,
    #f4f4fc 0%,
    #d0d0e8 20%,
    #9898b8 48%,
    #6c6c8a 72%,
    #404058 100%
  );
  box-shadow:
    0 3px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.45) inset,
    4px 0 14px rgba(255,255,255,0.15) inset,
    -2px 0 6px rgba(0,0,0,0.25) inset,
    0 22px 50px rgba(120,120,160,0.6),
    0 8px 20px rgba(0,0,0,0.5),
    0 2px 0 rgba(255,255,255,0.15);
}

/* LinkedIn — blue sphere */
.orb--linkedin {
  --orb-glow: rgba(0,119,181,0.65);
  background: radial-gradient(
    circle at 38% 32%,
    #a8d8f0 0%,
    #4daee0 20%,
    #0077b5 48%,
    #005983 72%,
    #003a57 100%
  );
  box-shadow:
    0 3px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.45) inset,
    4px 0 14px rgba(255,255,255,0.15) inset,
    -2px 0 6px rgba(0,0,0,0.25) inset,
    0 22px 50px rgba(0,119,181,0.65),
    0 8px 20px rgba(0,0,0,0.5),
    0 2px 0 rgba(255,255,255,0.15);
}

/* ── VALUES / WHY CHOOSE US SECTION ─────────────────────── */
.values-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #080b14 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: rgba(13, 17, 32, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,92,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.value-card:hover {
  border-color: rgba(139, 92, 246, 0.38);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.14), 0 6px 20px rgba(0,0,0,0.35);
}
.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(236,72,153,0.1) 100%);
  border: 1px solid rgba(139,92,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.value-card__icon svg { width: 24px; height: 24px; stroke: #a78bfa; }
.value-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.value-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(185, 200, 230, 0.72);
  margin: 0;
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .value-card  { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════════
   FULL MOBILE RESPONSIVE OVERHAUL
   Breakpoints: 768px (tablets/large phones) → 480px (phones)
   ══════════════════════════════════════════════════════════ */

/* ── 768px — supplement the block above ─────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .hero__sub    { font-size: 17px; line-height: 1.6; }
  .hero__hosting { font-size: 15px; padding: 7px 18px; }
  .hero__ctas   { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
  .hero__ctas .btn { width: 100%; max-width: 340px; justify-content: center; }
  .float-badge  { display: none; } /* avoid horizontal overflow on phones */

  /* Included grid */
  .included-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stat-num { font-size: clamp(32px, 8vw, 52px); }

  /* Founder */
  .founder-msg-card { padding: 36px 28px; }
  .founder-msg__body { font-size: 16px; }

  /* Services */
  .service-card { padding: 28px 24px; }
  .service-card--cta { padding: 28px 24px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .price-card   { padding: 28px 24px; }

  /* Testimonials */
  .testimonials-track { gap: 16px; }
  .testi-card { width: 260px; padding: 24px 20px; }

  /* Contact */
  .contact-3d__card { padding: 32px 24px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }

  /* QR section */
  .qr-section { flex-direction: column; gap: 24px; }
  .qr-card     { min-width: unset; width: 100%; max-width: 320px; }

  /* Pay section */
  .pay-section { padding: 64px 0; }
  .pay-section__title  { font-size: clamp(22px, 6vw, 36px); }
  .pay-cta-btn  { font-size: 15px; padding: 14px 28px; }

  /* Follow orbs */
  .follow-section { padding: 52px 0 60px; }
  .follow-section__orbs { gap: 20px; }

  /* Footer */
  .footer__logo-img { height: 80px; }
  .footer__hero-heading { letter-spacing: -2.5px; }
}

/* ── 480px — small phones ────────────────────────────────── */
@media (max-width: 480px) {
  /* Container / section rhythm */
  .container { padding: 0 16px; }
  .section    { padding: 40px 0; }

  /* Hero */
  .hero__title  { font-size: clamp(28px, 9vw, 44px); letter-spacing: -1.4px; }
  .hero__sub    { font-size: 15px; }
  .hero__hosting { font-size: 14px; padding: 6px 14px; gap: 6px; }
  .hero__ctas .btn { max-width: 100%; }

  /* Badge eyebrow tags */
  .section-eyebrow { font-size: 11px; padding: 5px 14px; }

  /* Section headings */
  .section-title { font-size: clamp(24px, 7.5vw, 38px); }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Founder */
  .founder-msg-card    { padding: 24px 18px; }
  .founder-msg__body   { font-size: 15px; }
  .founder-msg__author { gap: 12px; }
  .founder-msg__avatar { width: 44px; height: 44px; }

  /* Included items */
  .included-item { padding: 18px 16px; gap: 14px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 22px 18px; }

  /* Portfolio */
  .port-card { height: 180px; }

  /* Process */
  .process-step { gap: 14px; }
  .process-step__num { width: 36px; height: 36px; font-size: 13px; flex-shrink: 0; }

  /* Pricing */
  .pricing-grid        { max-width: 100%; }
  .price-card          { padding: 22px 18px; }
  .price-card__price   { font-size: clamp(36px, 10vw, 52px); }
  .price-card__feature { font-size: 13px; }

  /* Testimonials */
  .testi-card { width: 240px; padding: 20px 16px; }

  /* Contact form */
  .contact-3d__card { padding: 24px 16px; border-radius: 16px; }
  .contact-form__label { font-size: 12px; }
  .contact-form__input,
  .contact-form__select,
  .contact-form__textarea { font-size: 15px; padding: 13px 14px; }
  /* ensure 44px min tap target on submit */
  .contact-form__submit   { min-height: 48px; font-size: 15px; }

  /* QR */
  .qr-card { padding: 24px 20px; }
  .qr-code-img { width: 140px; height: 140px; }

  /* CTA banner */
  .cta-banner__title   { font-size: clamp(22px, 7vw, 38px); letter-spacing: -1px; }
  .cta-banner__sub     { font-size: 14px; }
  .cta-banner__actions { flex-direction: column; gap: 12px; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Pay section */
  .pay-section         { padding: 48px 0; }
  .pay-section__badge  { font-size: 10px; }
  .pay-cta-btn         { font-size: 14px; padding: 13px 22px; width: 100%; max-width: 320px; justify-content: center; }

  /* Follow orbs */
  .follow-section       { padding: 40px 0 48px; }
  .follow-section__title { font-size: 20px; gap: 8px; margin-bottom: 32px; }
  .follow-section__orbs  { gap: 14px; }
  .orb { width: 52px; height: 52px; }
  .orb svg { width: 22px; height: 22px; }
  .orb::after { bottom: -14px; height: 14px; }

  /* Footer hero */
  .footer__hero   { padding: 48px 0 36px; }
  .footer__hero-heading { font-size: clamp(26px, 8vw, 42px); letter-spacing: -1.5px; line-height: 1.05; }
  .fh-outline     { -webkit-text-stroke-width: 1px; }
  .footer__logo-img { height: 64px; }

  /* Footer nav grid — single column */
  .footer__grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer__col ul { gap: 10px; }

  /* Footer bottom */
  .footer__bottom-inner { padding: 18px 16px; font-size: 12px; }

  /* Marquee — smaller text on mobile */
  .marquee-item   { font-size: 13px; gap: 12px; }
  .marquee-dot    { width: 4px; height: 4px; }
}
