
    :root {
      --bg: #ffffff;
      --bg2: #fdf3e7;
      --bg3: #fbe7d0;
      --ink: #1d1712;
      --ink2: #3a3128;
      --muted: #776c5e;
      --muted2: #a89a86;
      --accent: #f4631e;
      --accent-dk: #d6480a;
      --accent-lt: #fff0e4;
      --teal: #0e8a72;
      --teal-lt: #e3f5ef;
      --rose: #e0483f;
      --amber: #f0a202;
      --border: #f0e2cd;
      --border2: #e3cca7;
      --shadow: 0 2px 18px rgba(244, 99, 30, .08);
      --shadow-md: 0 10px 40px rgba(244, 99, 30, .14);
      --shadow-lg: 0 24px 70px rgba(244, 99, 30, .18);
        --accent2:#ffb238;
  --cream:#fdf2e6;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--ink);
      overflow-x: hidden;
      line-height: 1.65
    }

    a {
      text-decoration: none;
      color: inherit
    }

    ::-webkit-scrollbar {
      width: 7px
    }

    ::-webkit-scrollbar-track {
      background: #fbe9d6
    }

    ::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 4px
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(34px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-12px)
      }
    }

    @keyframes breathe {

      0%,
      100% {
        transform: scaleX(1) scaleY(1)
      }

      50% {
        transform: scaleX(1.06) scaleY(1.03)
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center
      }

      100% {
        background-position: 200% center
      }
    }

    @keyframes marq {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .fu {
      opacity: 0;
      animation: fadeUp .75s ease forwards;
      animation-play-state: paused
    }

    .d1 {
      animation-delay: .08s
    }

    .d2 {
      animation-delay: .18s
    }

    .d3 {
      animation-delay: .28s
    }

    .d4 {
      animation-delay: .38s
    }

    .d5 {
      animation-delay: .48s
    }

    .d6 {
      animation-delay: .58s
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 5%
    }

    .section {
      padding: 110px 0
    }

    .bg-cream {
      background: var(--bg2)
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-weight: 800;
      font-size: .78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 18px
    }

    .kicker::before {
      content: '';
      width: 26px;
      height: 2px;
      background: var(--accent)
    }

    .h1 {
      font-size: clamp(2.6rem, 5vw, 4.4rem);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -.025em
    }

    .h2 {
      font-size: clamp(2rem, 3.8vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.02em
    }

    .lead {
      font-size: 1.1rem;
      color: var(--muted);
      line-height: 1.85;
      max-width: 640px
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: 100px;
      font-weight: 800;
      font-size: .92rem;
      border: none;
      cursor: pointer;
      transition: all .25s
    }

    .btn-accent {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 8px 24px rgba(244, 99, 30, .35)
    }

    .btn-accent:hover {
      background: var(--accent-dk);
      transform: translateY(-2px)
    }

    .btn-fill {
      background: var(--ink);
      color: #fff
    }

    .btn-fill:hover {
      background: var(--accent-dk);
      transform: translateY(-2px)
    }

    /* HEADER */
header{position:sticky;top:0;left:0;right:0;z-index:1000;background:var(--cream)}
.nav-shell{display:flex;align-items:stretch;width:100%;border-bottom:2px solid var(--ink)}

.logo-zone{background:var(--ink);display:flex;align-items:center;gap:10px;padding:0 38px 0 30px;position:relative;clip-path:polygon(0 0,100% 0,calc(100% - 26px) 100%,0 100%);margin-right:-26px;z-index:3}
.logo-zone .mark{width:34px;height:34px;background:var(--accent);display:flex;align-items:center;justify-content:center;border-radius:9px;color:var(--ink);font-weight:900;font-size:1.05rem;transform:rotate(-6deg)}
.logo-zone .word{color:#fff;font-weight:800;font-size:1.18rem;letter-spacing:-.3px;white-space:nowrap}
.logo-zone .word span{color:var(--accent)}

.nav-links{flex:1;display:flex;align-items:center;gap:2px;padding:0 24px 0 56px;position:relative;z-index:2}
.nav-links a{position:relative;color:var(--ink);font-weight:700;font-size:.86rem;padding:24px 16px;white-space:nowrap;display:flex;align-items:center}
.nav-links a::after{content:'';position:absolute;left:16px;right:16px;bottom:14px;height:3px;background:var(--accent);border-radius:3px;transform:scaleX(0);transform-origin:left;transition:transform .25s ease}
.nav-links a:hover::after,.nav-links a.active::after{transform:scaleX(1)}
.nav-links a.active{color:var(--accent)}

.cta-zone{display:flex;align-items:center;gap:10px;padding:0 10px 0 24px;flex-shrink:0}
.signin-link{font-weight:700;font-size:.84rem;color:var(--ink);padding:10px 6px;border-bottom:2px solid transparent;transition:border-color .2s}
.signin-link:hover{border-color:var(--ink)}

.get-started{position:relative;background:var(--ink);color:#fff;font-weight:800;font-size:.85rem;padding:13px 26px 13px 20px;clip-path:polygon(0 0,calc(100% - 14px) 0,100% 50%,calc(100% - 14px) 100%,0 100%);display:flex;align-items:center;gap:8px;transition:background .2s, transform .2s}
.get-started:hover{background:var(--accent);transform:translateX(3px)}

.accent-strip{height:4px;width:100%;background:linear-gradient(90deg,var(--accent),var(--accent2))}

.burger{display:none;width:42px;height:42px;border-radius:10px;background:var(--ink);align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer;flex-shrink:0}
.burger span{width:18px;height:2px;background:var(--accent);border-radius:2px;transition:.25s}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-links a:hover, .nav-links a.active {
    background: #f4631e;
    color: #fff;
}
@media(max-width:980px){
  .nav-links{display:none;position:fixed;top:64px;left:0;right:0;bottom:0;background:var(--ink);flex-direction:column;align-items:stretch;padding:30px 0;gap:0}
  .nav-links.open{display:flex}
  .nav-links a{color:#fff;padding:18px 30px;border-bottom:1px solid rgba(255,255,255,.08)}
  .nav-links a::after{display:none}
  .nav-links a.active{color:var(--accent)}
  .signin-link{display:none}
  .logo-zone{clip-path:none;margin-right:0;padding:0 16px 0 18px}
  .cta-zone{padding:0 14px 0 10px}
  .get-started span.label{display:none}
  .get-started{padding:11px 16px;clip-path:polygon(0 0,calc(100% - 10px) 0,100% 50%,calc(100% - 10px) 100%,0 100%)}
  .burger{display:flex}
}
    /* HERO - unique dark gradient with geometric elements */
    .agency-hero {
      padding: 50px 0 100px;
      background: #1d1712;
      position: relative;
      overflow: hidden
    }

    .agency-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #1d1712 40%, #2e1b0a 70%, rgba(244, 99, 30, .12) 100%)
    }

    .geo-circle {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(244, 99, 30, .12);
      pointer-events: none
    }

    .geo-circle.c1 {
      width: 600px;
      height: 600px;
      top: -200px;
      right: -200px;
      animation: breathe 8s ease-in-out infinite
    }

    .geo-circle.c2 {
      width: 400px;
      height: 400px;
      top: -100px;
      right: -100px;
      animation: breathe 6s 1s ease-in-out infinite
    }

    .geo-circle.c3 {
      width: 200px;
      height: 200px;
      top: 0;
      right: 0;
      border-color: rgba(244, 99, 30, .25)
    }

    .agency-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1
    }

    .ag-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(244, 99, 30, .15);
      color: var(--accent);
      font-weight: 800;
      font-size: .76rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 100px;
      margin-bottom: 22px;
      border: 1px solid rgba(244, 99, 30, .25)
    }

    .ag-h1 {
      font-size: clamp(2.4rem, 4.5vw, 3.9rem);
      font-weight: 800;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: -.025em
    }

    .ag-h1 em {
      color: var(--accent);
      font-style: italic
    }

    .ag-lead {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.85;
      margin-bottom: 32px;
      max-width: 520px
    }

    .ag-proof {
      display: flex;
      gap: 28px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .08)
    }

    .ag-proof-item .v {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent)
    }

    .ag-proof-item .l {
      font-size: .76rem;
      color: rgba(255, 255, 255, .42);
      margin-top: 2px
    }

    /* agency visual - multi-brand dashboard */
    .agency-workspace {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 24px;
      padding: 0;
      overflow: hidden;
      backdrop-filter: blur(8px)
    }

    .aw-topbar {
      background: rgba(255, 255, 255, .04);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      padding: 14px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .aw-brand-tabs {
      display: flex;
      gap: 6px
    }

    .aw-tab {
      background: rgba(255, 255, 255, .06);
      border-radius: 8px;
      padding: 6px 12px;
      font-size: .72rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .5);
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap
    }

    .aw-tab.active {
      background: var(--accent);
      color: #fff
    }

    .aw-body {
      padding: 20px
    }

    .aw-client-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, .04);
      border-radius: 12px;
      padding: 14px 16px;
      margin-bottom: 8px;
      border: 1px solid rgba(255, 255, 255, .06)
    }

    .aw-client-row:last-child {
      margin-bottom: 0
    }

    .aw-client-name {
      font-weight: 800;
      font-size: .83rem;
      color: #fff
    }

    .aw-client-meta {
      font-size: .7rem;
      color: rgba(255, 255, 255, .4);
      margin-top: 2px
    }

    .aw-client-stat {
      text-align: right
    }

    .aw-client-val {
      font-size: 1rem;
      font-weight: 800;
      color: var(--amber)
    }

    .aw-client-chg {
      font-size: .68rem;
      color: #4ade80;
      margin-top: 2px
    }

    /* PAIN POINTS */
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px
    }

    .pain-card {
      border-radius: 22px;
      padding: 32px;
      position: relative;
      overflow: hidden
    }

    .pain-card.before {
      background: var(--bg2);
      border: 1.5px solid var(--border2)
    }

    .pain-card.after {
      background: var(--ink);
      color: #fff
    }

    .pain-label {
      font-size: .7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 14px;
      border-radius: 100px
    }

    .pain-card.before .pain-label {
      background: var(--rose);
      color: #fff
    }

    .pain-card.after .pain-label {
      background: var(--teal);
      color: #fff
    }

    .pain-card h3 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 12px
    }

    .pain-card.after h3 {
      color: #fff
    }

    .pain-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .pain-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .88rem;
      line-height: 1.6
    }

    .pain-card.before .pain-list li {
      color: var(--muted)
    }

    .pain-card.before .pain-list li i {
      color: var(--rose)
    }

    .pain-card.after .pain-list li {
      color: rgba(255, 255, 255, .8)
    }

    .pain-card.after .pain-list li i {
      color: var(--teal)
    }

    /* REVENUE SHARE */
    .rev-share-box {
      background: linear-gradient(135deg, var(--accent), var(--accent-dk));
      border-radius: 28px;
      padding: 56px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 60px;
      color: #fff;
      position: relative;
      overflow: hidden
    }

    .rev-share-box::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .1)
    }

    .rsb-left h3 {
      font-size: 1.9rem;
      font-weight: 800;
      margin-bottom: 14px;
      line-height: 1.2
    }

    .rsb-left p {
      opacity: .82;
      font-size: .97rem;
      line-height: 1.85;
      margin-bottom: 24px
    }

    .rsb-tiers {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .rsb-tier {
      background: rgba(255, 255, 255, .1);
      border-radius: 14px;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, .15)
    }

    .rsb-tier .tier-range {
      font-weight: 800;
      font-size: .9rem
    }

    .rsb-tier .tier-pct {
      font-size: 1.4rem;
      font-weight: 800
    }

    .rsb-right {
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .rsb-calc {
      background: rgba(255, 255, 255, .1);
      border-radius: 20px;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, .15)
    }

    .rsb-calc label {
      font-size: .8rem;
      font-weight: 700;
      opacity: .7;
      margin-bottom: 10px;
      display: block
    }

    .rsb-calc input[type=range] {
      width: 100%;
      accent-color: #fff;
      margin-bottom: 18px
    }

    .rsb-result {
      background: rgba(255, 255, 255, .1);
      border-radius: 12px;
      padding: 16px;
      text-align: center
    }

    .rsb-result .rv {
      font-size: 2.2rem;
      font-weight: 800
    }

    .rsb-result .rl {
      font-size: .76rem;
      opacity: .65;
      margin-top: 4px
    }

    /* FEATURES COLUMNS */
    .agency-feats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .af-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 22px;
      padding: 30px;
      transition: all .3s;
      position: relative
    }

    .af-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-5px);
      border-color: transparent
    }

    .af-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 18px
    }

    .af-icon.orange {
      background: var(--accent-lt);
      color: var(--accent)
    }

    .af-icon.teal {
      background: var(--teal-lt);
      color: var(--teal)
    }

    .af-icon.dark {
      background: var(--ink);
      color: #fff
    }

    .af-icon.amber {
      background: #fff8e3;
      color: var(--amber)
    }

    .af-icon.rose {
      background: #fef0f0;
      color: var(--rose)
    }

    .af-icon.purple {
      background: #f3f0ff;
      color: #7c3aed
    }

    .af-card h4 {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 8px
    }

    .af-card p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.75
    }

    .af-new-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--teal);
      color: #fff;
      font-size: .65rem;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: .5px
    }

    /* STEP PROCESS (custom) */
    .agency-process {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .ap-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 30px;
      position: relative;
      padding-bottom: 50px
    }

    .ap-item:last-child {
      padding-bottom: 0
    }

    .ap-item::before {
      content: '';
      position: absolute;
      left: 39px;
      top: 60px;
      bottom: 0;
      width: 2px;
      background: var(--border2)
    }

    .ap-item:last-child::before {
      display: none
    }

    .ap-num {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      border: 2px solid var(--accent)
    }

    .ap-body {
      padding-top: 14px
    }

    .ap-body .tag {
      display: inline-block;
      background: var(--accent-lt);
      color: var(--accent);
      font-size: .7rem;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 10px
    }

    .ap-body h4 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 8px
    }

    .ap-body p {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.8
    }

    /* WHITE LABEL */
    .wl-preview {
      background: var(--ink);
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .1)
    }

    .wl-topbar {
      background: var(--accent);
      padding: 16px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .wl-logo {
      font-weight: 800;
      color: #fff;
      font-size: 1rem
    }

    .wl-body {
      padding: 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .wl-metric {
      background: rgba(255, 255, 255, .06);
      border-radius: 14px;
      padding: 18px
    }

    .wl-metric .mv {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--amber)
    }

    .wl-metric .ml {
      font-size: .72rem;
      color: rgba(255, 255, 255, .45);
      margin-top: 3px
    }

    .wl-label {
      text-align: center;
      padding: 12px;
      font-size: .75rem;
      color: rgba(255, 255, 255, .3);
      font-weight: 600;
      border-top: 1px solid rgba(255, 255, 255, .06)
    }

    /* FAQ */
    .faq-item {
      border-bottom: 1px solid var(--border2)
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 0;
      cursor: pointer;
      font-weight: 800;
      font-size: 1rem
    }

    .faq-q i {
      transition: transform .3s;
      color: var(--accent);
      flex-shrink: 0;
      margin-left: 16px
    }

    .faq-item.open .faq-q i {
      transform: rotate(180deg)
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease
    }

    .faq-a p {
      padding-bottom: 22px;
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.8
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      color: #fff;
      padding: 84px 0 0
    }

    .foot-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
      gap: 30px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .foot-brand p {
      color: rgba(255, 255, 255, .48);
      font-size: .88rem;
      line-height: 1.8;
      max-width: 280px;
      margin: 14px 0 22px
    }

    .foot-news {
      display: flex;
      border-radius: 100px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .18);
      max-width: 300px
    }

    .foot-news input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 11px 17px;
      color: #fff;
      font-size: .83rem;
      outline: none
    }

    .foot-news input::placeholder {
      color: rgba(255, 255, 255, .35)
    }

    .foot-news button {
      background: var(--accent);
      border: none;
      color: #fff;
      width: 42px;
      cursor: pointer
    }

    .foot-col h5 {
      font-size: .74rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255, 255, 255, .36);
      margin-bottom: 18px
    }

    .foot-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .foot-col ul li a {
      color: rgba(255, 255, 255, .58);
      font-size: .86rem;
      transition: color .2s
    }

    .foot-col ul li a:hover {
      color: var(--accent)
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 0;
      font-size: .78rem;
      color: rgba(255, 255, 255, .3);
      flex-wrap: wrap;
      gap: 13px
    }

    @media(max-width:1000px) {

      .agency-grid,
      .pain-grid,
      .rev-share-box,
      .agency-feats,
      .wl-body {
        grid-template-columns: 1fr
      }

      .nav-links {
        display: none
      }

      .foot-top {
        grid-template-columns: 1fr 1fr 1fr
      }
    }

    @media(max-width:640px) {
      .foot-top {
        grid-template-columns: 1fr
      }

      .ag-proof {
        flex-direction: column;
        gap: 16px
      }
    }
  