/* ===== Finvora Group Ltd — Recruitment ===== */
:root {
  --bg: #070f1c;
  --bg-2: #0a1626;
  --bg-3: #0d1b2e;
  --card: #101f33;
  --card-2: #142940;
  --gold: #c9a14a;
  --gold-light: #e0bd6c;
  --gold-pale: #efd89a;
  --navy-accent: #1a3050;
  --text: #e8eef6;
  --muted: #8499b2;
  --muted-2: #6a7e98;
  --border: rgba(201,161,74,0.16);
  --border-soft: rgba(255,255,255,0.07);
  --radius: 18px;
  --maxw: 1200px;
  --gold-grad: linear-gradient(120deg, #c9a14a 0%, #e0bd6c 50%, #efd89a 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* decorative ambient glow */
.ambient {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.ambient::before, .ambient::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35;
}
.ambient::before { width: 480px; height: 480px; background: rgba(201,161,74,0.18); top: -160px; right: -120px; }
.ambient::after { width: 420px; height: 420px; background: rgba(26,48,80,0.5); bottom: -180px; left: -120px; }

/* ===== NAV (white) ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(13,27,46,0.06);
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  height: 56px; width: auto; display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; padding-left: 14px; border-left: 1px solid rgba(13,27,46,0.12); }
.brand-text .b1 { font-weight: 800; font-size: 1rem; letter-spacing: 1.5px; color: #0d1b2e; }
.brand-text .b2 { font-size: .54rem; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: #43536b; font-size: .92rem; font-weight: 600; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-nav {
  background: var(--gold-grad); color: #1a1205 !important; font-weight: 700;
  padding: 10px 20px; border-radius: 999px; font-size: .9rem;
  box-shadow: 0 6px 20px rgba(201,161,74,0.3);
}
.btn-nav:hover { filter: brightness(1.08); }
.nav-toggle { display: none; background: none; border: 0; color: #0d1b2e; font-size: 1.6rem; cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent; transition: all .25s; white-space: nowrap;
}
.btn-gold { background: var(--gold-grad); color: #1a1205; box-shadow: 0 8px 26px rgba(201,161,74,0.32); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-light { background: var(--text); color: var(--bg-3); }
.btn-light:hover { background: #fff; }

/* ===== HERO ===== */
.hero { padding: 90px 0 110px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.05; font-weight: 800; letter-spacing: -1.5px;
}
.hero h1 .accent { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.hero p { color: var(--muted); font-size: 1.08rem; margin: 24px 0 34px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 420px;
  background: linear-gradient(135deg, #122a45, #0a1626 70%);
  border: 1px solid var(--border); box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.float-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(7,15,28,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; font-size: .9rem;
}
.float-badge .dot { width: 34px; height: 34px; border-radius: 50%; background: rgba(201,161,74,0.18); display: grid; place-items: center; color: var(--gold-light); flex-shrink: 0; }

/* image fallback gradient (for missing photos) */
.imgph { background: linear-gradient(135deg, #173354 0%, #0a1626 60%, #1d3a2e 100%); position: relative; }
.imgph::after { content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center; color: rgba(232,238,246,.25); font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; }
.imgph.with-photo::after { display: none; }
.imgph.with-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,15,28,0.04), rgba(7,15,28,0.48));
  pointer-events: none;
}
.imgph.with-photo > img { position: relative; z-index: 0; }
.imgph.with-photo .float-badge,
.imgph.with-photo .badge-ico { z-index: 2; }

/* ===== STATS ===== */
.stats { background: var(--bg-2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 44px 0; text-align: center; }
.stat .num { font-size: 2.3rem; font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-size: .92rem; }

/* ===== SECTION HEADINGS ===== */
.sec { padding: 90px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.5px; }
.sec-head h2 .accent { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sec-head p { color: var(--muted); margin-top: 14px; }

/* ===== INDUSTRY CARDS ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.icard {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, border-color .25s;
}
.icard:hover { transform: translateY(-6px); border-color: var(--border); }
.icard .thumb { height: 170px; position: relative; }
.icard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.icard .badge-ico { position: absolute; top: 14px; left: 14px; width: 38px; height: 38px; border-radius: 10px; background: rgba(7,15,28,.7); display: grid; place-items: center; color: var(--gold-light); }
.icard .body { padding: 22px 22px 26px; }
.icard h3 { font-size: 1.2rem; font-weight: 700; }
.icard p { color: var(--muted); font-size: .92rem; margin: 10px 0 16px; }
.learn { color: var(--gold-light); font-weight: 600; font-size: .9rem; display: inline-flex; gap: 7px; align-items: center; }

/* ===== HOW IT WORKS ===== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; position: relative; }
.step { text-align: center; }
.step .ring { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: var(--card-2); border: 1px solid var(--border); color: var(--gold-light); position: relative; z-index: 2; }
.step h3 { font-size: 1.12rem; font-weight: 700; }
.step p { color: var(--muted); font-size: .92rem; margin-top: 10px; }

/* ===== CTA BANNER ===== */
.cta-band { background: linear-gradient(135deg, #0e2138, #0a1626); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.cta-band .inner { text-align: center; padding: 80px 0; }
.cta-band h2 { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 800; }
.cta-band p { color: var(--muted); margin: 16px auto 30px; max-width: 540px; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FEATURE CARDS (why choose / partner) ===== */
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.fcard { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px 22px; transition: border-color .25s, transform .25s; }
.fcard:hover { border-color: var(--border); transform: translateY(-4px); }
.fcard .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(201,161,74,.12); display: grid; place-items: center; color: var(--gold-light); margin-bottom: 16px; }
.fcard h3 { font-size: 1.08rem; font-weight: 700; }
.fcard p { color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* ===== ABOUT ===== */
.about-hero { text-align: center; padding: 80px 0 30px; max-width: 820px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(2.4rem,4.5vw,3.4rem); font-weight: 800; }
.about-hero h1 .accent { background: var(--gold-grad); -webkit-background-clip:text; background-clip:text; color: transparent; }
.about-hero p { color: var(--muted); font-size: 1.1rem; margin-top: 20px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 40px; }
.story-img { border-radius: 20px; overflow: hidden; min-height: 380px; position: relative; border: 1px solid var(--border); }
.story-img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.story h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 18px; }
.story p { color: var(--muted); margin-bottom: 16px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 60px; }
.mv { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 34px; }
.mv h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; }
.mv p { color: var(--muted); }

/* ===== SERVICES ===== */
.svc { background: var(--card); border: 1px solid var(--border-soft); border-radius: 22px; padding: 40px; display: grid; grid-template-columns: 90px 1fr; gap: 30px; margin-bottom: 30px; align-items: start; }
.svc .ico-lg { width: 80px; height: 80px; border-radius: 18px; background: rgba(201,161,74,.12); display: grid; place-items: center; color: var(--gold-light); }
.svc h3 { font-size: 1.6rem; font-weight: 700; }
.svc > div > p { color: var(--muted); margin: 12px 0 20px; max-width: 620px; }
.svc-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; max-width: 620px; margin-bottom: 24px; }
.svc-feats li { list-style: none; display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .92rem; }
.svc-feats li svg { color: var(--gold-light); flex-shrink: 0; }

/* ===== EMPLOYERS / process ===== */
.proc-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.proc { display: flex; gap: 22px; background: var(--card); border: 1px solid var(--border-soft); border-radius: 16px; padding: 24px 28px; }
.proc .n { font-size: 1.8rem; font-weight: 800; color: rgba(201,161,74,.4); flex-shrink: 0; }
.proc h3 { font-size: 1.1rem; font-weight: 700; }
.proc p { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* ===== FORMS ===== */
.form-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 22px; padding: 40px; max-width: 760px; margin: 0 auto; }
.form-card h2 { text-align: center; font-size: 1.7rem; font-weight: 700; }
.form-card > p { text-align: center; color: var(--muted); margin: 8px 0 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: 12px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.dropzone { border: 1.5px dashed var(--border); border-radius: 14px; padding: 34px; text-align: center; color: var(--muted); cursor: pointer; transition: border-color .2s, background .2s; }
.dropzone:hover { border-color: var(--gold); background: rgba(201,161,74,.04); }
.btn-block { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.form-msg { text-align: center; margin-top: 14px; font-size: .92rem; color: var(--gold-light); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 30px; }
.info-card, .msg-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 22px; padding: 36px; }
.info-card h2, .msg-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 26px; }
.info-row { display: flex; gap: 16px; margin-bottom: 24px; }
.info-row .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(201,161,74,.12); display: grid; place-items: center; color: var(--gold-light); flex-shrink: 0; }
.info-row h4 { font-size: 1rem; font-weight: 700; }
.info-row p { color: var(--muted); font-size: .92rem; }
.map-wrap { margin-top: 26px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-soft); height: 280px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) brightness(.95); }

/* ===== JOBS PAGE ===== */
.live-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,180,120,0.12); border: 1px solid rgba(43,180,120,0.4); color: #4fd198; font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; padding: 7px 14px; border-radius: 999px; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #4fd198; box-shadow: 0 0 0 0 rgba(79,209,152,.6); animation: pulse 1.8s infinite; }
.live-upd { color: var(--muted); font-weight: 500; letter-spacing: .3px; text-transform: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(79,209,152,.5); } 70% { box-shadow: 0 0 0 8px rgba(79,209,152,0); } 100% { box-shadow: 0 0 0 0 rgba(79,209,152,0); } }

.jobs-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.mode-tabs { display: flex; gap: 10px; }
.mode-tab { background: var(--card); border: 1px solid var(--border-soft); color: var(--muted); padding: 9px 18px; border-radius: 999px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.mode-tab.active { background: var(--gold-grad); color: #1a1205; border-color: transparent; }
.refresh-btn { background: none; border: 1px solid var(--border-soft); color: var(--muted); padding: 9px 16px; border-radius: 999px; font-size: .88rem; cursor: pointer; transition: all .2s; }
.refresh-btn:hover { color: var(--gold-light); border-color: var(--border); }

.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.cat-tab { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--border-soft); color: var(--muted); padding: 9px 16px; border-radius: 999px; font-size: .88rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.cat-tab:hover { border-color: var(--border); color: var(--text); }
.cat-tab.active { background: var(--card-2); border-color: var(--gold); color: var(--gold-light); }
.cat-tab .cnt { background: rgba(255,255,255,0.08); border-radius: 999px; padding: 1px 8px; font-size: .78rem; }

.search-panel { background: var(--card); border: 1px solid var(--border-soft); border-radius: 16px; padding: 18px; margin-bottom: 26px; }
.search-box { display: flex; align-items: center; gap: 12px; background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: 12px; padding: 12px 16px; color: var(--muted); }
.search-box input { flex: 1; background: none; border: 0; color: var(--text); font-family: inherit; font-size: .95rem; outline: none; }
.search-box input::placeholder { color: var(--muted-2); }
.type-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.type-chip { background: var(--bg-2); border: 1px solid var(--border-soft); color: var(--muted); padding: 7px 14px; border-radius: 999px; font-size: .85rem; cursor: pointer; transition: all .2s; }
.type-chip:hover { color: var(--text); }
.type-chip.active { background: rgba(201,161,74,.14); border-color: var(--gold); color: var(--gold-light); }

.jobs-status { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; gap: 8px; }
.jobs-status #jobs-count { color: var(--text); font-weight: 600; }
.src-note { color: var(--muted-2); font-size: .82rem; }

.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.job-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; transition: transform .2s, border-color .2s; }
.job-card:hover { transform: translateY(-4px); border-color: var(--border); }
.job-top { display: flex; justify-content: space-between; align-items: center; font-size: .76rem; color: var(--muted-2); margin-bottom: 12px; }
.job-src { background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: 999px; padding: 4px 10px; color: var(--muted); }
.job-meta-r { display: inline-flex; align-items: center; gap: 8px; }
.job-feed { background: rgba(79,209,152,.14); color: #4fd198; border-radius: 999px; padding: 2px 8px; font-weight: 700; }
.job-title { font-size: 1.02rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.job-company { color: var(--muted); font-size: .88rem; margin-bottom: 12px; }
.job-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.pill { background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: 8px; padding: 4px 9px; font-size: .76rem; color: var(--muted); }
.pill-green { background: rgba(79,209,152,.12); border-color: rgba(79,209,152,.35); color: #4fd198; }
.job-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.tag { background: rgba(201,161,74,.1); border: 1px solid rgba(201,161,74,.2); border-radius: 8px; padding: 3px 9px; font-size: .74rem; color: var(--gold-pale); }
.job-salary { color: var(--gold-light); font-weight: 700; font-size: .9rem; margin-bottom: 14px; }
.job-btn { margin-top: auto; text-align: center; background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: 10px; padding: 11px; font-size: .88rem; font-weight: 600; color: var(--text); transition: all .2s; }
.job-btn:hover { background: var(--gold-grad); color: #1a1205; border-color: transparent; }

.pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pg { min-width: 40px; height: 40px; padding: 0 12px; background: var(--card); border: 1px solid var(--border-soft); color: var(--muted); border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.pg:hover:not(:disabled) { color: var(--gold-light); border-color: var(--border); }
.pg.active { background: var(--gold-grad); color: #1a1205; border-color: transparent; }
.pg:disabled { opacity: .4; cursor: not-allowed; }

@media (max-width: 900px) { .jobs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .jobs-grid { grid-template-columns: 1fr; } }

/* ===== PRIVACY / LEGAL ===== */
.tagpill { display: inline-flex; align-items: center; gap: 7px; background: rgba(201,161,74,.12); border: 1px solid var(--border); color: var(--gold-light); font-size: .78rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.policy-date { color: var(--muted-2); font-size: .88rem; margin-top: 14px; display: inline-flex; gap: 7px; align-items: center; }
.notice { max-width: 820px; margin: 30px auto 0; display: flex; gap: 12px; background: rgba(201,161,74,.07); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; color: var(--muted); font-size: .9rem; }
.notice svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.policy-wrap { max-width: 820px; margin: 0 auto; }
.policy-intro { background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 24px 26px; color: var(--muted); margin-bottom: 22px; }
.policy-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 24px 26px; margin-bottom: 16px; }
.policy-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 14px; padding-left: 14px; border-left: 3px solid var(--gold); }
.policy-card p { color: var(--muted); margin-bottom: 10px; }
.policy-card ul { list-style: none; margin: 4px 0 6px; }
.policy-card li { color: var(--muted); padding-left: 20px; position: relative; margin-bottom: 8px; font-size: .94rem; }
.policy-card li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.policy-card a { color: var(--gold-light); }
.policy-card .addr { color: var(--text); font-style: normal; line-height: 1.8; }

/* ===== FOOTER ===== */
footer { background: var(--bg-2); border-top: 1px solid var(--border-soft); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.foot-brand .logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; }
.foot-brand .logo-text span { color: var(--gold); }
.foot-brand p { color: var(--muted); font-size: .9rem; margin: 16px 0 20px; max-width: 280px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: var(--card); display: grid; place-items: center; color: var(--muted); transition: all .2s; }
.socials a:hover { color: var(--gold-light); background: var(--card-2); }
.foot-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a, .foot-col p { color: var(--muted); font-size: .9rem; transition: color .2s; }
.foot-col a:hover { color: var(--gold-light); }
.foot-contact .row { display: flex; gap: 12px; margin-bottom: 16px; color: var(--muted); font-size: .9rem; align-items: flex-start; }
.foot-contact .row svg { color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.foot-bottom { border-top: 1px solid var(--border-soft); margin-top: 46px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: .85rem; }
.foot-bottom a { color: var(--muted-2); }
.foot-bottom a:hover { color: var(--gold-light); }

/* ===== reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .cards-3, .cards-4, .steps, .mv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px 10px; }
  .nav-links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; background: #fff; padding: 22px; gap: 18px; border-bottom: 1px solid rgba(13,27,46,0.1); box-shadow: 0 12px 30px rgba(0,0,0,.25); transform: translateY(-130%); transition: transform .3s; }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; }
  .svc { grid-template-columns: 1fr; }
  .svc-feats { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-card, .info-card, .msg-card { padding: 26px 20px; }
}
