:root {
  --bg: #070707;
  --bg-soft: #101010;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: #b7b7b7;
  --gold: #f2b84b;
  --gold-dark: #b87916;
  --red: #e62828;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242, 184, 75, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(230, 40, 40, 0.10), transparent 30%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.16), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.75;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.80);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 60;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold), #fff0b6);
  box-shadow: 0 0 35px rgba(242, 184, 75, 0.24);
}

.brand-text {
  display: grid;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.brand-text strong {
  font-size: 19px;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 14px;
}

.nav-menu a {
  transition: 0.25s ease;
}

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

.nav-cta {
  color: #17110a !important;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 12px 35px rgba(242, 184, 75, 0.18);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  z-index: 60;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
  border-radius: 999px;
  transition: 0.25s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  margin-bottom: 26px;
}

h1 span,
h2 span {
  color: var(--gold);
}

h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

.hero-subtitle,
.section-content p,
.package-desc,
.story-card p,
.process-step p,
.service-card p,
.footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 660px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #fff0bd);
  color: #1b1307;
  box-shadow: 0 18px 45px rgba(242, 184, 75, 0.22);
}

.btn-ghost,
.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: rgba(242, 184, 75, 0.55);
  color: var(--gold);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.trust-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}

.trust-card strong,
.trust-card span {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.trust-card span {
  color: var(--gold);
}

.trust-card p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 5px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-card {
  width: min(430px, 100%);
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(242, 184, 75, 0.28);
  background: var(--card);
  box-shadow: var(--shadow);
  position: relative;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64), transparent 45%);
  pointer-events: none;
}

.portrait-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.portrait-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.portrait-badge span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.portrait-badge strong {
  font-size: 26px;
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
  animation: float 4s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  font-size: 22px;
  color: var(--gold);
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
}

.card-left {
  left: 0;
  top: 120px;
}

.card-right {
  right: 0;
  bottom: 100px;
  animation-delay: 1s;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-one {
  width: 280px;
  height: 280px;
  left: 8%;
  top: 20%;
  background: rgba(242, 184, 75, 0.18);
}

.orb-two {
  width: 340px;
  height: 340px;
  right: 8%;
  bottom: 10%;
  background: rgba(230, 40, 40, 0.13);
}

.logo-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.strip-track {
  display: flex;
  gap: 50px;
  width: max-content;
  padding: 22px 0;
  animation: marquee 24s linear infinite;
}

.strip-track span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.about-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.studio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.studio-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.studio-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.70);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.studio-overlay p {
  color: #fff;
  line-height: 1.6;
}

.section-content p + p {
  margin-top: 18px;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}

.about-points b {
  color: var(--gold);
}

.about-points span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.service-grid,
.package-grid,
.process-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.package-card,
.process-step,
.story-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.package-card::before,
.story-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: rgba(242, 184, 75, 0.10);
  transition: 0.3s ease;
}

.service-card:hover,
.package-card:hover,
.story-card:hover,
.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 184, 75, 0.36);
  background: var(--card-strong);
}

.service-card:hover::before,
.package-card:hover::before,
.story-card:hover::before {
  transform: scale(1.35);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.service-card h3,
.package-card h3,
.story-card h3,
.process-step h3 {
  margin-bottom: 12px;
}

.why-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.why-item span {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(242, 184, 75, 0.7);
}

.package-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: rgba(242, 184, 75, 0.50);
  background:
    radial-gradient(circle at top right, rgba(242, 184, 75, 0.20), transparent 36%),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-16px);
}

.package-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 18px;
}

.package-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.83);
}

.package-card li {
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.package-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.package-card .btn {
  margin-top: auto;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-step b {
  font-size: 40px;
  color: rgba(242, 184, 75, 0.34);
  display: block;
  margin-bottom: 40px;
}

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.stories-header h2 {
  max-width: 760px;
}

.story-thumb {
  height: 190px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.24), rgba(230, 40, 40, 0.12)),
    rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cta-box {
  text-align: center;
  padding: 74px 40px;
  border-radius: 36px;
  border: 1px solid rgba(242, 184, 75, 0.30);
  background:
    radial-gradient(circle at top, rgba(242, 184, 75, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-links a {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.contact-links a:hover {
  color: var(--gold);
  border-color: rgba(242, 184, 75, 0.45);
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.two-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  color: #fff;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(242, 184, 75, 0.6);
  box-shadow: 0 0 0 4px rgba(242, 184, 75, 0.08);
}

select option {
  color: #101010;
}

textarea {
  resize: vertical;
}

.full-btn {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 14px;
}

.form-note.error {
  color: #ff9696;
}

.footer {
  padding: 44px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

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

.copyright {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

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

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

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: auto;
  }

  .service-grid,
  .package-grid,
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 360px);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--line);
    transition: 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .trust-row,
  .service-grid,
  .package-grid,
  .process-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card img {
    height: 520px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
  }

  .studio-card img {
    height: 360px;
  }

  .stories-header,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 48px 22px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-subtitle,
  .section-content p,
  .package-desc,
  .story-card p,
  .process-step p,
  .service-card p {
    font-size: 15px;
  }

  .portrait-card img {
    height: 460px;
  }
}

/* Final brand assets update */
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 198, 93, 0.28);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 198, 93, 0.15);
  background: #080808;
}
.footer .brand-logo {
  width: 58px;
  height: 58px;
}
.handle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.handle-row a,
.handle-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.handle-row a:hover {
  border-color: rgba(255, 198, 93, 0.55);
  color: var(--gold);
  transform: translateY(-2px);
}
@media (max-width: 560px) {
  .brand-logo { width: 44px; height: 44px; border-radius: 13px; }
  .handle-row a, .handle-row span { width: 100%; justify-content: center; }
}


/* Business Talks & Founder Reel Section */
.talks-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 198, 93, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.035));
  overflow: hidden;
}

.section-intro {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.reel-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 1fr);
  gap: 18px;
  margin-top: 34px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 198, 93, 0.65) rgba(255, 255, 255, 0.08);
}

.reel-scroll::-webkit-scrollbar {
  height: 9px;
}

.reel-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.reel-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 999px;
}

.reel-card {
  min-width: 245px;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  position: relative;
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 198, 93, 0.16), transparent 34%, transparent 75%, rgba(255, 255, 255, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reel-card:hover::before {
  opacity: 1;
}

.reel-frame {
  height: 390px;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.facebook-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.instagram-frame {
  background: #fff;
  align-items: flex-start;
  overflow-y: auto;
}

.instagram-frame .instagram-media {
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.placeholder-frame {
  background:
    linear-gradient(160deg, rgba(255, 198, 93, 0.18), rgba(255, 255, 255, 0.03)),
    url("images/hustle-storyz-logo.png") center / 74% no-repeat,
    #090909;
  min-height: 390px;
}

.placeholder-frame span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 198, 93, 0.38);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 250px;
}

.reel-info {
  padding: 18px;
  position: relative;
}

.reel-info span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reel-info h3 {
  margin: 8px 0 14px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.reel-info a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  opacity: 0.86;
}

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

@media (min-width: 1180px) {
  .reel-scroll {
    grid-auto-columns: calc((100% - 72px) / 5);
  }
}

@media (max-width: 720px) {
  .reel-scroll {
    grid-auto-columns: 78%;
  }
  .reel-frame,
  .placeholder-frame {
    height: 420px;
  }
}

@media (max-width: 460px) {
  .reel-scroll {
    grid-auto-columns: 88%;
  }
}

/* Digi Startup India Section */
.digi-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(230, 40, 40, 0.12), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(242, 184, 75, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.digi-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 38px;
  align-items: center;
}

.digi-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    #0b0b0b;
  box-shadow: var(--shadow);
}

.digi-panel::before {
  content: "";
  position: absolute;
  inset: -80px -90px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.digi-badge {
  position: relative;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 198, 93, 0.38);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.digi-panel h3 {
  position: relative;
  margin: 22px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.digi-panel p {
  position: relative;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
}

.digi-services {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.digi-services div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
}

.digi-services span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.digi-services b {
  font-size: 0.98rem;
}

.digi-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.digi-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.digi-links a:hover {
  color: var(--gold);
  border-color: rgba(242, 184, 75, 0.55);
  transform: translateY(-2px);
}

.youtube-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

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

@media (max-width: 560px) {
  .digi-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .digi-services {
    grid-template-columns: 1fr;
  }

  .digi-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Final Creative Suite Updates */
.creative-suite {
  margin-top: 52px;
}

.compact-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.creative-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.creative-service-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.022);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.creative-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 184, 75, 0.55);
  background:
    linear-gradient(145deg, rgba(242, 184, 75, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.creative-service-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.creative-service-card h3 {
  margin: 18px 0 12px;
  font-size: 1.15rem;
}

.creative-service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .creative-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .creative-service-grid {
    grid-template-columns: 1fr;
  }

  .creative-service-card {
    min-height: auto;
  }
}


/* BLOG SECTION */
.blog-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 184, 75, 0.10), transparent 32%),
    #050505;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(245, 190, 72, 0.16);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  transition: 0.35s ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(245, 190, 72, 0.08);
  top: -90px;
  right: -90px;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 190, 72, 0.5);
}

.blog-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #ffffff;
}

.blog-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 22px;
}

.blog-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

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


/* === Premium Final Upgrade: motion graphics, VFX layers, proof assets === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(242, 184, 75, 0.045) 22%, transparent 42%),
    linear-gradient(65deg, transparent 0%, rgba(230, 40, 40, 0.038) 48%, transparent 70%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 35%);
  animation: premiumAurora 13s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.vfx-field {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.vfx-field span {
  position: absolute;
  width: 2px;
  height: 160px;
  border-radius: 999px;
  opacity: 0.25;
  background: linear-gradient(to bottom, transparent, rgba(242, 184, 75, 0.95), transparent);
  transform: rotate(35deg);
  animation: premiumRain 8s linear infinite;
}

.vfx-field span:nth-child(1) { left: 9%; animation-delay: 0s; }
.vfx-field span:nth-child(2) { left: 22%; animation-delay: 1.5s; height: 110px; }
.vfx-field span:nth-child(3) { left: 48%; animation-delay: 3s; height: 190px; }
.vfx-field span:nth-child(4) { left: 64%; animation-delay: 4.2s; }
.vfx-field span:nth-child(5) { left: 78%; animation-delay: 2.2s; height: 130px; background: linear-gradient(to bottom, transparent, rgba(230,40,40,0.85), transparent); }
.vfx-field span:nth-child(6) { left: 91%; animation-delay: 5.4s; height: 180px; }

.site-header.scrolled .brand-logo {
  box-shadow: 0 0 28px rgba(242, 184, 75, 0.26);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 110px 3% 3%;
  pointer-events: none;
  border-radius: 48px;
  border: 1px solid rgba(242, 184, 75, 0.10);
  background: linear-gradient(135deg, rgba(255,255,255,0.035), transparent 40%, rgba(230,40,40,0.04));
  filter: drop-shadow(0 30px 90px rgba(0,0,0,0.35));
}

.hero-content,
.hero-visual,
.section-content,
.proof-visual,
.showcase-visual {
  position: relative;
  z-index: 2;
}

.portrait-card,
.studio-card,
.proof-visual,
.showcase-visual,
.service-card,
.package-card,
.story-card,
.blog-card,
.reel-card,
.digi-panel,
.creative-service-card {
  will-change: transform;
}

.portrait-card::after,
.proof-visual::after,
.showcase-visual::after,
.service-card::after,
.package-card::after,
.story-card::after,
.blog-card::after,
.reel-card::after,
.digi-panel::after,
.creative-service-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.16) 28%, transparent 55%);
  opacity: 0;
  transform: translateX(-60%);
  transition: 0.65s ease;
}

.portrait-card:hover::after,
.proof-visual:hover::after,
.showcase-visual:hover::after,
.service-card:hover::after,
.package-card:hover::after,
.story-card:hover::after,
.blog-card:hover::after,
.reel-card:hover::after,
.digi-panel:hover::after,
.creative-service-card:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.story-badge-asset {
  position: absolute;
  left: -40px;
  bottom: -18px;
  width: min(360px, 58vw);
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.45));
  animation: badgeFloat 5.5s ease-in-out infinite;
  z-index: 3;
}

.proof-section {
  padding-top: 130px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(242,184,75,0.04), rgba(255,255,255,0.015));
}

.proof-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.proof-visual,
.showcase-visual {
  border: 1px solid rgba(242, 184, 75, 0.26);
  border-radius: 34px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    radial-gradient(circle at top left, rgba(242, 184, 75, 0.16), transparent 45%);
  box-shadow: 0 36px 100px rgba(0,0,0,0.48);
  overflow: hidden;
  transform-style: preserve-3d;
}

.proof-visual img,
.showcase-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}

.proof-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.proof-kpis div,
.showcase-points span {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  padding: 16px;
  backdrop-filter: blur(14px);
}

.proof-kpis b {
  display: block;
  color: var(--gold);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.proof-kpis span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.asset-showcase {
  background:
    radial-gradient(circle at 18% 28%, rgba(242,184,75,0.12), transparent 30%),
    radial-gradient(circle at 82% 60%, rgba(230,40,40,0.09), transparent 32%);
}

.showcase-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.showcase-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.showcase-points span {
  color: rgba(255,255,255,0.88);
  font-weight: 800;
  padding: 13px 15px;
}

.btn,
.nav-menu a,
.contact-links a,
.digi-links a,
.reel-info a,
.blog-card a {
  position: relative;
  overflow: hidden;
}

.btn::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: translateX(-120%);
  transition: 0.55s ease;
}

.btn:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

@keyframes premiumAurora {
  0% { transform: translate3d(-1%, -1%, 0) scale(1); opacity: 0.85; }
  100% { transform: translate3d(1.5%, 1.5%, 0) scale(1.04); opacity: 1; }
}

@keyframes premiumRain {
  0% { transform: translateY(-25vh) rotate(35deg); opacity: 0; }
  18% { opacity: 0.28; }
  100% { transform: translateY(125vh) rotate(35deg); opacity: 0; }
}

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

@media (max-width: 1024px) {
  .proof-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid .showcase-visual {
    order: 2;
  }

  .story-badge-asset {
    left: 18px;
    bottom: -30px;
    width: min(330px, 72vw);
  }
}

@media (max-width: 760px) {
  body::after,
  .vfx-field {
    opacity: 0.12;
  }

  .proof-section {
    padding-top: 84px;
  }

  .proof-kpis {
    grid-template-columns: 1fr;
  }

  .proof-visual,
  .showcase-visual {
    border-radius: 24px;
    padding: 8px;
  }

  .proof-visual img,
  .showcase-visual img {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* === v3 Final polish: hidden WhatsApp number + 4K asset sections === */
.premium-visual-section {
  padding: 76px 0 40px;
  background: radial-gradient(circle at 50% 0%, rgba(242,184,75,0.10), transparent 34%);
}

.full-asset-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(242, 184, 75, 0.26);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 38px 100px rgba(0,0,0,0.52);
}

.full-asset-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.kit-showcase-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 103, 255, 0.11), transparent 34%),
    radial-gradient(circle at 14% 60%, rgba(242,184,75,0.11), transparent 32%);
}

@media (max-width: 760px) {
  .premium-visual-section { padding: 52px 0 28px; }
  .full-asset-wrap { border-radius: 24px; }
}

/* Avoid hidden crop on wide premium assets inside the about block. */
.studio-card img {
  height: auto;
  object-fit: contain;
}


/* === v4 multipage SEO upgrade === */
.nav-menu a.active,
.footer-links a.active {
  color: var(--gold);
}
.inner-hero {
  min-height: auto;
  padding-top: 150px;
  padding-bottom: 70px;
}
.inner-hero .hero-grid {
  align-items: center;
}
.page-kicker {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}
.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
  font-weight: 700;
}
.card-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.card-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}
.info-card b {
  display: block;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.info-card p {
  color: var(--muted);
  line-height: 1.75;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.faq-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.faq-card p {
  color: var(--muted);
  line-height: 1.75;
}
.inline-asset {
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(242,184,75,0.22);
  box-shadow: var(--shadow);
}
.inline-asset img {
  width: 100%;
  height: auto;
  display: block;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.68);
  font-weight: 700;
  font-size: 0.9rem;
}
.breadcrumbs a:hover {
  color: var(--gold);
}
.page-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 960px) {
  .info-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* === V7 retained premium podcast styling === */
.podcast-focus-section {
  background: radial-gradient(circle at 10% 0%, rgba(242,184,75,0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}
.podcast-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.podcast-focus-card {
  padding: 24px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: 0 18px 55px rgba(0,0,0,0.26);
}
.podcast-focus-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(242,184,75,0.16);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 16px;
}
.podcast-focus-card h3 {
  font-size: 1.04rem;
  margin-bottom: 10px;
}
.podcast-focus-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}
.partner-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(242,184,75,0.20);
  background: rgba(255,255,255,0.05);
}
.partner-note b {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.partner-note p {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}
.hero-photo-real {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.podcast-badge {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.podcast-badge span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.84);
  font-size: 0.84rem;
  font-weight: 700;
}
.rich-footer {
  position: relative;
  padding: 84px 0 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(242,184,75,0.10), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(0,102,255,0.10), transparent 24%),
    #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.rich-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.footer-brand-box,
.footer-map-box,
.footer-social-box,
.footer-links-box {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  box-shadow: 0 22px 80px rgba(0,0,0,0.30);
}
.footer-brand-box p,
.footer-map-box p,
.footer-links-box p {
  color: var(--muted);
  line-height: 1.8;
}
.footer-stack {
  display: grid;
  gap: 20px;
}
.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.social-follow-card {
  display: block;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  transition: transform .25s ease, border-color .25s ease;
}
.social-follow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,184,75,0.42);
}
.social-follow-card b {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.social-follow-card span {
  display: block;
  color: var(--gold);
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.social-follow-card small {
  color: var(--muted);
  line-height: 1.55;
}
.footer-map {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 22px;
  margin-top: 16px;
}
.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.footer-links-row a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
  font-weight: 700;
}
.footer-links-row a:hover {
  color: var(--gold);
  border-color: rgba(242,184,75,0.42);
}
.footer-bottom-bar {
  margin-top: 24px;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-inner p {
  color: rgba(255,255,255,0.68);
  margin: 0;
}
@media (max-width: 1120px) {
  .podcast-focus-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .podcast-focus-grid,
  .footer-social-grid { grid-template-columns: 1fr; }
  .footer-brand-box,
  .footer-map-box,
  .footer-social-box,
  .footer-links-box { padding: 22px; }
}


/* === V7 premium polish: keep generated assets complete, clean and uncropped === */
.portrait-card { width: min(540px, 100%); }
.hero-visual { min-height: 620px; }
.showcase-visual, .proof-visual, .full-asset-wrap, .studio-card { overflow: visible; }
.showcase-visual img, .proof-visual img, .full-asset-wrap img, .studio-card img { object-fit: contain !important; height: auto !important; max-height: none; image-rendering: auto; }
.digi-section .digi-panel, .info-card, .service-card, .package-card, .blog-card { backdrop-filter: blur(18px); }
body { text-rendering: geometricPrecision; }

/* === V7 final motion/VFX layer: content, text, colors and layout preserved === */
:root {
  --v7-blue: rgba(62, 128, 255, 0.46);
  --v7-blue-soft: rgba(62, 128, 255, 0.16);
  --v7-gold: rgba(242, 184, 75, 0.52);
  --v7-gold-soft: rgba(242, 184, 75, 0.16);
  --v7-glow-shadow: 0 0 34px rgba(62, 128, 255, 0.22), 0 0 60px rgba(242, 184, 75, 0.10);
}

body.v7-motion-ready {
  isolation: isolate;
}

body.v7-motion-ready .cursor-glow {
  width: 360px;
  height: 360px;
  opacity: 0.86;
  background:
    radial-gradient(circle, rgba(242, 184, 75, 0.19) 0%, rgba(62, 128, 255, 0.105) 35%, transparent 70%);
  filter: blur(1px) saturate(1.2);
  mix-blend-mode: screen;
  transition: opacity 0.22s ease;
}

.v7-motion-layer,
.v7-spark-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  contain: strict;
}

.v7-motion-layer { opacity: 0.86; }
.v7-spark-layer { opacity: 0.55; }

.v7-trail,
.v7-blue-trail {
  position: absolute;
  left: -45vw;
  width: 44vw;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--v7-gold), rgba(255, 255, 255, 0.38), transparent);
  box-shadow: 0 0 18px rgba(242,184,75,0.28);
  transform: rotate(-15deg);
  animation: v7TrailFlow 10s linear infinite;
  will-change: transform;
}

.v7-blue-trail {
  width: 38vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v7-blue), rgba(255,255,255,0.24), transparent);
  box-shadow: 0 0 18px rgba(62,128,255,0.30);
  animation-name: v7BlueTrailFlow;
  transform: rotate(18deg);
}

.v7-orb {
  position: absolute;
  width: 16vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,184,75,0.10), transparent 68%);
  border: 1px solid rgba(242,184,75,0.08);
  filter: blur(0.2px);
  animation: v7OrbDrift 15s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.v7-orb.is-blue {
  background: radial-gradient(circle, rgba(62,128,255,0.12), transparent 68%);
  border-color: rgba(62,128,255,0.10);
}

.v7-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(242,184,75,0.65);
  box-shadow: 0 0 14px rgba(242,184,75,0.42);
  animation: v7SparkFloat 7s ease-in-out infinite;
  will-change: transform, opacity;
}

.v7-spark.is-blue {
  background: rgba(62,128,255,0.72);
  box-shadow: 0 0 14px rgba(62,128,255,0.42);
}

.hero,
.podcast-focus-section,
.premium-visual-section,
.proof-section,
.asset-showcase,
.kit-showcase-section,
.cta-section,
.rich-footer {
  overflow: clip;
}

.hero::after,
.proof-section::after,
.asset-showcase::after,
.kit-showcase-section::after,
.rich-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.38;
  background:
    linear-gradient(112deg, transparent 0%, rgba(62,128,255,0.08) 22%, transparent 36%, rgba(242,184,75,0.07) 52%, transparent 68%);
  transform: translateX(-115%) skewX(-10deg);
  animation: v7SectionSweep 9.8s cubic-bezier(.2,.72,.19,1) infinite;
}

.proof-section::after { animation-delay: 1.2s; opacity: 0.28; }
.asset-showcase::after { animation-delay: 2.1s; opacity: 0.24; }
.kit-showcase-section::after { animation-delay: 3s; opacity: 0.22; }
.rich-footer::after { animation-delay: 4.4s; opacity: 0.16; }

:is(.portrait-card, .full-asset-wrap, .proof-visual, .showcase-visual, .podcast-focus-card, .trust-card, .footer-brand-box, .footer-map-box, .footer-social-box, .footer-links-box, .partner-note, .creative-service-card, .service-card, .package-card, .blog-card, .story-card, .reel-card) {
  will-change: transform, box-shadow;
}

:is(.portrait-card, .full-asset-wrap, .proof-visual, .showcase-visual, .podcast-focus-card, .trust-card, .footer-brand-box, .footer-map-box, .footer-social-box, .footer-links-box, .partner-note)::before {
  pointer-events: none;
}

:is(.portrait-card, .full-asset-wrap, .proof-visual, .showcase-visual, .podcast-focus-card, .trust-card, .footer-brand-box, .footer-map-box, .footer-social-box, .footer-links-box, .partner-note)::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 14%, rgba(255,255,255,0.16) 28%, transparent 42%);
  opacity: 0;
  transform: translateX(-120%);
  animation: v7CardGlint 8.5s ease-in-out infinite;
}

:is(.proof-visual, .showcase-visual, .full-asset-wrap, .portrait-card):hover {
  box-shadow: var(--shadow), var(--v7-glow-shadow);
}

:is(.proof-visual img, .showcase-visual img, .full-asset-wrap img, .portrait-card img, .studio-card img) {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.footer-map-box {
  box-shadow: 0 22px 80px rgba(0,0,0,0.30), 0 0 0 1px rgba(242,184,75,0.04), 0 0 44px rgba(62,128,255,0.08);
}

.footer-map {
  box-shadow: inset 0 0 0 1px rgba(242,184,75,0.14), 0 18px 60px rgba(0,0,0,0.32);
  filter: saturate(1.04) contrast(1.03);
}

@keyframes v7TrailFlow {
  0% { transform: translate3d(-10vw, 0, 0) rotate(-15deg); opacity: 0; }
  12% { opacity: 0.72; }
  58% { opacity: 0.42; }
  100% { transform: translate3d(155vw, -38vh, 0) rotate(-15deg); opacity: 0; }
}

@keyframes v7BlueTrailFlow {
  0% { transform: translate3d(120vw, 20vh, 0) rotate(18deg); opacity: 0; }
  16% { opacity: 0.64; }
  64% { opacity: 0.34; }
  100% { transform: translate3d(-80vw, -32vh, 0) rotate(18deg); opacity: 0; }
}

@keyframes v7OrbDrift {
  0% { transform: translate3d(0, 0, 0) scale(0.95); opacity: 0.38; }
  50% { opacity: 0.64; }
  100% { transform: translate3d(6vw, -6vh, 0) scale(1.18); opacity: 0.28; }
}

@keyframes v7SparkFloat {
  0% { transform: translate3d(0, 18px, 0) scale(0.7); opacity: 0; }
  20% { opacity: 0.78; }
  60% { opacity: 0.48; }
  100% { transform: translate3d(26px, -110px, 0) scale(1.15); opacity: 0; }
}

@keyframes v7SectionSweep {
  0%, 18% { transform: translateX(-115%) skewX(-10deg); opacity: 0; }
  32% { opacity: 0.34; }
  64% { transform: translateX(115%) skewX(-10deg); opacity: 0; }
  100% { transform: translateX(115%) skewX(-10deg); opacity: 0; }
}

@keyframes v7CardGlint {
  0%, 38% { opacity: 0; transform: translateX(-120%); }
  46% { opacity: 0.18; }
  58% { opacity: 0; transform: translateX(120%); }
  100% { opacity: 0; transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .v7-motion-layer,
  .v7-spark-layer { display: none; }
  .hero::after,
  .proof-section::after,
  .asset-showcase::after,
  .kit-showcase-section::after,
  .rich-footer::after,
  :is(.portrait-card, .full-asset-wrap, .proof-visual, .showcase-visual, .podcast-focus-card, .trust-card, .footer-brand-box, .footer-map-box, .footer-social-box, .footer-links-box, .partner-note)::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

