/* ============================================
   AdsinDigital — Shared Styles
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0b1d3a;
  --navy2:  #0f2548;
  --gold:   #b8892a;
  --goldl:  #d4a94a;
  --white:  #ffffff;
  --off:    #f5f6f9;
  --light:  #eef0f6;
  --gray:   #64748b;
  --border: #dde2ed;
  --text:   #1a2540;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Nunito Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: var(--fb); font-size: 16px; line-height: 1.65; overflow-x: hidden; }

/* TOPBAR */
.topbar { background: var(--navy); color: rgba(255,255,255,0.55); font-size: 0.775rem; padding: 0.45rem 5rem; display: flex; justify-content: space-between; align-items: center; letter-spacing: 0.02em; }
.topbar a { color: var(--goldl); text-decoration: none; }
.topbar a:hover { color: #fff; }

/* NAV */
nav { position: sticky; top: 0; z-index: 300; background: var(--white); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 5rem; height: 66px; box-shadow: 0 2px 16px rgba(11,29,58,0.08); }
.logo { font-family: var(--fd); font-size: 1.45rem; font-weight: 800; color: var(--navy); text-decoration: none; letter-spacing: -0.01em; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; height: 100%; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li > a { display: flex; align-items: center; gap: 0.25rem; height: 66px; padding: 0 1rem; font-size: 0.845rem; font-weight: 700; color: var(--gray); text-decoration: none; letter-spacing: 0.015em; border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--navy); border-bottom-color: var(--gold); }
.has-drop:hover .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 0 0 6px 6px; min-width: 260px; box-shadow: 0 8px 32px rgba(11,29,58,0.12); z-index: 400; }
.dropdown a { display: block; padding: 0.72rem 1.3rem; font-size: 0.845rem; font-weight: 600; color: var(--gray); text-decoration: none; border-bottom: 1px solid var(--light); transition: background 0.15s, color 0.15s, padding 0.15s; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--off); color: var(--navy); padding-left: 1.7rem; }
.dropdown a.active { color: var(--navy); background: var(--off); font-weight: 700; border-left: 3px solid var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0 1.4rem !important; height: 40px !important; border-radius: 4px !important; font-size: 0.8rem !important; font-weight: 800 !important; letter-spacing: 0.06em !important; text-transform: uppercase; border-bottom: none !important; align-self: center; margin-left: 0.6rem; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--navy) !important; color: var(--goldl) !important; }
.chevron { font-size: 0.65rem; margin-left: 0.1rem; }

/* BUTTONS */
.btn-gold { background: var(--gold); color: var(--navy); padding: 0.88rem 2.1rem; font-family: var(--fb); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-gold:hover { background: var(--goldl); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); padding: 0.88rem 2.1rem; font-family: var(--fb); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.3); border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--goldl); color: var(--goldl); }
.btn-navy { background: var(--navy); color: var(--white); padding: 0.88rem 2.1rem; font-family: var(--fb); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-navy:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* PAGE HERO */
.ph { background: var(--navy); color: var(--white); padding: 5rem 5rem 4.5rem; position: relative; overflow: hidden; }
.ph::before { content: ''; position: absolute; top: 0; right: 0; width: 440px; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(184,137,42,0.12)); pointer-events: none; }
.ph::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(184,137,42,0.08) 0%, transparent 70%); pointer-events: none; }
.ph-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--goldl); }
.breadcrumb span { color: var(--goldl); }
.ph h1 { font-family: var(--fd); font-size: clamp(2rem,4vw,3.4rem); font-weight: 800; line-height: 1.12; margin-bottom: 0.75rem; }
.ph h1 em { font-style: italic; color: var(--goldl); }
.ph .ph-sub { font-family: var(--fd); font-size: clamp(1rem,1.8vw,1.3rem); font-weight: 600; font-style: italic; color: var(--goldl); margin-bottom: 1rem; }
.ph p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 640px; font-weight: 300; line-height: 1.78; }

/* EYEBROW */
.eyebrow { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.eyebrow .el { width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.eyebrow span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* SECTION HEADINGS */
h2.sh { font-family: var(--fd); font-size: clamp(1.7rem,3.2vw,2.7rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; color: var(--navy); margin-bottom: 0.8rem; }
h2.sh.wh { color: var(--white); }
h2.sh em { font-style: italic; color: var(--goldl); }
.ssub { color: var(--gray); max-width: 600px; font-size: 0.965rem; font-weight: 300; margin-bottom: 2.8rem; line-height: 1.78; }
.ssub.wh { color: rgba(255,255,255,0.6); }

/* LAYOUT */
.sw { padding: 5rem 5rem; max-width: 1160px; margin: 0 auto; }
.bg-off { background: var(--off); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--light); }
.sw-full-navy { background: var(--navy); padding: 5rem 0; }
.sw-full-navy .sw { padding-top: 0; padding-bottom: 0; }
.sw-full-off { background: var(--off); padding: 0.1px 0; }

/* GRIDS */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.split-3-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }

/* SERVICE CARDS */
.sc { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--navy); border-radius: 4px; padding: 2rem 1.7rem; transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s; }
.sc:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(11,29,58,0.1); border-top-color: var(--gold); }
.sc-lg { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--navy); border-radius: 4px; padding: 2.4rem 2.2rem; transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s; }
.sc-lg:hover { transform: translateY(-4px); box-shadow: 0 14px 42px rgba(11,29,58,0.1); border-top-color: var(--gold); }
.sc-icon { width: 50px; height: 50px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
.sc h3, .sc-lg h3 { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.sc-lg h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.sc p, .sc-lg p { font-size: 0.875rem; color: var(--gray); line-height: 1.68; font-weight: 300; margin-bottom: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.tag { background: var(--off); color: var(--navy); border: 1px solid var(--border); border-radius: 3px; padding: 0.25rem 0.75rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* PROCESS STEPS (horizontal) */
.proc4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.proc4::before { content: ''; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px; background: var(--border); }
.proc-step { text-align: center; padding: 0 1rem; }
.pnum { width: 52px; height: 52px; background: var(--navy); color: var(--goldl); font-family: var(--fd); font-size: 1rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; border: 3px solid var(--border); position: relative; z-index: 1; }
.proc-step h4 { font-family: var(--fd); font-weight: 700; font-size: 0.97rem; color: var(--navy); margin-bottom: 0.45rem; }
.proc-step p { font-size: 0.84rem; color: var(--gray); line-height: 1.62; font-weight: 300; }

/* PROCESS LIST (vertical) */
.proc-list { display: flex; flex-direction: column; gap: 1.5rem; }
.proc-item { display: flex; gap: 1.4rem; align-items: flex-start; }
.proc-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; border: 3px solid var(--gold); }
.proc-item h4 { font-family: var(--fd); font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 0.3rem; }
.proc-item p { font-size: 0.875rem; color: var(--gray); font-weight: 300; line-height: 1.72; }

/* WHY GRID */
.why6 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.wi { border-left: 3px solid var(--gold); padding-left: 1.4rem; }
.wi h4 { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.wi p { font-size: 0.875rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.7; }
.wi.dk h4 { color: var(--navy); }
.wi.dk p { color: var(--gray); }

/* CHECKLIST */
.ck { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.ck.grid2c { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; }
.ck li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.ck li::before { content: '✔'; color: var(--gold); font-weight: 900; flex-shrink: 0; margin-top: 0.05rem; }
.ck.wh li { color: rgba(255,255,255,0.85); }
.ck.wh li::before { color: var(--goldl); }

/* INFO BOX */
.infobox { background: var(--navy); border-left: 4px solid var(--gold); border-radius: 4px; padding: 1.5rem 1.8rem; }
.infobox h4 { font-family: var(--fd); color: var(--goldl); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.infobox p { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 300; line-height: 1.75; margin: 0; }

/* VALUE CARDS */
.val-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.val-grid.c2 { grid-template-columns: 1fr 1fr; }
.vc { background: var(--off); border: 1px solid var(--border); border-radius: 4px; padding: 1.3rem 1.4rem; border-left: 3px solid var(--gold); }
.vc h4 { font-family: var(--fd); font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; font-size: 0.97rem; }
.vc p { font-size: 0.84rem; color: var(--gray); font-weight: 300; }

/* STAT CARDS */
.stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid var(--gold); border-radius: 4px; padding: 1.3rem 1.8rem; display: flex; align-items: center; gap: 1.5rem; }
.stat-num { font-family: var(--fd); font-size: 2.2rem; font-weight: 800; color: var(--goldl); letter-spacing: -0.02em; white-space: nowrap; }
.stat-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.4; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }

/* PARTNER BADGES */
.partner-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.pbadge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-left: 3px solid var(--gold); border-radius: 4px; padding: 1rem 1.3rem; font-weight: 800; font-size: 0.9rem; color: var(--white); display: flex; align-items: center; gap: 0.5rem; }

/* IMAGE PLACEHOLDER */
.img-ph { background: var(--light); border-radius: 4px; height: 380px; display: flex; align-items: center; justify-content: center; font-size: 4rem; border: 1px solid var(--border); border-top: 4px solid var(--gold); position: relative; }
.img-ph::after { content: 'AdsinDigital'; position: absolute; bottom: 1.4rem; left: 1.4rem; font-family: var(--fd); font-size: 0.9rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }

/* MARQUEE */
.marquee-wrap { background: var(--gold); padding: 0.72rem 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 3rem; animation: marquee 30s linear infinite; width: max-content; }
.mitem { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); white-space: nowrap; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* WORK CARDS */
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.wc { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.wc:hover { box-shadow: 0 12px 36px rgba(11,29,58,0.12); transform: translateY(-3px); }
.wc-thumb { height: 195px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; position: relative; overflow: hidden; }
.wc-overlay { position: absolute; inset: 0; background: rgba(11,29,58,0.82); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.25s; color: var(--goldl); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.wc:hover .wc-overlay { opacity: 1; }
.wc-info { padding: 1.2rem 1.5rem; border-top: 3px solid var(--gold); }
.wc-info h4 { font-family: var(--fd); font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.wc-info span { font-size: 0.8rem; color: var(--gray); font-weight: 300; }
.filter-row { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.fbtn { background: none; border: 1.5px solid var(--border); padding: 0.45rem 1.15rem; border-radius: 3px; font-family: var(--fb); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); cursor: pointer; transition: all 0.2s; }
.fbtn.active, .fbtn:hover { background: var(--navy); color: var(--goldl); border-color: var(--navy); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.ci-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.ci-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-text h5 { font-family: var(--fd); font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.ci-text p { font-size: 0.85rem; color: var(--gray); font-weight: 300; line-height: 1.5; }
.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.fg input, .fg select, .fg textarea { background: var(--off); border: 1.5px solid var(--border); border-radius: 4px; padding: 0.8rem 1rem; font-family: var(--fb); font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.2s; resize: none; width: 100%; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); }
.fg textarea { min-height: 130px; }

/* CTA STRIP */
.cta-strip { background: var(--navy); color: var(--white); text-align: center; padding: 5rem; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(184,137,42,0.05) 40px,rgba(184,137,42,0.05) 41px); }
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { font-family: var(--fd); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-strip h2 em { font-style: italic; color: var(--goldl); }
.cta-strip p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }

/* FOOTER */
.site-footer { background: #070f20; color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.07); padding: 2.5rem 5rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand .logo { font-size: 1.3rem; display: inline-block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-family: var(--fd); font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--goldl); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; max-width: 1160px; margin: 0 auto; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--goldl); }

/* TEAM */
.team3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tc { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.tc:hover { box-shadow: 0 8px 28px rgba(11,29,58,0.1); transform: translateY(-3px); }
.tc-ph { height: 170px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 3rem; border-bottom: 3px solid var(--gold); }
.tc-info { padding: 1.2rem 1.4rem; }
.tc-info h4 { font-family: var(--fd); font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.tc-role { font-size: 0.78rem; color: var(--gold); font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

/* ANIMATIONS */
.fi { animation: fi 0.65s ease both; }
.fi.d1{animation-delay:0.1s} .fi.d2{animation-delay:0.22s} .fi.d3{animation-delay:0.34s} .fi.d4{animation-delay:0.46s}
@keyframes fi { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* RESPONSIVE */
@media(max-width:1024px){
  .topbar,.site-footer{padding-left:1.5rem;padding-right:1.5rem;}
  nav,.ph,.sw,.cta-strip{padding-left:1.5rem;padding-right:1.5rem;}
  .nav-links{display:none;}
  .grid4,.proc4{grid-template-columns:1fr 1fr;gap:1.5rem;}
  .proc4::before{display:none;}
  .why6,.grid3,.split,.split-3-2,.contact-grid{grid-template-columns:1fr;gap:2rem;}
  .grid2,.team3,.work-grid{grid-template-columns:1fr 1fr;}
  .stat-grid{grid-template-columns:1fr 1fr;}
  .partner-grid{grid-template-columns:1fr 1fr;}
  .footer-inner{grid-template-columns:1fr 1fr;gap:2rem;}
  .footer-bottom{flex-direction:column;gap:0.5rem;text-align:center;}
  .frow{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .grid2,.grid3,.grid4,.team3,.work-grid,.val-grid,.proc4,.stat-grid,.partner-grid{grid-template-columns:1fr;}
  .ck.grid2c{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr;}
  .ph{padding:3.5rem 1.5rem 3rem;}
}
