/* ============================================
   Flycastmediaworkhub – Refined Design System
   ============================================ */

:root {
  /* Zilnuit Palette */
  --gold: #82c8e5;             /* Brand Primary */
  --gold-light: #96d0ea;       /* Brand Primary Hover */
  --gold-dark: #6bb8d9;        /* Brand Primary Active */
  --gold-muted: rgba(130,200,229,0.12);
  --gold-border: rgba(130,200,229,0.25);
  
  --ink: #1e293b;
  --dark-bg: #162a33;          /* Canvas Background */
  --darker-bg: #0f2027;        /* Surface Dark */
  --surface: #1a2f39;          /* Surface Card */
  --surface-hover: #1e3a47;    /* Surface Elevated */
  --border: #2d4a56;           /* Hairline */
  --border-hover: #3d5a66;     /* Hairline Soft */

  --text: #ffffff;             /* Body Text */
  --text-secondary: #ebf6fb;   /* Body Secondary */
  --text-muted: #94a3b8;       /* Muted Text */
  --text-muted-soft: #64748b;  /* Muted Soft */

  --accent-green: #5dccb4;     /* Success Green (WhatsApp) */
  --accent-purple: #7c5cbf;
  --accent-blue: #4a7ddb;

  /* Shape & Radius System (Zilnuit is sharp by default) */
  --radius: 0px;               /* DEFAULT (Sharp corners) */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;       /* Circle/Pill */
  
  --transition: 0.3s ease-in-out;
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text);
  line-height: 1.7;             /* Zilnuit prose standard */
  overflow-x: hidden;
  font-size: 16px;             /* 16px body-md */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img { max-width: 100%; height: auto; }

/* ---------- Layout ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
}

/* ---------- Typography ---------- */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.subheading {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateY(-3px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(130,200,229,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.03);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

/* ---------- Icon Box ---------- */
.icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

.icon-box.gold   { background: var(--gold-muted); color: var(--gold); }
.icon-box.purple { background: rgba(124,92,191,0.12); color: var(--accent-purple); }
.icon-box.blue   { background: rgba(74,125,219,0.12); color: var(--accent-blue); }
.icon-box.green  { background: rgba(46,204,113,0.12); color: var(--accent-green); }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
  font-weight: 500;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
}

.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left span:not(:first-child) {
  margin-left: 24px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: top var(--transition), padding var(--transition), background var(--transition);
}

.navbar.scrolled {
  top: 0;
  background: rgba(22,42,51,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.navbar-logo img { width: 32px; height: 32px; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Subtle gradient blurs - very muted */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.hero-glow.glow-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -20%; right: -10%;
}

.hero-glow.glow-2 {
  width: 400px; height: 400px;
  background: var(--accent-purple);
  bottom: -20%; left: -5%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 100vh;
  padding-top: 100px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-green);
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-actions .btn-primary {
  padding: 14px 32px;
}

.hero-metrics {
  display: flex;
  gap: 48px;
}

.hero-metric-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.hero-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero right – floating notification cards */
.hero-right {
  width: 340px;
  height: 480px;
  flex-shrink: 0;
  position: relative;
}

.notif-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  width: 260px;
}

.notif-card .notif-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notif-card .notif-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.notif-card .notif-text {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.notif-card .notif-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.notif-card.n1 {
  background: rgba(46,204,113,0.06);
  border: 1px solid rgba(46,204,113,0.12);
  top: 20px; right: 0;
  animation: notifFloat 7s ease-in-out infinite;
}
.notif-card.n1 .notif-icon { background: rgba(46,204,113,0.12); }
.notif-card.n1 .notif-text { color: var(--accent-green); }

.notif-card.n2 {
  background: rgba(130,200,229,0.06);
  border: 1px solid rgba(130,200,229,0.12);
  top: 190px; left: 0;
  animation: notifFloat 7s ease-in-out 2.3s infinite;
}
.notif-card.n2 .notif-icon { background: var(--gold-muted); }
.notif-card.n2 .notif-text { color: var(--gold); }

.notif-card.n3 {
  background: rgba(124,92,191,0.06);
  border: 1px solid rgba(124,92,191,0.12);
  bottom: 20px; right: 20px;
  animation: notifFloat 7s ease-in-out 4.6s infinite;
}
.notif-card.n3 .notif-icon { background: rgba(124,92,191,0.12); }
.notif-card.n3 .notif-text { color: var(--accent-purple); }

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

/* ---------- Ticker ---------- */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item .dot {
  width: 5px; height: 5px;
  background: var(--accent-green);
  border-radius: 50%;
}

.ticker-item strong { color: var(--gold); }

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

/* ---------- Brands ---------- */
.brands {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.brands-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.5;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.brand-name:hover {
  opacity: 0.9;
  color: var(--text-secondary);
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.step-card {
  padding: 36px 28px;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Stats ---------- */
.stats-section {
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 16px;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Calculator ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}

.calc-controls { padding: 36px; }

.calc-group {
  margin-bottom: 24px;
}

.calc-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.calc-select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
}

.calc-select:focus {
  border-color: var(--gold);
}

.calc-select option { background: var(--surface); }

.calc-range {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.calc-range-labels .current {
  color: var(--gold);
  font-weight: 600;
}

.calc-result-card {
  text-align: center;
  padding: 48px 36px;
}

.calc-result-pre {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.calc-result-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.calc-result-period {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card { padding: 32px; }

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-rating .star {
  width: 14px; height: 14px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.plan-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: var(--gold-border);
  position: relative;
}

.plan-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
}

.plan-tier {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.plan-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.plan-features li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li .check {
  width: 16px; height: 16px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  text-align: center;
}

/* ---------- Withdrawals ---------- */
.withdrawal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.withdrawal-card {
  text-align: center;
  padding: 32px 20px;
}

.withdrawal-icon-wrap {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.withdrawal-name {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.withdrawal-time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover { color: var(--gold); }

.faq-chevron {
  width: 18px; height: 18px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ---------- CTA ---------- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(130,200,229,0.04) 0%, transparent 70%);
}

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

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dividers */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ---------- About Us Page ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .separator {
  opacity: 0.4;
}

.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.story-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.story-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.story-image:hover {
  transform: scale(1.02);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-avatar-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-avatar-wrapper {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(130,200,229,0.15);
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.security-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.security-list li svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  background: var(--dark-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.badge-card:hover {
  border-color: rgba(130,200,229,0.3);
  transform: translateY(-3px);
  background: var(--darker-bg);
}

.badge-icon {
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.badge-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: var(--darker-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-muted);
  filter: grayscale(1);
  opacity: 0.55;
  transition: var(--transition);
  cursor: default;
}

.brand-logo-card:hover {
  filter: grayscale(0);
  opacity: 1;
  color: var(--text);
  border-color: rgba(130,200,229,0.25);
  background: rgba(130,200,229,0.02);
}

/* About responsive rules */
@media (max-width: 992px) {
  .story-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .brands-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .brands-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(22,42,51,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    margin-left: 0;
    z-index: 999;
  }
  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links {
    flex-direction: column;
    gap: 24px;
  }
  .nav-right {
    flex-direction: column;
    width: 100%;
  }
  .nav-right .btn {
    width: 100%;
    text-align: center;
  }
  body.no-scroll {
    overflow: hidden;
  }
  .mobile-toggle { 
    display: block; 
    z-index: 1000; 
  }
  .mobile-toggle.active { 
    color: var(--gold); 
  }
  .auth-card {
    padding: 32px 20px !important;
  }
  .hero-centered .hero-inner {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-badge { margin-bottom: 12px; }
  .hero-title { margin-bottom: 8px; }
  .hero-desc { margin-bottom: 16px; }
  .hero-actions { margin-bottom: 24px; }
  .section { padding: 80px 0; }
  .steps-grid,
  .testimonials-grid,
  .plans-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .withdrawal-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-metrics { gap: 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .withdrawal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-metrics { flex-direction: column; gap: 16px; }
}

@media (max-width: 576px) {
  .top-bar-left span {
    font-size: 0;
  }
  .top-bar-left span svg {
    width: 16px;
    height: 16px;
    margin-right: 0;
  }
  .top-bar-right {
    display: none;
  }
}

/* ---------- Contact Us Page ---------- */
.contact-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: start;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  height: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-hover);
  box-shadow: 0 0 0 3px rgba(130,200,229,0.12);
}

textarea.form-control {
  height: 160px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
}

select.form-control option {
  background: var(--surface);
  color: var(--text);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-list-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-list-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.emergency-box {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.18);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-top: 32px;
}

.emergency-box h4 {
  color: #ef4444;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.faq-scroll-wrapper {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding: 10px 0 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.faq-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.faq-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.faq-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 100px;
}

.faq-scroll-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: var(--transition);
}

.faq-scroll-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.faq-scroll-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.85) contrast(1.1) invert(0.92);
  opacity: 0.85;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 48px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 320px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-left-color: var(--accent-green);
}

.toast.error {
  border-left-color: #ef4444;
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-message {
  flex-grow: 1;
  line-height: 1.4;
}

/* Responsive splits */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .faq-scroll-card {
    flex: 0 0 280px;
  }
}

/* ---------- Plans & Levels Page ---------- */
.plans-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 60px;
}

/* Plans Table */
.plans-table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 40px;
  background: #111111;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.95rem;
}

.plans-table th, .plans-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.plans-table th {
  background: var(--darker-bg);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
  vertical-align: bottom;
}

.plans-table td.feature-name {
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Highlight column for Premium plan */
.plans-table td.highlight-col {
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  background: rgba(130, 200, 229, 0.02);
}

.plans-table th.highlight-col {
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-top: 2px solid var(--gold);
  background: rgba(130, 200, 229, 0.08);
  color: var(--gold);
}

.plans-table tr:last-child td.highlight-col {
  border-bottom: 1.5px solid var(--gold);
}

/* Mobile cards - hidden on desktop */
.plans-mobile-cards {
  display: none;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

.plan-mobile-card {
  background: #111111;
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius-sm);
}

.plan-mobile-card.featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 10px 30px rgba(130, 200, 229, 0.08);
}

.plan-mobile-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.plan-mobile-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-mobile-header .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.plan-mobile-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.plan-mobile-features li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

.plan-mobile-features li span:first-child {
  color: var(--text-muted);
}

.plan-mobile-features li span:last-child {
  font-weight: 600;
}

/* Detailed plan breakdown sections */
.tier-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.tier-section.alt-bg {
  background: var(--darker-bg);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tier-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.tier-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  color: var(--text-secondary);
}

.tier-bullets li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Calculator Section styling */
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.calc-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-sm);
}

.calc-range-wrapper {
  margin: 28px 0;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: var(--border);
  outline: none;
  margin: 16px 0;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--surface);
  box-shadow: 0 0 10px rgba(130, 200, 229, 0.4);
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--surface);
  box-shadow: 0 0 10px rgba(130, 200, 229, 0.4);
  transition: transform 0.15s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.calc-results-card {
  background: #111111;
  border: 1.5px solid var(--gold);
  padding: 40px;
  text-align: center;
  border-radius: var(--radius-sm);
  position: sticky;
  top: 120px;
}

.calc-result-row {
  margin-bottom: 28px;
}

.calc-result-row:last-child {
  margin-bottom: 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.calc-result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.calc-result-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}

.calc-result-value.highlight {
  color: var(--gold);
  font-size: 2.8rem;
}

/* SVG Chart Visual */
.visual-container {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-sm);
  margin-top: 40px;
  position: relative;
}

.visual-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-bar {
  transform-origin: bottom;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scaleY(0);
}

.chart-bar.animate {
  transform: scaleY(1);
}

.chart-bar:hover {
  filter: brightness(1.15);
  cursor: pointer;
}

.chart-tooltip {
  position: absolute;
  background: var(--darker-bg);
  border: 1px solid var(--gold);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

/* Responsive splits */
@media (max-width: 992px) {
  .calc-grid,
  .tier-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .calc-results-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .plans-table-container {
    display: none;
  }
  .plans-mobile-cards {
    display: grid;
  }
}

/* ---------- Privacy Policy Content ---------- */
.privacy-hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 40px;
}

.privacy-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

.privacy-content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: var(--radius-sm);
  margin-top: 40px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.privacy-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--text);
}

.privacy-section p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.privacy-section li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Privacy Tables */
.privacy-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.privacy-table th, .privacy-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.privacy-table th {
  background: var(--darker-bg);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
}

.privacy-table td {
  color: var(--text-secondary);
  line-height: 1.5;
}

.privacy-table tr:last-child td {
  border-bottom: none;
}

/* Print Button Float */
.btn-print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.btn-print:hover {
  border-color: var(--gold);
  color: var(--text);
  background: var(--surface-elevated);
}

/* ---------- Print stylesheet overrides ---------- */
@media print {
  /* Hide unnecessary dynamic elements */
  .top-bar,
  header.navbar,
  .plans-hero,
  .privacy-hero,
  footer.footer,
  .btn-print,
  #hero-canvas,
  .hero-glow {
    display: none !important;
  }

  /* Reset layout and background colors */
  html, body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 12pt !important;
    line-height: 1.5 !important;
  }

  .privacy-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .privacy-content-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .privacy-section h2 {
    color: #000000 !important;
    border-bottom: 1pt solid #000000 !important;
    page-break-after: avoid;
  }

  .privacy-section h3 {
    color: #000000 !important;
    page-break-after: avoid;
  }

  .privacy-section p,
  .privacy-section li {
    color: #333333 !important;
  }

  .privacy-table-wrapper {
    border: 1pt solid #333333 !important;
    page-break-inside: avoid;
  }

  .privacy-table th {
    background: #f0f0f0 !important;
    color: #000000 !important;
    border-bottom: 1.5pt solid #333333 !important;
  }

  .privacy-table td {
    color: #333333 !important;
    border-bottom: 1pt solid #cccccc !important;
  }

  /* Add page title on print */
  body::before {
    content: "Flycastmediaworkhub Platform — Privacy Policy";
    display: block;
    font-size: 18pt;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2pt solid #000000;
    padding-bottom: 10px;
  }
}

/* ---------- Centered Hero & Floating Brand Logos ---------- */
.hero-centered {
  text-align: center;
  width: 100%;
}

.hero-centered .hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-centered .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
}

.hero-centered .hero-desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-centered .hero-metrics {
  justify-content: center;
  margin-top: 48px;
}

/* Floating circles */
.floating-brand-circle {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), inset 0 -3px 6px rgba(0, 0, 0, 0.08);
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.floating-brand-circle:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 20px 48px rgba(130, 200, 229, 0.45);
}

.floating-brand-circle.brand-lg {
  width: 80px;
  height: 80px;
}

.floating-brand-circle.brand-md {
  width: 68px;
  height: 68px;
}

.floating-brand-circle.brand-sm {
  width: 56px;
  height: 56px;
}

/* Float Animations */
@keyframes float-fast {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes float-medium {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(14px) rotate(-1.5deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes float-v-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(18px) rotate(-2deg); }
}

/* Placements on viewport relative to hero container height/width */
.b-ferrari { top: 25%; left: 10%; }
.b-microsoft { top: 15%; left: 28%; }
.b-apple { top: 13%; right: 30%; }
.b-ford { top: 22%; right: 10%; }
.b-coke { bottom: 25%; left: 9%; }
.b-prada { bottom: 15%; left: 25%; }
.b-nike { bottom: 26%; right: 10%; }
.b-adidas { bottom: 16%; right: 25%; }

/* Responsive tweaks */
@media (max-width: 1200px) {
  .b-microsoft { left: 22%; }
  .b-apple { right: 24%; }
  .b-prada { left: 20%; }
  .b-adidas { right: 20%; }
}

@media (max-width: 1024px) {
  .floating-brand-circle.brand-lg { width: 64px; height: 64px; }
  .floating-brand-circle.brand-md { width: 52px; height: 52px; }
  .floating-brand-circle.brand-sm { width: 44px; height: 44px; }
  .b-ferrari { left: 4%; top: 28%; }
  .b-coke { left: 4%; bottom: 28%; }
  .b-ford { right: 4%; top: 26%; }
  .b-nike { right: 4%; bottom: 28%; }
  .b-microsoft { left: 18%; }
  .b-apple { right: 18%; }
  .b-prada { left: 16%; }
  .b-adidas { right: 16%; }
}

@media (max-width: 768px) {
  .floating-brand-circle {
    display: none !important;
  }
}

.brand-logo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-inner img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

.float-fast-anim {
  animation: float-fast 6s ease-in-out infinite;
}

.float-medium-anim {
  animation: float-medium 7s ease-in-out infinite;
}

.float-slow-anim {
  animation: float-slow 8s ease-in-out infinite;
}

.float-v-slow-anim {
  animation: float-v-slow 9s ease-in-out infinite;
}



