/* ============================================
   Advertise in NY — Clean Rewrite
   ============================================ */

/* RESET */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',system-ui,-apple-system,sans-serif;background:#0a0a1a;color:#f0f0f5;line-height:1.7;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:#00f0ff;text-decoration:none;transition:color .25s}
a:hover{color:#ff00e5}
ul{list-style:none}

/* LAYOUT */
.container{width:90%;max-width:1200px;margin:0 auto}

/* ANIMATION */
.fade-up{opacity:0;transform:translateY(30px);transition:opacity .6s cubic-bezier(.22,1,.36,1),transform .6s cubic-bezier(.22,1,.36,1);transition-delay:var(--d,0s)}
.fade-up.visible{opacity:1;transform:none}

/* ========== NAV ========== */
.navbar{position:fixed;top:0;left:0;width:100%;z-index:1000;background:rgba(10,10,26,.92);backdrop-filter:blur(12px);border-bottom:1px solid #1e1e3a}
.navbar-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.nav-logo{font-size:1.25rem;font-weight:800;color:#f0f0f5}
.nav-logo span{color:#00f0ff}
.nav-links{display:flex;gap:2rem}
.nav-links a{color:#b0b0c8;font-size:.92rem;font-weight:500}
.nav-links a:hover,.nav-links a.active{color:#00f0ff}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px}
.nav-toggle span{display:block;width:24px;height:2px;background:#fff;border-radius:2px}

/* ========== HERO ========== */
@keyframes kb{from{transform:scale(1.06)}to{transform:scale(1)}}

.hero{position:relative;min-height:90vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;padding-top:64px}
.hero-bg{position:absolute;inset:-5%;background-size:cover;background-position:center;z-index:0;animation:kb 10s ease-out forwards}
.hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,10,26,.55) 0%,rgba(10,10,26,.8) 55%,rgba(10,10,26,1) 100%)}
.hero-content{position:relative;z-index:2;max-width:900px;padding:2rem}
.hero h1{font-size:3.4rem;font-weight:800;line-height:1.12;margin-bottom:1.5rem;background:linear-gradient(135deg,#f0f0f5 30%,#00f0ff);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero p{font-size:1.2rem;color:#b0b0c8;margin-bottom:2.5rem;line-height:1.7;max-width:680px;margin-left:auto;margin-right:auto}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn{display:inline-block;padding:14px 36px;border-radius:50px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .25s;border:none}
.btn-primary{background:linear-gradient(135deg,#00f0ff,#ff00e5);color:#0a0a1a}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,240,255,.3);color:#0a0a1a}
.btn-outline{border:2px solid #00f0ff;color:#00f0ff;background:transparent}
.btn-outline:hover{background:#00f0ff;color:#0a0a1a;transform:translateY(-2px)}

/* ========== STATS ========== */
.stats{background:#111128;border-top:1px solid rgba(0,240,255,.1);border-bottom:1px solid rgba(0,240,255,.1);padding:3rem 0}

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

.stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:.6rem;
}

.stat-icon{
  width:44px;
  height:44px;
  flex-shrink:0;
}

.stat-num{
  font-size:2.2rem;
  font-weight:800;
  color:#fff;
  line-height:1;
}

.stat-lbl{
  font-size:.78rem;
  color:#6e6e8a;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-weight:600;
}

/* ========== SERVICES (light bg) ========== */
.services{background:#f4f5f8;padding:80px 0}

.title-dark{font-size:2.1rem;font-weight:700;text-align:center;margin-bottom:1rem;color:#1a1a2e}
.sub-dark{text-align:center;color:#555;font-size:1.1rem;max-width:650px;margin:0 auto 3rem}

.svc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}

.svc-card{
  background:#fff;
  border:1px solid #e0e0e8;
  border-radius:12px;
  padding:2.5rem 1.8rem;
  text-align:center;
  transition:transform .25s,box-shadow .25s;
}
.svc-card:hover{transform:translateY(-6px);box-shadow:0 12px 36px rgba(0,0,0,.08)}

.svc-icon{
  width:88px;
  height:88px;
  margin:0 auto 1.5rem;
  display:block;
}

.svc-card h3{font-size:1.2rem;font-weight:700;margin-bottom:.8rem;color:#1a1a2e}
.svc-card p{font-size:.93rem;color:#555;line-height:1.7}

/* ========== ARTICLES (dark bg) ========== */
.articles{background:#0a0a1a;padding:80px 0}

.title-light{font-size:2.1rem;font-weight:700;text-align:center;margin-bottom:1rem;background:linear-gradient(135deg,#00f0ff,#ff00e5);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.sub-light{text-align:center;color:#b0b0c8;font-size:1.1rem;max-width:650px;margin:0 auto 3rem}

.art-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
}

.art-card{
  background:#14142b;
  border:1px solid #1e1e3a;
  border-radius:12px;
  overflow:hidden;
  text-decoration:none;
  transition:transform .25s,box-shadow .25s,border-color .25s;
}
.art-card:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,240,255,.08);border-color:rgba(0,240,255,.25)}
.art-card img{width:100%;height:220px;object-fit:cover}
.art-body{padding:1.5rem}
.art-body h3{font-size:1.12rem;font-weight:700;margin-bottom:.75rem;color:#f0f0f5}
.art-body p{font-size:.92rem;color:#b0b0c8;margin-bottom:1rem;line-height:1.6}
.art-link{font-size:.88rem;font-weight:600;color:#00f0ff}

/* ========== ABOUT (light bg) ========== */
.about{background:#ebedf2;padding:80px 0}

.about-box{max-width:780px;margin:0 auto;text-align:center}
.about-box p{font-size:1.05rem;color:#444;line-height:1.8;margin-bottom:1.5rem}
.about-box p:last-child{margin-bottom:0}

/* ========== CTA (dark) ========== */
.cta{background:linear-gradient(135deg,rgba(0,240,255,.07),rgba(255,0,229,.07)),#0a0a1a;padding:80px 0;text-align:center;border-top:1px solid rgba(0,240,255,.1)}
.cta h2{font-size:2rem;font-weight:700;margin-bottom:1rem;color:#f0f0f5}
.cta p{font-size:1.1rem;color:#b0b0c8;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}

/* ========== FOOTER ========== */
.footer{background:#111128;border-top:1px solid #1e1e3a;padding:40px 0 24px}
.ft-inner{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:2rem}
.ft-brand{max-width:320px}
.ft-brand .nav-logo{margin-bottom:.75rem;display:inline-block}
.ft-brand>p{font-size:.88rem;color:#6e6e8a;line-height:1.6}
.ft-col h4{font-size:.95rem;font-weight:700;color:#f0f0f5;margin-bottom:.75rem}
.ft-col li{margin-bottom:.5rem}
.ft-col a{font-size:.88rem;color:#6e6e8a}
.ft-col a:hover{color:#00f0ff}
.ft-social{display:flex;gap:.75rem;margin-top:.75rem}
.ft-social a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;border:1px solid #2a2a45;color:#6e6e8a;font-size:.82rem;font-weight:700;transition:all .25s}
.ft-social a:hover{border-color:#00f0ff;color:#00f0ff}
.ft-bottom{text-align:center;margin-top:2rem;padding-top:1.5rem;border-top:1px solid #1e1e3a;font-size:.82rem;color:#6e6e8a}

/* ============================================
   Article Page Styles
   ============================================ */
.breadcrumb{padding:80px 0 0;font-size:.88rem}
.breadcrumb-list{list-style:none;display:flex;flex-wrap:wrap;gap:.5rem;padding:1rem 0}
.breadcrumb-list li::after{content:'/';margin-left:.5rem;color:#2a2a45}
.breadcrumb-list li:last-child::after{display:none}
.breadcrumb-list a{color:#6e6e8a;font-size:.88rem}
.breadcrumb-list a:hover{color:#00f0ff}
.breadcrumb-list li:last-child{color:#b0b0c8}

.article-hero{position:relative;padding-top:64px}
.article-hero-bg{width:100%;height:400px;object-fit:cover;display:block}
.article-hero-overlay{position:absolute;inset:0;top:64px;background:linear-gradient(180deg,rgba(10,10,26,.3) 0%,rgba(10,10,26,.9) 90%,rgba(10,10,26,1) 100%)}
.article-header{position:relative;z-index:1;max-width:860px;margin:-100px auto 0;padding:0 5%}
.article-meta{display:flex;gap:1.5rem;flex-wrap:wrap;font-size:.88rem;color:#6e6e8a;margin-bottom:1rem}
.article-meta span{display:flex;align-items:center;gap:.4rem}
.article-header h1{font-size:2.4rem;font-weight:800;line-height:1.2;margin-bottom:1rem;color:#f0f0f5}
.article-header .excerpt{font-size:1.1rem;color:#b0b0c8;line-height:1.7;border-left:3px solid #00f0ff;padding-left:1.25rem;margin-bottom:2rem}

.article-content{max-width:860px;margin:0 auto;padding:2rem 5% 4rem}
.article-content h2{font-size:1.7rem;font-weight:700;margin:2.5rem 0 1rem;color:#f0f0f5;padding-bottom:.5rem;border-bottom:1px solid #1e1e3a}
.article-content h3{font-size:1.3rem;font-weight:600;margin:2rem 0 .75rem;color:#00f0ff}
.article-content p{margin-bottom:1.25rem;color:#b0b0c8;line-height:1.8;font-size:1.02rem}
.article-content ul,.article-content ol{margin:0 0 1.5rem 1.5rem;color:#b0b0c8}
.article-content li{margin-bottom:.65rem;line-height:1.7}
.article-content li strong{color:#f0f0f5}
.article-content img{border-radius:12px;margin:2rem 0;border:1px solid #1e1e3a}
.article-content strong{color:#f0f0f5;font-weight:600}

.article-content .table-wrapper{overflow-x:auto;margin:1.5rem 0;border-radius:12px;border:1px solid #1e1e3a}
.article-content table{width:100%;border-collapse:collapse;font-size:.92rem}
.article-content thead{background:linear-gradient(135deg,rgba(0,240,255,.1),rgba(255,0,229,.05))}
.article-content th{padding:14px 16px;text-align:left;font-weight:700;color:#00f0ff;border-bottom:2px solid #00f0ff;white-space:nowrap}
.article-content td{padding:12px 16px;border-bottom:1px solid #1e1e3a;color:#b0b0c8}
.article-content tbody tr:nth-child(even){background:rgba(255,255,255,.02)}
.article-content tbody tr:hover{background:rgba(0,240,255,.04)}

.video-wrapper{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;margin:2rem 0;border-radius:12px;border:1px solid #1e1e3a}
.video-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}

.faq-item{margin-bottom:1.5rem;padding:1.5rem;background:#14142b;border:1px solid #1e1e3a;border-radius:12px}
.faq-item h3{margin-top:0;margin-bottom:.75rem;font-size:1.1rem;color:#f0f0f5;border:none;padding:0}
.faq-item p{margin-bottom:0;font-size:.95rem}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:768px){
  .hero h1{font-size:2.2rem}
  .hero p{font-size:1rem}
  .title-dark,.title-light{font-size:1.6rem}
  .nav-links{display:none;position:absolute;top:64px;left:0;width:100%;background:rgba(10,10,26,.97);flex-direction:column;padding:1.5rem 2rem;gap:1rem;border-bottom:1px solid #1e1e3a}
  .nav-links.open{display:flex}
  .nav-toggle{display:flex}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .svc-grid{grid-template-columns:1fr}
  .art-grid{grid-template-columns:1fr}
  .ft-inner{flex-direction:column}
  .hero-btns{flex-direction:column;align-items:center}
  .article-hero-bg{height:260px}
  .article-header{margin-top:-60px}
  .article-header h1{font-size:1.7rem}
}

@media(max-width:480px){
  .hero h1{font-size:1.8rem}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat-num{font-size:1.6rem}
  .btn{padding:12px 28px;font-size:.92rem}
}
