*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body {
    overflow-x: hidden;
    max-width: 100%
}

:root {
    --ink: #09090f;
    --ink2: #0f1018;
    --ink3: #161820;
    --ink4: #1d2030;
    --blue: #2688e8;
    --blue-v: #3399ff;
    --blue-glow: rgba(38, 136, 232, .22);
    --blue-soft: rgba(38, 136, 232, .08);
    --white: #fff;
    --muted: #7a8499;
    --muted2: #a0aabb;
    --border-d: rgba(255, 255, 255, .06);
    --border-b: rgba(38, 136, 232, .2);
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--ink);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    cursor: none
}

.c-dot {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s
}

.c-ring {
    position: fixed;
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: .3;
    transition: width .28s, height .28s, opacity .25s
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 7000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    opacity: .3
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    transition: background .35s, border-color .35s;
    border-bottom: 1px solid transparent
}

nav.scrolled {
    background: rgba(9, 9, 15, .92);
    backdrop-filter: blur(20px);
    border-color: var(--border-d)
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: none
}

.logo-estgo {
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.5px
}

.logo-max-pill {
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 9px 3px 8px;
    border-radius: 7px;
    margin-left: 2px;
    letter-spacing: .8px
}

.logo-sub {
    font-size: 8.5px;
    letter-spacing: 2.8px;
    color: var(--muted);
    text-transform: uppercase;
    margin-left: 11px;
    font-weight: 600
}

.hamburger {
    font-size: 22px;
    color: var(--white);
    cursor: pointer;
    margin-left: auto;
    display: none;
    /* hidden on desktop */
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #111;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: block;
}

    
.nav-links a {
    text-decoration: none;
    color: var(--muted2);
    font-size: 13.5px;
    font-weight: 500;
    transition: color .2s;
    cursor: none
}

.nav-links a:hover {
    color: var(--white)
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: transform .2s, box-shadow .2s !important
}

.nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 20px var(--blue-glow) !important
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 52px 80px;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #050710 0%, #070b18 45%, #060912 100%)
}

.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 260px;
    opacity: 0.06
}

.hero-skyline svg {
    width: 100%;
    height: 100%
}

.hero-orb1 {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(38, 136, 232, .18) 0%, transparent 65%);
    filter: blur(60px);
    animation: float 14s ease-in-out infinite
}

.hero-orb2 {
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(38, 136, 232, .08) 0%, transparent 65%);
    filter: blur(80px);
    animation: float 18s ease-in-out infinite reverse
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(20px, -25px)
    }
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px
}

.hero-loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-b);
    background: var(--blue-soft);
    color: var(--blue-v);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 28px;
    opacity: 0;
    animation: up .6s .1s ease forwards
}

.loc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 8px rgba(255, 68, 68, .6);
    animation: locpulse 2s infinite
}

@keyframes locpulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, .6)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 68, 68, 0)
    }
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 6.5vw, 96px);
    font-weight: 700;
    line-height: .93;
    letter-spacing: -3px;
    margin-bottom: 14px;
    opacity: 0;
    animation: up .75s .25s ease forwards
}

.hero-h1 .blue {
    color: var(--blue)
}

.hero-h1 .dim {
    color: rgba(255, 255, 255, .18);
    font-style: italic;
    font-weight: 300
}

.hero-h1 .nyc {
    color: var(--blue);
    font-style: italic
}

.hero-sub {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted2);
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    animation: up .7s .4s ease forwards
}

.hero-sub b {
    color: var(--white)
}

.hero-sub .nyc-tag {
    background: rgba(38, 136, 232, .12);
    border: 1px solid var(--border-b);
    color: var(--blue-v);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    opacity: 0;
    animation: up .7s .52s ease forwards;
    flex-wrap: wrap
}

.btn-p {
    background: var(--blue);
    color: #fff;
    padding: 15px 32px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: none;
    transition: all .25s;
    box-shadow: 0 8px 32px rgba(38, 136, 232, .35);
    text-decoration: none;
    display: inline-block
}

.btn-p:hover {
    background: var(--blue-v);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(38, 136, 232, .45)
}

.btn-s {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    padding: 15px 28px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: none;
    transition: all .2s;
    text-decoration: none;
    display: inline-block
}

.btn-s:hover {
    background: rgba(255, 255, 255, .1)
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    animation: up .6s .65s ease forwards;
    flex-wrap: wrap
}

.pavs {
    display: flex
}

.pav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink3);
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue-v);
    margin-left: -8px
}

.pav:first-child {
    margin-left: 0
}

.pdiv {
    width: 1px;
    height: 36px;
    background: var(--border-d)
}

.ptext {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
}

.ptext b {
    color: var(--white)
}

.pstars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 2px
}
.pstars1 {
    color: #898785de;
    font-size: 11px;
    margin-bottom: 2px
}

/* NYC SPECIFIC STATS */
.nyc-stats {
    display: flex;
    border-top: 1px solid var(--border-d);
    border-bottom: 1px solid var(--border-d)
}

.nyc-stat {
    flex: 1;
    padding: 26px 0;
    text-align: center;
    border-right: 1px solid var(--border-d)
}

.nyc-stat:last-child {
    border-right: none
}

.nyc-stat-n {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--blue-v);
    line-height: 1;
    letter-spacing: -1.5px
}

.nyc-stat-l {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 6px
}

/* WHY NYC */
.nyc-sec {
    padding: 80px 52px;
    background: var(--ink2)
}

.nyc-inner {
    max-width: 1100px;
    margin: 0 auto
}

.sec-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-v);
    margin-bottom: 16px
}

.sec-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px
}

.sec-h2 .blue {
    color: var(--blue)
}

.sec-h2 .dim {
    color: rgba(255, 255, 255, .2);
    font-style: italic;
    font-weight: 300
}

.sec-p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted2);
    max-width: 580px;
    margin-bottom: 48px
}

.nyc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.nyc-card {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 16px;
    padding: 28px 26px;
    transition: border-color .25s, transform .2s;
    cursor: none
}

.nyc-card:hover {
    border-color: rgba(38, 136, 232, .35);
    transform: translateY(-4px)
}

.nyc-card-ico {
    font-size: 32px;
    margin-bottom: 14px
}

.nyc-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.nyc-card-desc {
    font-size: 13.5px;
    color: var(--muted2);
    line-height: 1.7
}

/* SERVICES */
.svcs-sec {
    padding: 80px 52px
}

.svcs-inner {
    max-width: 1100px;
    margin: 0 auto
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px
}

.svc {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 18px;
    padding: 36px 28px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    cursor: none;
    position: relative;
    overflow: hidden
}

.svc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, var(--blue-soft) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s
}

.svc:hover {
    transform: translateY(-6px);
    border-color: rgba(38, 136, 232, .4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4)
}

.svc:hover::before {
    opacity: 1
}

.svc-ico {
    font-size: 40px;
    margin-bottom: 16px
}

.svc-name {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 12px
}

.svc-desc {
    font-size: 13.5px;
    color: var(--muted2);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1
}

.svc-nyc {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-v);
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px
}

.svc-metric {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue-v);
    margin-bottom: 4px
}

.svc-metric-l {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 16px
}

.svc-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-v);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s
}

.svc:hover .svc-link {
    gap: 12px
}

/* NYC RANKING KEYWORDS */
.keywords-sec {
    padding: 80px 52px;
    background: var(--ink2)
}

.kw-inner {
    max-width: 1100px;
    margin: 0 auto
}

.kw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px
}

.kw-card {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color .2s
}

.kw-card:hover {
    border-color: rgba(38, 136, 232, .3)
}

.kw-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--white)
}

.kw-rank {
    display: flex;
    align-items: center;
    gap: 6px
}

.kw-badge {
    background: rgba(38, 200, 135, .1);
    border: 1px solid rgba(38, 200, 135, .25);
    color: #26c887;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px
}

.kw-vol {
    font-size: 11px;
    color: var(--muted)
}

/* CASE STUDY */
.cs-sec {
    padding: 80px 52px
}

.cs-inner {
    max-width: 1100px;
    margin: 0 auto
}

.cs-card {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 20px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.cs-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-v);
    margin-bottom: 12px
}

.cs-title {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 12px
}

.cs-desc {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.75;
    margin-bottom: 24px
}

.cs-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.csm {
    text-align: center;
    background: var(--ink4);
    border: 1px solid var(--border-d);
    border-radius: 12px;
    padding: 14px 10px
}

.csm-n {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue-v);
    line-height: 1;
    letter-spacing: -1px
}

.csm-l {
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px
}

.cs-visual {
    background: var(--ink4);
    border: 1px solid var(--border-d);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.csv-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px
}

.csv-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted)
}

.csv-badge {
    background: rgba(38, 200, 135, .1);
    border: 1px solid rgba(38, 200, 135, .25);
    color: #26c887;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px
}

.csv-bar {
    display: flex;
    align-items: center;
    gap: 10px
}

.csv-bar-l {
    font-size: 11px;
    color: var(--muted);
    width: 64px;
    flex-shrink: 0
}

.csv-bar-t {
    flex: 1;
    height: 7px;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    overflow: hidden
}

.csv-bar-f {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-v));
    animation: grow 1.8s .5s ease both
}

@keyframes grow {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

.csv-bar-v {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-v);
    width: 40px;
    text-align: right
}

/* FAQ — SEO rich content */
.faq-sec {
    padding: 80px 52px;
    background: var(--ink2)
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border-d)
}

.faq-q {
    padding: 22px 0;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--white);
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s
}

.faq-q:hover {
    color: var(--blue-v)
}

.faq-ico {
    font-size: 20px;
    color: var(--muted);
    transition: transform .3s
}

.faq-item.open .faq-ico {
    transform: rotate(45deg);
    color: var(--blue-v)
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-item.open .faq-body {
    max-height: 400px
}

.faq-body-inner {
    padding: 0 0 22px;
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.8
}

.faq-body-inner b {
    color: var(--white)
}

/* WHY US */
.why-sec {
    padding: 80px 52px
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px
}

.wi {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.wi-num {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue-v);
    flex-shrink: 0
}

.wi-text h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px
}

.wi-text p {
    font-size: 13px;
    color: var(--muted2);
    line-height: 1.65
}

.why-card {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.wc-row {
    background: var(--ink4);
    border: 1px solid var(--border-d);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.wc-ico {
    font-size: 22px;
    flex-shrink: 0
}

.wc-text h5 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px
}

.wc-text p {
    font-size: 11.5px;
    color: var(--muted2)
}

.wc-badge {
    margin-left: auto;
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    color: var(--blue-v);
    font-size: 9.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap
}

/* CTA */
.cta-sec {
    padding: 100px 52px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(38, 136, 232, .12) 0%, transparent 65%);
    pointer-events: none
}

.cta-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2
}

.cta-h2 .blue {
    color: var(--blue)
}

.cta-h2 .dim {
    color: rgba(255, 255, 255, .2);
    font-style: italic;
    font-weight: 300
}

.cta-sub {
    font-size: 16px;
    color: var(--muted2);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.75;
    position: relative;
    z-index: 2
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap
}

/* BREADCRUMB */
.breadcrumb {
    padding: 20px 52px 0;
    position: relative;
    z-index: 2
}

.breadcrumb a,
.breadcrumb span {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none
}

.breadcrumb a:hover {
    color: var(--blue-v)
}

.breadcrumb .sep {
    margin: 0 6px;
    color: var(--border-d)
}

.breadcrumb .current {
    color: var(--muted2)
}

/* FOOTER */
footer {
    background: var(--ink2);
    border-top: 1px solid var(--border-d);
    padding: 60px 52px 32px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

.fbl {
    display: flex;
    align-items: center;
    margin-bottom: 14px
}

.fbl-e {
    font-size: 20px;
    font-weight: 800;
    color: var(--white)
}

.fbl-m {
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 2px;
    letter-spacing: .8px
}

.ftag {
    font-size: 13.5px;
    color: var(--muted2);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 280px
}

.fsocs {
    display: flex;
    gap: 10px
}

.fsoc {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--ink3);
    border: 1px solid var(--border-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted2);
    text-decoration: none;
    cursor: none;
    transition: border-color .2s, color .2s
}

.fsoc:hover {
    border-color: var(--blue);
    color: var(--blue-v)
}

.fcol h5 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px
}

.fcol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fcol li {
    margin-bottom: 9px
}

.fcol a {
    color: var(--muted2);
    text-decoration: none;
    font-size: 13.5px;
    cursor: none;
    transition: color .2s
}

.fcol a:hover {
    color: var(--blue-v)
}

.fbot {
    border-top: 1px solid var(--border-d);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.fbot p {
    font-size: 12.5px;
    color: var(--muted)
}

.fbot a {
    color: var(--muted);
    text-decoration: none
}

/* WhatsApp */
.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 8000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: none;
    transition: transform .25s, box-shadow .25s;
    animation: waPulse 2.5s ease-in-out infinite
}

.wa-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 36px rgba(37, 211, 102, .6);
    animation: none
}

.wa-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff
}

.wa-tooltip {
    position: absolute;
    right: 66px;
    background: rgba(9, 9, 15, .92);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s
}

.wa-btn:hover .wa-tooltip {
    opacity: 1
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .45)
    }

    50% {
        box-shadow: 0 6px 32px rgba(37, 211, 102, .75), 0 0 0 8px rgba(37, 211, 102, .1)
    }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

/* MOBILE */
@media(max-width:680px) {

    html,
    body {
        overflow-x: hidden
    }

    nav {
        padding: 12px 16px !important;
        height: auto !important;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(9, 9, 15, .97) !important;
        border-bottom: 1px solid var(--border-d) !important
    }

.hamburger {
    display: block;
    margin-top: -30px;
    /* show hamburger */
  }

  .logo-estgo {
    font-size: 18px;
    margin-top: 10px;
  }
   .logo-max-pill
  {
    margin-top: 10px;
  }
    .logo-sub {
        display: none
    }


    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .dropbtn {
        margin-bottom: -8px;
    }

    .dropdown-content {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        position: static !important;
        background: transparent;
        box-shadow: none;
        padding-left: 90px;
        gap: 2px;
        margin-top: 0;
    }

    .dropdown-content a {
        padding: 2px 0;
        line-height: 1.2;
        text-align: left;
    }

    .nav-links {
        display: none;
        /* hidden initially */
        flex-direction: column;
        width: 100%;
        margin-top: 12px;
    }

    .nav-links.show {
        display: flex;
        /* show vertically when toggled */
    }

    .c-dot,
    .c-ring {
        display: none;
    }

    /* Hamburger button */
    .hamburger {
        display: block;
        /* show hamburger */
    }

    .nav-links a {
        font-size: 11px !important
    }

    .nav-cta {
        padding: 7px 14px !important;
        font-size: 11px !important
    }

    .hero {
        padding: 110px 20px 60px !important;
        min-height: auto !important
    }

    .hero-h1 {
        font-size: clamp(36px, 10vw, 54px) !important;
        letter-spacing: -1.5px !important
    }

    .hero-sub {
        font-size: 15px !important
    }

    .hero-ctas {
        flex-direction: column !important
    }

    .btn-p,
    .btn-s {
        width: 100% !important;
        text-align: center !important
    }

    .nyc-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important
    }

    .nyc-stat {
        border-right: none !important;
        border-bottom: 1px solid var(--border-d) !important
    }

    .nyc-sec,
    .svcs-sec,
    .keywords-sec,
    .cs-sec,
    .faq-sec,
    .why-sec,
    .cta-sec {
        padding: 56px 20px !important
    }

    .nyc-grid,
    .svc-grid,
    .kw-grid,
    .cs-card,
    .why-inner {
        grid-template-columns: 1fr !important;
        gap: 16px !important
    }

    .cs-card {
        padding: 24px 20px !important
    }

    .sec-h2 {
        font-size: clamp(28px, 8vw, 44px) !important;
        letter-spacing: -1px !important
    }

    .cta-h2 {
        font-size: clamp(30px, 8vw, 52px) !important
    }

    .cta-btns {
        flex-direction: column !important;
        align-items: stretch !important
    }

    footer {
        padding: 48px 20px 28px !important
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px !important
    }

    .fbot {
        flex-direction: column !important;
        text-align: center !important
    }

    .breadcrumb {
        padding: 20px 20px 0 !important
    }
}