*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0e0e10;
  --ink-light: #3a3a42;
  --ink-muted: #8a8a96;
  --rule: #d8d6d0;
  --cream: #f7f5f0;
  --white: #ffffff;
  --accent: #b5933a;
  --accent-light: #d4b568;
  --blue: #1a2f4e;
  --glow: #4a9eff;
  --pad: clamp(72px, 9vw, 130px);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; font-weight: 300; color: #0e0e10; background: #ffffff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px,5vw,80px); height: 72px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid #d8d6d0; transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; letter-spacing: .04em; color: #0e0e10; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logomark { width: 28px; height: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.logomark span { background: #b5933a; display: block; border-radius: 1px; }
.logomark span:nth-child(2), .logomark span:nth-child(3) { background: #0e0e10; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: .74rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: #3a3a42; text-decoration: none; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: #b5933a; transition: width .3s; }
.nav-links a:hover { color: #0e0e10; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #ffffff !important; background: #0e0e10; padding: 9px 22px; border-radius: 2px; text-decoration: none; transition: background .2s !important; }
.nav-cta:hover { background: #b5933a !important; }
.nav-cta::after { display: none !important; }
.mob-btn { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mob-btn span { display: block; width: 22px; height: 1.5px; background: #0e0e10; transition: .3s; }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 72px; overflow: hidden; }
.hero-l { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px,8vw,120px) clamp(24px,5vw,80px); background: #f7f5f0; }
.eyebrow { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: #b5933a; font-weight: 400; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; opacity: 0; animation: fadeUp .8s .2s forwards; }
.eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: #b5933a; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,5vw,4.8rem); font-weight: 300; line-height: 1.06; margin-bottom: 32px; opacity: 0; animation: fadeUp .9s .35s forwards; }
.hero-title em { font-style: italic; color: #b5933a; }
.hero-body { font-size: .97rem; line-height: 1.82; color: #3a3a42; max-width: 430px; margin-bottom: 48px; opacity: 0; animation: fadeUp .9s .5s forwards; }
.hero-acts { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s .65s forwards; }
.btn-p { display: inline-flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: #ffffff; background: #0e0e10; padding: 14px 30px; border-radius: 2px; text-decoration: none; transition: background .25s, transform .2s; }
.btn-p:hover { background: #b5933a; transform: translateY(-2px); }
.btn-s { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #0e0e10; border-bottom: 1px solid #d8d6d0; padding: 14px 0; text-decoration: none; transition: border-color .25s, color .25s; }
.btn-s:hover { border-color: #b5933a; color: #b5933a; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 36px; border-top: 1px solid #d8d6d0; opacity: 0; animation: fadeUp .9s .8s forwards; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; line-height: 1; }
.stat-l { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: #8a8a96; margin-top: 4px; }

.hero-r { position: relative; overflow: hidden; }
.hero-rbg { position: absolute; inset: 0; background: linear-gradient(145deg,#0d1520 0%,#0e0e10 55%,#1a150a 100%); }
.hero-rgrid { position: absolute; inset: 0; background-image: linear-gradient(rgba(181,147,58,.055) 1px,transparent 1px), linear-gradient(90deg,rgba(181,147,58,.055) 1px,transparent 1px); background-size: 48px 48px; }
.hero-rc { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 40px; gap: 18px; }
.hcard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 4px; padding: 26px 30px; width: 100%; max-width: 360px; transition: background .3s, border-color .3s, transform .3s; opacity: 0; cursor: default; }
.hcard:nth-child(1) { animation: fadeLeft .8s .55s forwards; }
.hcard:nth-child(2) { animation: fadeLeft .8s .7s forwards; }
.hcard:nth-child(3) { animation: fadeLeft .8s .85s forwards; }
.hcard:hover { background: rgba(181,147,58,.06); border-color: rgba(181,147,58,.22); transform: translateY(-4px); }
.hcard h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: rgba(255,255,255,.9); margin-bottom: 6px; }
.hcard p { font-size: .78rem; line-height: 1.65; color: rgba(255,255,255,.37); }
.cdot { width: 8px; height: 8px; border-radius: 50%; background: #b5933a; display: inline-block; margin-bottom: 14px; }
.cdot.b { background: #4a9eff; box-shadow: 0 0 8px rgba(74,158,255,.5); }

/* COMMONS */
section { padding: var(--pad) clamp(24px,5vw,80px); }
.inner { max-width: 1200px; margin: 0 auto; }
.slabel { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: #b5933a; font-weight: 400; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.slabel::before { content: ''; display: block; width: 24px; height: 1px; background: #b5933a; }
.stitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.8vw,3.4rem); font-weight: 300; line-height: 1.1; color: #0e0e10; margin-bottom: 16px; }
.stitle em { font-style: italic; color: #b5933a; }
.sintro { font-size: .94rem; line-height: 1.85; color: #3a3a42; max-width: 480px; }
hr.div { width: 100%; height: 1px; background: #d8d6d0; border: none; }

/* ABOUT */
#about { background: #ffffff; }
.about-g { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,8vw,120px); align-items: start; }
.abody { font-size: .94rem; line-height: 1.85; color: #3a3a42; margin-bottom: 22px; }
.pillars { margin-top: 44px; }
.pillar { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid #d8d6d0; }
.pillar:first-child { border-top: 1px solid #d8d6d0; }
.pnum { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #b5933a; font-weight: 400; min-width: 28px; padding-top: 2px; }
.pillar h4 { font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #0e0e10; margin-bottom: 4px; }
.pillar p { font-size: .82rem; line-height: 1.7; color: #8a8a96; }

/* AI SECTION */
#ai { background: #1a2f4e; position: relative; overflow: hidden; }
.ai-bgrid { position: absolute; inset: 0; background-image: linear-gradient(rgba(74,158,255,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(74,158,255,.05) 1px,transparent 1px); background-size: 56px 56px; pointer-events: none; }
.ai-bglow { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(74,158,255,.08) 0%,transparent 70%); pointer-events: none; }
.ai-inner { position: relative; z-index: 2; }
.ai-g { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,8vw,100px); align-items: center; }
#ai .slabel { color: rgba(74,158,255,.8); }
#ai .slabel::before { background: rgba(74,158,255,.8); }
#ai .stitle { color: #ffffff; }
#ai .sintro { color: rgba(255,255,255,.48); }
.ai-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: #4a9eff; background: rgba(74,158,255,.1); border: 1px solid rgba(74,158,255,.2); padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; }
.ai-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #4a9eff; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.ai-feats { margin-top: 40px; }
.ai-feat { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.ai-feat:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.ai-ficon { width: 36px; height: 36px; border-radius: 6px; background: rgba(74,158,255,.08); border: 1px solid rgba(74,158,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-ficon svg { width: 16px; height: 16px; stroke: #4a9eff; fill: none; stroke-width: 1.5; }
.ai-feat h4 { font-size: .83rem; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.ai-feat p { font-size: .79rem; line-height: 1.72; color: rgba(255,255,255,.37); }

/* NOVITRAC CARD */
.nv-card { background: rgba(255,255,255,.04); border: 1px solid rgba(74,158,255,.2); border-radius: 8px; overflow: hidden; }
.nv-head { background: linear-gradient(135deg,rgba(74,158,255,.12) 0%,rgba(74,158,255,.04) 100%); padding: 32px 32px 24px; border-bottom: 1px solid rgba(74,158,255,.12); position: relative; overflow: hidden; }
.nv-head::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; border: 1px solid rgba(74,158,255,.1); }
.nv-head::after { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%; border: 1px solid rgba(74,158,255,.07); }
.nv-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: #ffffff; letter-spacing: .06em; margin-bottom: 6px; position: relative; z-index: 1; }
.nv-logo span { color: #4a9eff; }
.nv-sub { font-size: .69rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(74,158,255,.6); position: relative; z-index: 1; }
.nv-body { padding: 26px 30px; }
.nv-desc { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.44); margin-bottom: 22px; }
.nv-caps { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.nv-cap { display: flex; align-items: center; gap: 10px; font-size: .79rem; color: rgba(255,255,255,.62); }
.nv-cap::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: #4a9eff; flex-shrink: 0; }
.nv-cta { display: inline-flex; align-items: center; gap: 8px; font-size: .71rem; letter-spacing: .1em; text-transform: uppercase; color: #4a9eff; border: 1px solid rgba(74,158,255,.3); padding: 10px 20px; border-radius: 2px; text-decoration: none; transition: background .2s, border-color .2s; }
.nv-cta:hover { background: rgba(74,158,255,.1); border-color: rgba(74,158,255,.5); }

/* AI WEB SERVICES SECTION */
#ai-services { background: #0e0e10; position: relative; overflow: hidden; }
.ais-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(181,147,58,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(181,147,58,.04) 1px,transparent 1px); background-size: 60px 60px; pointer-events: none; }
.ais-glow1 { position: absolute; bottom: -120px; left: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle,rgba(181,147,58,.07) 0%,transparent 70%); pointer-events: none; }
.ais-glow2 { position: absolute; top: -80px; right: -60px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle,rgba(74,158,255,.06) 0%,transparent 70%); pointer-events: none; }
.ais-inner { position: relative; z-index: 2; }
.ais-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
#ai-services .slabel { color: #d4b568; }
#ai-services .slabel::before { background: #d4b568; }
#ai-services .stitle { color: #ffffff; }
.ais-pitch { font-size: .94rem; line-height: 1.85; color: rgba(255,255,255,.44); max-width: 440px; align-self: end; }
.ais-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(181,147,58,.12); border: 1px solid rgba(181,147,58,.3); border-radius: 100px; padding: 7px 16px; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: #d4b568; margin-top: 16px; }
.ais-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #b5933a; animation: pulse 2s infinite; }
.ais-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); border-radius: 6px; overflow: hidden; margin-bottom: 48px; }
.ais-card { background: rgba(255,255,255,.02); padding: 40px 32px; position: relative; overflow: hidden; transition: background .35s; cursor: default; display: flex; flex-direction: column; }
.ais-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,#b5933a,transparent); opacity: 0; transition: opacity .35s; }
.ais-card:hover { background: rgba(181,147,58,.05); }
.ais-card:hover::before { opacity: 1; }
.ais-card.featured { background: rgba(74,158,255,.04); border-left: 1px solid rgba(74,158,255,.15); border-right: 1px solid rgba(74,158,255,.15); }
.ais-card.featured::before { background: linear-gradient(90deg,transparent,#4a9eff,transparent); opacity: .6; }
.ais-card-icon { width: 48px; height: 48px; border-radius: 8px; border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.ais-card.featured .ais-card-icon { border-color: rgba(74,158,255,.25); background: rgba(74,158,255,.08); }
.ais-card-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.5; }
.ais-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: #ffffff; line-height: 1.15; margin-bottom: 12px; }
.ais-card p { font-size: .82rem; line-height: 1.78; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.ais-card-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; flex: 1; }
.ais-cf { display: flex; align-items: flex-start; gap: 10px; font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.ais-cf::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: #b5933a; flex-shrink: 0; margin-top: 6px; }
.ais-card.featured .ais-cf::before { background: #4a9eff; }
.ais-price { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); }
.ais-price-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 4px; }
.ais-price-val { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: #ffffff; line-height: 1; }
.ais-price-val span { font-size: .75rem; font-family: 'DM Sans', sans-serif; font-weight: 300; color: rgba(255,255,255,.35); margin-left: 4px; }
.ais-price-note { font-size: .7rem; color: #d4b568; margin-top: 4px; }
.ais-card.featured .ais-price-note { color: #4a9eff; }
.ais-banner { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(181,147,58,.08); border: 1px solid rgba(181,147,58,.2); border-radius: 4px; padding: 24px 32px; flex-wrap: wrap; }
.ais-banner-l { display: flex; align-items: center; gap: 16px; }
.ais-banner-icon { width: 42px; height: 42px; border-radius: 6px; background: rgba(181,147,58,.15); border: 1px solid rgba(181,147,58,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ais-banner-icon svg { width: 20px; height: 20px; stroke: #d4b568; fill: none; stroke-width: 1.5; }
.ais-banner-text h4 { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: 3px; letter-spacing: .03em; }
.ais-banner-text p { font-size: .76rem; color: rgba(255,255,255,.38); line-height: 1.6; }
.ais-banner-cta { display: inline-flex; align-items: center; gap: 8px; font-size: .71rem; letter-spacing: .1em; text-transform: uppercase; color: #d4b568; border: 1px solid rgba(181,147,58,.35); padding: 10px 22px; border-radius: 2px; text-decoration: none; transition: background .2s, border-color .2s; white-space: nowrap; }
.ais-banner-cta:hover { background: rgba(181,147,58,.1); border-color: rgba(181,147,58,.6); }

/* SERVICES */
#services { background: #f7f5f0; }
.svc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #d8d6d0; border: 1px solid #d8d6d0; border-radius: 4px; overflow: hidden; }
.tile { background: #ffffff; padding: 34px 26px; transition: background .3s; cursor: default; }
.tile:hover { background: #0e0e10; }
.tile:hover .tico path, .tile:hover .tico rect, .tile:hover .tico circle, .tile:hover .tico line, .tile:hover .tico polyline, .tile:hover .tico ellipse { stroke: #b5933a; }
.tile:hover .ttitle { color: #ffffff; }
.tile:hover .ttext { color: rgba(255,255,255,.44); }
.tile:hover .ai-b { background: rgba(74,158,255,.12); }
.tico { width: 25px; height: 25px; margin-bottom: 18px; }
.tico path, .tico rect, .tico circle, .tico line, .tico polyline, .tico ellipse { stroke: #0e0e10; fill: none; stroke-width: 1.5; transition: stroke .3s; }
.ttitle { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 400; color: #0e0e10; margin-bottom: 9px; transition: color .3s; }
.ttext { font-size: .78rem; line-height: 1.72; color: #8a8a96; transition: color .3s; }
.ai-b { display: inline-flex; align-items: center; gap: 5px; font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; color: #4a9eff; background: rgba(26,47,78,.07); border: 1px solid rgba(74,158,255,.18); padding: 3px 8px; border-radius: 100px; margin-bottom: 9px; transition: background .3s; }
.ai-bd { width: 4px; height: 4px; border-radius: 50%; background: #4a9eff; }

/* WHY */
#why { background: #0e0e10; color: #ffffff; }
.why-g { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,8vw,120px); align-items: center; }
#why .slabel { color: #d4b568; }
#why .slabel::before { background: #d4b568; }
#why .stitle { color: #ffffff; }
#why .sintro { color: rgba(255,255,255,.44); }
.why-items { display: flex; flex-direction: column; }
.wi { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.06); align-items: flex-start; }
.wi:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.winum { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: rgba(255,255,255,.07); min-width: 34px; line-height: 1; }
.wi h4 { font-size: .81rem; font-weight: 500; letter-spacing: .06em; color: rgba(255,255,255,.82); margin-bottom: 5px; }
.wi p { font-size: .79rem; line-height: 1.75; color: rgba(255,255,255,.37); }

/* CONTACT */
#contact { background: #ffffff; }
.ct-solo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,8vw,120px); align-items: start; }
.ct-list { margin-top: 38px; display: flex; flex-direction: column; gap: 20px; }
.ct-item { display: flex; gap: 13px; align-items: flex-start; }
.ct-icon { width: 35px; height: 35px; background: #f7f5f0; border: 1px solid #d8d6d0; border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-icon svg { width: 15px; height: 15px; stroke: #0e0e10; fill: none; stroke-width: 1.5; }
.ct-lbl { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: #8a8a96; margin-bottom: 2px; }
.ct-val { font-size: .87rem; color: #0e0e10; line-height: 1.5; }
.ct-val a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.ct-val a:hover { border-color: #b5933a; }

/* FOOTER */
footer { background: #0e0e10; color: rgba(255,255,255,.38); padding: 44px clamp(24px,5vw,80px) 26px; }
.ft { max-width: 1200px; margin: 0 auto; }
.ft-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.06); gap: 32px; flex-wrap: wrap; }
.ft-brand { max-width: 250px; }
.ft-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; font-weight: 400; color: rgba(255,255,255,.8); letter-spacing: .04em; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ft-brand p { font-size: .77rem; line-height: 1.7; color: rgba(255,255,255,.28); }
.ft-col h5 { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 13px; }
.ft-col a { display: block; font-size: .79rem; color: rgba(255,255,255,.28); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.ft-col a:hover { color: #d4b568; }
.ft-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; flex-wrap: wrap; gap: 10px; }
.ft-copy { font-size: .72rem; color: rgba(255,255,255,.2); }

/* ACCESSIBILITY */
a:focus-visible, button:focus-visible, .mob-btn:focus-visible { outline: 2px solid #b5933a; outline-offset: 3px; border-radius: 2px; }
.skip-link { position: absolute; left: -9999px; top: auto; z-index: 1000; background: #0e0e10; color: #ffffff; padding: 12px 20px; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.skip-link:focus { left: 16px; top: 16px; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .eyebrow, .hero-title, .hero-body, .hero-acts, .hero-stats, .hcard { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* NOVITRAC STICKY WIDGET */
.nv-sticky { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.nv-powered { display: inline-flex; align-items: center; gap: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); background: rgba(14,14,16,0.85); border: 1px solid rgba(74,158,255,0.25); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 100px; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
.nv-powered:hover { background: rgba(26,47,78,0.95); color: #4a9eff; border-color: rgba(74,158,255,0.5); }
.nv-dot { width: 5px; height: 5px; border-radius: 50%; background: #4a9eff; animation: pulse 2s infinite; flex-shrink: 0; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .ais-cards { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-r { min-height: 360px; }
  .hero-rc { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hcard { max-width: 260px; }
  .about-g, .svc-head, .port-intro, .why-g, .ct-solo, .ai-g, .ais-head, .blog-head { grid-template-columns: 1fr; gap: 38px; }
  .port-list { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mob-btn { display: flex; }
  .ais-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .ft-top { flex-direction: column; }
  .ct-solo { gap: 32px; }
}
@media(max-width:480px) {
  .nav-cta { padding: 8px 14px; font-size: .64rem; }
  .hero-l { padding-left: clamp(20px,6vw,80px); padding-right: clamp(20px,6vw,80px); }
  section { padding: clamp(56px,12vw,130px) 20px; }
}
