:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F7F5;
  --ink: #111111;
  --ink-soft: #666666;
  --line: #E8E8E8;
  --o1: #FF5A00;
  --o2: #FF7A18;
  --o3: #FFB15C;
  --grad: linear-gradient(115deg, var(--o1) 0%, var(--o2) 45%, var(--o3) 100%);
  --grad-soft: linear-gradient(115deg, rgba(255, 90, 0, .10), rgba(255, 177, 92, .10));
  --shadow-soft: 0 8px 30px rgba(17, 17, 17, .06);
  --shadow-card: 0 16px 40px rgba(17, 17, 17, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;
}


/* Theme Toggler According to System Preference */
.dark-theme {
  background-color: #000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(255, 122, 24, .25);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- gradient text ---------- */
.grad-text {
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}

@keyframes gradShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 90, 0, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 90, 0, .4);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: #c9c9c6;
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--o1);
  background: rgba(255, 90, 0, .08);
  border: 1px solid rgba(255, 90, 0, .18);
  padding: 7px 16px;
  border-radius: 999px;
}

/* ---------- NAVBAR ---------- */
.nav-outer {
  position: sticky;
  top: 16px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.nav {
  width: 100%;
  max-width: 860px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s ease, background .3s ease;
}

.nav.scrolled {
  box-shadow: 0 12px 36px rgba(17, 17, 17, .1);
  background: rgba(255, 255, 255, .92);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
}

.nav-logo img {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--grad);
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-right .login {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-right .login:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1200;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.mobile-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 24px;
  justify-content: center;
}

/* ---------- HERO ---------- */
.hero {
  padding: 110px 0 40px;
  text-align: center;
  position: relative;
}

.hero .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 0.98;
  max-width: 900px;
  margin: 22px 0 0;
}

.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--ink);
  max-width: 640px;
  margin: 26px 0 0;
}

.hero-p {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.6;
  margin: 18px 0 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp .8s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.d1 {
  animation-delay: .05s;
}

.d2 {
  animation-delay: .15s;
}

.d3 {
  animation-delay: .25s;
}

.d4 {
  animation-delay: .35s;
}

.d5 {
  animation-delay: .45s;
}

/* ---------- HERO VISUAL ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 640px;
  margin: 64px auto 0;
}

.vcard {
  position: absolute;
  border-radius: 22px;
  background: #0d0d0d;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .06);
}

.vcard .thumb {
  position: absolute;
  inset: 0;
}

.hover-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  z-index: 2;
}

.previewing > .thumb,
.previewing > .tint {
  opacity: 0 !important;
}

.vcard > .thumb,
.vcard > .tint,
.big-card > .thumb,
.big-card > .tint,
.mini-card > .thumb,
.mini-card > .tint,
.port-card > .thumb,
.port-card > .tint {
  z-index: 1;
}

.vcard > :not(.hover-preview):not(.thumb):not(.tint),
.big-card > :not(.hover-preview):not(.thumb):not(.tint),
.mini-card > :not(.hover-preview):not(.thumb):not(.tint),
.port-card > :not(.hover-preview):not(.thumb):not(.tint) {
  z-index: 3;
}

.vcard .top-row {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.platform-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, .35);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  letter-spacing: .02em;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.play-btn svg {
  width: 14px;
  height: 14px;
}

.waveform {
  position: absolute;
  bottom: 52px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  opacity: .85;
}

.waveform span {
  flex: 1;
  background: var(--o3);
  border-radius: 2px;
}

.vcard .caption-bar {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vcard .views-pill {
  background: rgba(0, 0, 0, .4);
  padding: 4px 9px;
  border-radius: 8px;
  font-weight: 700;
}

.center-card {
  width: 270px;
  height: 480px;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  z-index: 5;
  border: 2px solid transparent;
  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    var(--grad) border-box;
}

.center-card .thumb {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 177, 92, .5), transparent 45%),
    linear-gradient(160deg, #1a1a1a, #050505 70%);
}

.float-card {
  animation: floaty 7s ease-in-out infinite;
}

.float-card.f2 {
  animation-delay: 1.1s;
}

.float-card.f3 {
  animation-delay: .4s;
}

.float-card.f4 {
  animation-delay: 1.7s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0px) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-14px) rotate(var(--r, 0deg));
  }
}

.card-instagram {
  width: 158px;
  height: 270px;
  left: 6%;
  top: 120px;
  --r: -6deg;
  transform: rotate(-6deg);
}

.card-instagram .thumb {
  background: linear-gradient(160deg, #1c1c1c, #000 75%);
}

.card-reels {
  width: 150px;
  height: 250px;
  left: 2%;
  top: 410px;
  --r: 5deg;
  transform: rotate(5deg);
}

.card-reels .thumb {
  background: radial-gradient(circle at 70% 30%, rgba(255, 90, 0, .45), transparent 55%), linear-gradient(180deg, #141414, #000);
}

.card-podcast {
  width: 150px;
  height: 250px;
  right: 2%;
  top: 130px;
  --r: 6deg;
  transform: rotate(6deg);
}

.card-podcast .thumb {
  background: linear-gradient(200deg, #161616, #020202);
}

.card-shorts {
  width: 158px;
  height: 270px;
  right: 5%;
  top: 400px;
  --r: -5deg;
  transform: rotate(-5deg);
}

.card-shorts .thumb {
  background: radial-gradient(circle at 30% 70%, rgba(255, 177, 92, .4), transparent 55%), linear-gradient(160deg, #141414, #000);
}

.badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: floaty 6s ease-in-out infinite;
  white-space: nowrap;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

.badge-1 {
  top: 40px;
  left: 16%;
}

.badge-2 {
  top: 90px;
  right: 12%;
  --r: 0deg;
  animation-delay: .6s;
}

.badge-3 {
  top: 340px;
  left: 0%;
  animation-delay: 1.2s;
}

.badge-4 {
  bottom: 120px;
  right: 2%;
  animation-delay: .3s;
}

.badge-5 {
  bottom: 60px;
  left: 20%;
  animation-delay: .9s;
}

.badge-6 {
  top: 560px;
  right: 20%;
  animation-delay: 1.5s;
}

/* ---------- SOCIAL PROOF ---------- */
.proof {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.proof-head {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 44px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

.proof-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- SECTION generic ---------- */
section {
  padding: 120px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--o1);
  margin-bottom: 22px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 0 24px;
  position: relative;
}

.step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--o1);
  letter-spacing: .04em;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Step Arrow */
/* .step-connector{
    position:absolute; top:8px; right:-16px; width:32px; height:2px;
    background:var(--grad); border-radius:2px;
  } */
/* .step-connector::after{
    content:''; position:absolute; right:-4px; top:-3px;
    width:8px; height:8px; border-top:2px solid var(--o2); border-right:2px solid var(--o2);
    transform:rotate(45deg);
  } */

.flow-diagram {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.flow-node {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.flow-node.brand {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(255, 90, 0, .28);
}

.flow-arrow {
  color: var(--o2);
  font-size: 18px;
}


/* ---------- TRANSFORMATION ---------- */
.transform-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.big-card {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  align-items: end;
  border-radius: 26px;
  background: linear-gradient(160deg, #141414, #000);
  position: relative;
  overflow: auto;
  box-shadow: var(--shadow-card);

}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card {
  aspect-ratio: 9/13;
  border-radius: 14px;
  background: linear-gradient(165deg, #161616, #030303);
  position: relative;
  box-shadow: 0 10px 26px rgba(17, 17, 17, .1);
  border: 1px solid rgba(255, 255, 255, .05);
}

.mini-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 122, 24, .25), transparent 60%);
}

.mini-card .dot-play {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
}

.transform-chain {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
}

.transform-chain .hi {
  color: var(--ink);
}

/* ---------- PORTFOLIO ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.portfolio-grid>*:nth-child(1) {
  grid-row: span 2;
}

.portfolio-grid>*:nth-child(4) {
  grid-row: span 2;
}

.port-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(160deg, #151515, #010101);
  box-shadow: var(--shadow-card);
  aspect-ratio: 9/14;
}

.portfolio-grid>*:nth-child(1) .port-card,
.portfolio-grid>*:nth-child(4) .port-card {
  aspect-ratio: auto;
  height: 100%;
}

.port-card .tint {
  position: absolute;
  inset: 0;
  opacity: .9;
}

.p1 .tint {
  background: radial-gradient(circle at 25% 20%, rgba(255, 90, 0, .4), transparent 55%);
}

.p2 .tint {
  background: radial-gradient(circle at 70% 30%, rgba(255, 177, 92, .35), transparent 55%);
}

.p3 .tint {
  background: radial-gradient(circle at 50% 80%, rgba(255, 122, 24, .35), transparent 55%);
}

.p4 .tint {
  background: radial-gradient(circle at 30% 60%, rgba(255, 90, 0, .35), transparent 55%);
}

.port-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  opacity: 0;
  transition: opacity .35s ease;
}

.port-card:hover .overlay {
  opacity: 1;
}

.port-card:hover .tint {
  transform: scale(1.06);
}

.port-card .tint {
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.port-card .p-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.port-card .p-meta {
  font-size: 12px;
  opacity: .85;
  display: flex;
  gap: 8px;
}

.port-card .p-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .15);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- RESULTS (dark) ---------- */
.results {
  background: #0c0c0c;
  color: #fff;
  padding: 120px 0;
}

.results .section-head h2 {
  color: #fff;
}

.results .section-head p {
  color: rgba(255, 255, 255, .6);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.result-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.result-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 46px);
}

.result-label {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
}

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}

.stars {
  color: var(--o1);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p.quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 14px;
}

.testi-role {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
  padding: 110px 40px;
  text-align: center;
  border-radius: 40px;
  background: #0c0c0c;
  color: #fff;
  overflow: hidden;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  position: relative;
  z-index: 2;
}

.final-cta .sub {
  color: rgba(255, 255, 255, .65);
  margin-top: 20px;
  font-size: 17px;
  position: relative;
  z-index: 2;
}

.final-cta .btn {
  margin-top: 36px;
  position: relative;
  z-index: 2;
  padding: 16px 32px;
  font-size: 16px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .55;
}

.orb1 {
  width: 340px;
  height: 340px;
  background: var(--o1);
  top: -120px;
  left: -100px;
}

.orb2 {
  width: 280px;
  height: 280px;
  background: var(--o3);
  bottom: -100px;
  right: -60px;
}

.cta-float-card {
  position: absolute;
  width: 90px;
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(160deg, #1c1c1c, #050505);
  border: 1px solid rgba(255, 255, 255, .08);
  animation: floaty 8s ease-in-out infinite;
}

.cf1 {
  top: 14%;
  left: 8%;
  --r: -8deg;
  transform: rotate(-8deg);
}

.cf2 {
  bottom: 12%;
  right: 10%;
  --r: 7deg;
  transform: rotate(7deg);
  animation-delay: 1s;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 70px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 26px;
}

.footer-tag {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.footer-col a {
  display: block;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: var(--ink);
}

.footer-col a:hover {
  color: var(--o1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

.socials {
  display: flex;
  gap: 18px;
}

.media-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 24px;
}

.media-modal.open {
  display: flex;
}

.media-modal__content {
  position: relative;
  width: min(760px, 90vw);
  max-height: 80vh;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.media-modal__content iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.media-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

/* ---------- CONTACT SECTION ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--o1);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, .15);
  background: #fff;
}

.insta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 90, 0, .04), rgba(255, 177, 92, .08));
  border-color: rgba(255, 90, 0, .15);
}

.insta-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255, 90, 0, .25);
}

.insta-icon svg {
  width: 32px;
  height: 32px;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid>*:nth-child(1),
  .portfolio-grid>*:nth-child(4) {
    grid-row: span 1;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .transform-wrap {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .price-card.pop {
    transform: none;
    order: -1;
  }

  .hero-visual {
    height: auto;
    padding-bottom: 40px;
  }

  .badge {
    display: none;
  }

  .card-instagram,
  .card-reels,
  .card-podcast,
  .card-shorts {
    display: none;
  }

  .center-card {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 0 auto;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }
}

@media (max-width:640px) {
  .wrap {
    padding: 0 20px;
  }

  section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .result-item {
    padding: 24px 12px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-cols {
    gap: 36px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 130px 0 20px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .final-cta {
    border-radius: 24px;
    padding: 70px 24px;
    margin: 0 16px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    padding: 24px 18px;
  }
}

.nav-logo img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  background: transparent !important;
  display: block !important;
}
