/* ============================================================
   Cloud Centric Inc — Stylesheet (Vanilla, no framework)
   ============================================================ */
:root {
  --navy:   #0a1628;
  --navy2:  #112040;
  --blue:   #1a56db;
  --sky:    #3b82f6;
  --gold:   #f59e0b;
  --gold2:  #fbbf24;
  --cream:  #f8f7f2;
  --white:  #ffffff;
  --text:   #1e293b;
  --muted:  #64748b;
  --border: #e2e8f0;
  --green:  #10b981;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.13);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06); transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; white-space: nowrap; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a {
  color: rgba(255,255,255,.72); font-size: .84rem; font-weight: 500;
  padding: .45rem .85rem; border-radius: 6px; transition: all .18s; white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,.13); box-shadow: inset 0 -2px 0 var(--gold); font-weight: 600; }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold2) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── LAYOUT ── */
.main { padding-top: 64px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.bg-blue   { background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 100%); position: relative; overflow: hidden; }
.bg-blue::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 48px 48px; pointer-events: none; }
.tc { text-align: center; }

/* ── TYPOGRAPHY ── */
.tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--blue); background: rgba(26,86,219,.09);
  padding: .28rem .8rem; border-radius: 100px; margin-bottom: .65rem;
}
.tag-gold  { color: var(--gold); background: rgba(245,158,11,.12); }
.tag-white { color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }
h2.sh { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 700; line-height: 1.15; margin-bottom: .7rem; }
.divider { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin: .65rem 0 1.25rem; }
.divider.c { margin: .65rem auto 1.25rem; }
.lead { font-size: 1.02rem; color: var(--muted); line-height: 1.8; max-width: 580px; }
.lead.wide { max-width: 760px; }
.lead.white { color: rgba(255,255,255,.62); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: .75rem 1.85rem; border-radius: 6px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .18s; border: none; font-family: 'DM Sans', sans-serif; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,86,219,.3); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-group.center { justify-content: center; }

/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.g5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.g6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem; transition: all .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.card-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.card h3 { font-size: .97rem; font-weight: 700; margin-bottom: .4rem; }
.card p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* practice card flip-hover */
.pcard { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem; transition: all .2s; cursor: default; position: relative; overflow: hidden; }
.pcard::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue), #1d4ed8); opacity: 0; transition: opacity .2s; }
.pcard:hover::before { opacity: 1; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard:hover .pi, .pcard:hover .ph, .pcard:hover .pp { color: #fff !important; }
.pi { font-size: 1.6rem; margin-bottom: .6rem; position: relative; z-index: 1; }
.ph { font-size: .88rem; font-weight: 700; margin-bottom: .3rem; position: relative; z-index: 1; }
.pp { font-size: .75rem; color: var(--muted); line-height: 1.55; position: relative; z-index: 1; }

/* dark cards */
.dcard { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 1.4rem; transition: all .2s; }
.dcard:hover { background: rgba(255,255,255,.09); border-color: rgba(59,130,246,.4); transform: translateY(-3px); }
.dcard .dico { font-size: 1.75rem; margin-bottom: .6rem; }
.dcard h3 { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: .3rem; }
.dcard p  { color: rgba(255,255,255,.48); font-size: .78rem; line-height: 1.6; }

/* ── CLIENT LOGO CARDS ── */
.logo-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.25rem .75rem .9rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .55rem; min-height: 100px;
  transition: all .2s;
}
.logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.logo-card .logo-img-wrap { width: 60px; height: 40px; display: flex; align-items: center; justify-content: center; }
.logo-card img { max-width: 60px; max-height: 38px; width: auto; height: auto; object-fit: contain; transition: filter .2s; }
.logo-card:hover img { filter: none !important; }
.logo-card .logo-fallback {
  width: 52px; height: 36px; border-radius: 7px; background: var(--blue);
  color: #fff; font-weight: 700; font-size: 1rem; display: flex;
  align-items: center; justify-content: center;
}
.logo-card .logo-name { font-size: .65rem; font-weight: 600; color: var(--muted); text-align: center; line-height: 1.35; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.ftab {
  padding: .42rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white); color: var(--muted);
  cursor: pointer; transition: all .18s; font-family: 'DM Sans', sans-serif;
}
.ftab:hover { border-color: var(--blue); color: var(--blue); }
.ftab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── HERO ── */
.hero { background: var(--navy); padding: 5.5rem 0 4rem; position: relative; overflow: hidden; min-height: calc(100vh - 64px); display: flex; align-items: center; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(59,130,246,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(59,130,246,.055) 1px,transparent 1px); background-size: 64px 64px; }
.hero-glow1 { position: absolute; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle,rgba(26,86,219,.28) 0%,transparent 68%); top: -220px; right: -120px; pointer-events: none; }
.hero-glow2 { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(245,158,11,.13) 0%,transparent 70%); bottom: -80px; left: 5%; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.28); color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .32rem .9rem; border-radius: 100px; margin-bottom: 1.25rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5.5vw,4.8rem); font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--sky); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.62); line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 3rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 2.25rem; margin-top: 3rem; flex-wrap: wrap; }
.hs-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1; }
.hs-num span { color: var(--gold); }
.hs-label { font-size: .72rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .07em; margin-top: .2rem; }

/* ── TICKER ── */
.ticker { background: var(--gold); overflow: hidden; padding: .55rem 0; }
.ticker-track { display: flex; gap: 2.5rem; animation: ticker 40s linear infinite; white-space: nowrap; }
.ticker-track span { font-size: .72rem; font-weight: 700; color: var(--navy); letter-spacing: .06em; text-transform: uppercase; }
.ticker-track span::before { content: '✦'; margin-right: .7rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(59,130,246,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(59,130,246,.055) 1px,transparent 1px); background-size: 60px 60px; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4.2vw,3.5rem); font-weight: 900; color: #fff; margin-bottom: .8rem; line-height: 1.12; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.75; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.2); }
.page-hero-stats { display: flex; gap: 3rem; margin-top: 2rem; flex-wrap: wrap; }
.phs-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1; }
.phs-num span { color: var(--gold); }
.phs-label { font-size: .68rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .07em; margin-top: .2rem; }

/* ── PROCESS ── */
.process-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; position: relative; margin-top: 2.5rem; }
.process-row::before { content: ''; position: absolute; top: 26px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--gold)); z-index: 0; }
.p-step { text-align: center; position: relative; z-index: 1; }
.p-step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; display: grid; place-items: center; margin: 0 auto 1rem; border: 3px solid var(--white); box-shadow: var(--shadow); }
.p-step h4 { font-size: .88rem; font-weight: 700; margin-bottom: .3rem; }
.p-step p  { font-size: .76rem; color: var(--muted); line-height: 1.55; }

/* ── TESTIMONIALS ── */
.tcard { background: var(--white); border-radius: 14px; padding: 1.75rem; border: 1px solid var(--border); }
.tcard-q { font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: .5rem; font-family: serif; }
.tcard-text { font-size: .88rem; color: var(--text); line-height: 1.78; margin-bottom: 1.25rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: .75rem; }
.tcard-av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.tcard-stars { color: var(--gold); font-size: .78rem; }
.tcard-name { font-weight: 700; font-size: .87rem; }
.tcard-role { font-size: .74rem; color: var(--muted); }
/* dark variant */
.tcard-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); }
.tcard-dark .tcard-text { color: rgba(255,255,255,.82); }
.tcard-dark .tcard-av { background: var(--gold); color: var(--navy); }
.tcard-dark .tcard-name { color: #fff; }
.tcard-dark .tcard-role { color: rgba(255,255,255,.45); }

/* ── STAT STRIP ── */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.stat-box { background: var(--white); border-radius: 12px; padding: 1.5rem; border-left: 3px solid var(--gold); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: .75rem; color: var(--muted); margin-top: .2rem; }

/* ── TIMELINE ── */
.timeline { max-width: 640px; margin: 0 auto; position: relative; padding-left: 2.25rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--blue), var(--gold)); border-radius: 2px; }
.tl-item { margin-bottom: 2rem; position: relative; }
.tl-dot { position: absolute; left: -2.62rem; top: .2rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); }
.tl-year { font-size: .7rem; font-weight: 700; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .22rem; }
.tl-item h4 { font-size: .92rem; font-weight: 700; margin-bottom: .22rem; }
.tl-item p  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ── JOB CARDS ── */
.job-card { background: var(--white); border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: .85rem; border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; transition: all .2s; }
.job-card:hover { border-color: var(--blue); transform: translateX(4px); box-shadow: var(--shadow); }
.job-card h3 { font-size: .97rem; font-weight: 700; margin-bottom: .45rem; }
.job-meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.jbadge { font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 4px; }
.jb-blue   { background: rgba(26,86,219,.09); color: var(--blue); }
.jb-green  { background: rgba(16,185,129,.1);  color: #047857; }
.jb-yellow { background: rgba(245,158,11,.1);  color: #b45309; }
.jb-gray   { background: rgba(100,116,139,.1); color: var(--muted); }

/* ── FAQ ── */
.faq-cat { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin: 2rem 0 .75rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; margin-bottom: .65rem; overflow: hidden; }
.faq-q { padding: 1.1rem 1.35rem; font-weight: 700; font-size: .92rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background .18s; }
.faq-q:hover { background: var(--cream); }
.faq-q.open { background: var(--navy); color: #fff; }
.faq-arrow { font-size: .75rem; transition: transform .25s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { font-size: .88rem; color: var(--muted); line-height: 1.78; display: none; padding: 1rem 1.35rem; border-top: 1px solid var(--border); }

/* ── TIER CARDS ── */
.tier-head { padding: 1.75rem; color: #fff; text-align: center; }
.tier-head.blue-bg { background: var(--blue); }
.tier-head.navy-bg { background: var(--navy); }
.tier-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: .68rem; font-weight: 700; padding: .22rem .7rem; border-radius: 100px; margin-bottom: .5rem; }
.tier-body { padding: 1.75rem; }
.tier-feat { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .75rem; font-size: .87rem; }

/* ── CONTACT FORM ── */
.form-card { background: var(--white); border-radius: 14px; padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: .38rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; background: var(--cream);
  color: var(--text); transition: border-color .18s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: var(--green); padding: 1rem; border-radius: 8px; text-align: center; font-weight: 600; margin-top: .75rem; }

/* ── LEGAL ── */
.legal-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.legal-tab { background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; padding: .75rem 1.35rem; cursor: pointer; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .18s; }
.legal-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.legal-section { margin-bottom: 2rem; }
.legal-section h3 { font-size: .97rem; font-weight: 700; margin-bottom: .55rem; }
.legal-section p { font-size: .88rem; color: var(--muted); line-height: 1.82; }

/* ── OFFICES ── */
.office-card { background: var(--cream); border-radius: 14px; padding: 2rem; border: 1px solid var(--border); text-align: center; }
.office-flag { font-size: 2.5rem; margin-bottom: .65rem; }
.office-city { font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.office-type { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .65rem; }
.office-addr { font-size: .83rem; color: var(--text); line-height: 1.6; }

/* ── FILTER BAR ── */
.filter-bar { background: var(--white); padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.filter-row { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.f-input { padding: .55rem .9rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: .87rem; background: var(--white); color: var(--text); transition: border-color .18s; }
.f-input:focus { outline: none; border-color: var(--blue); }
.f-search { flex: 1; min-width: 200px; }

/* ── DOMAIN GROUP HEADER ── */
.domain-header { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 2px solid var(--border); }
.domain-icon { font-size: 1.4rem; }
.domain-title { font-size: 1.05rem; font-weight: 700; }
.domain-count { margin-left: auto; font-size: .75rem; color: var(--muted); background: var(--cream); padding: .2rem .7rem; border-radius: 100px; border: 1px solid var(--border); }
.domain-group { margin-bottom: 3.5rem; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,.62); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; display: block; margin-bottom: .85rem; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: .875rem; line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: .65rem; margin-top: 1.35rem; }
.soc-link { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; font-size: .85rem; transition: all .2s; color: rgba(255,255,255,.8); }
.soc-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.soc-linkedin:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.footer-col h4 { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: .87rem; transition: color .18s; }
.footer-col a:hover { color: var(--gold); }
.fi-item { display: flex; gap: .65rem; font-size: .87rem; margin-bottom: .85rem; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; }
.footer-bl { display: flex; gap: 1.5rem; }
.footer-bl a { font-size: .8rem; transition: color .18s; }
.footer-bl a:hover { color: var(--gold); }

/* ── PAGE TRANSITIONS ── */
.page { display: none; animation: fadeIn .3s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ── RESPONSIVE ── */
@media(max-width:1000px) {
  .g6 { grid-template-columns: repeat(5,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media(max-width:860px) {
  .g2, .g3 { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .g6 { grid-template-columns: repeat(4,1fr); }
  .process-row { grid-template-columns: repeat(3,1fr); }
  .process-row::before { display: none; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1rem 5% 2rem; gap: .2rem; align-items: flex-start; border-top: 1px solid rgba(255,255,255,.06); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: .65rem .85rem; font-size: .95rem; }
  .nav-links a.active { box-shadow: none; border-left: 3px solid var(--gold); padding-left: calc(.85rem - 3px); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
}
@media(max-width:580px) {
  .g2, .g3, .g4, .g5 { grid-template-columns: 1fr 1fr; }
  .g6 { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .tier-grid { grid-template-columns: 1fr !important; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
