:root {
  --navy-950: #071526;
  --navy-900: #0b1f3a;
  --navy-800: #12345b;
  --blue-700: #1d4f8c;
  --gold-500: #d6a62b;
  --gold-400: #e7bd50;
  --gold-100: #fff7dc;
  --ink: #142033;
  --muted: #64748b;
  --line: #e4e9f0;
  --surface: #ffffff;
  --surface-2: #f5f8fc;
  --success: #0c8c66;
  --radius: 20px;
  --shadow-sm: 0 8px 30px rgba(11, 31, 58, .07);
  --shadow-lg: 0 24px 70px rgba(7, 21, 38, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; background: #fff; color: #000; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 12px 35px rgba(11,31,58,.09); }
.topbar { background: var(--navy-950); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar a:hover { color: #fff; }
.topbar i { color: var(--gold-400); margin-right: 7px; }
.nav-shell { border-bottom: 1px solid rgba(15,23,42,.06); }
.nav-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 230px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link, .dropdown-trigger { border: 0; background: transparent; color: #314158; font-weight: 700; font-size: 14px; padding: 30px 13px; position: relative; }
.nav-link:hover, .nav-link.is-active, .dropdown-trigger:hover, .dropdown-trigger.is-active { color: var(--blue-700); }
.nav-link.is-active::after, .dropdown-trigger.is-active::after { content: ""; position: absolute; height: 3px; left: 14px; right: 14px; bottom: 17px; border-radius: 9px; background: var(--gold-500); }
.dropdown-trigger i { margin-left: 5px; font-size: 11px; transition: transform .2s ease; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.nav-dropdown.open .dropdown-trigger i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; left: 50%; top: calc(100% - 8px); width: 660px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 16px; opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: .22s ease; pointer-events: none; }
.dropdown-all { display: flex; align-items: center; gap: 13px; background: var(--surface-2); padding: 13px 15px; border-radius: 13px; margin-bottom: 10px; }
.dropdown-all i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--navy-900); color: #fff; }
.dropdown-all span { display: grid; }
.dropdown-all small { color: var(--muted); font-size: 12px; font-weight: 500; }
.dropdown-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 5px; }
.dropdown-grid a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-weight: 650; font-size: 13px; color: #39495f; }
.dropdown-grid a:hover { background: var(--gold-100); color: var(--navy-900); }
.dropdown-grid i { width: 26px; color: var(--gold-500); text-align: center; }
.nav-cta { margin-left: 9px; background: var(--navy-900); color: #fff; padding: 13px 18px; border-radius: 11px; font-weight: 800; font-size: 13px; box-shadow: 0 10px 22px rgba(11,31,58,.17); }
.nav-cta:hover { background: var(--blue-700); transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy-900); margin: 5px 0; border-radius: 2px; }

/* Common */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); background: #edf5ff; border: 1px solid #d9e9fb; border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow.gold { color: #7e5b06; background: var(--gold-100); border-color: #f5e6ad; }
h1,h2,h3,h4 { font-family: "Manrope", "Inter", sans-serif; letter-spacing: -.025em; line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(40px, 5.7vw, 72px); }
h2 { font-size: clamp(31px, 4vw, 48px); }
h3 { font-size: 21px; }
.lead { font-size: 18px; color: #64748b; }
.section { padding: 92px 0; }
.section-soft { background: var(--surface-2); }
.section-dark { background: var(--navy-950); color: #fff; }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }
.text-gold { color: var(--gold-500); }
.muted { color: var(--muted); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 49px; padding: 0 19px; border-radius: 11px; font-weight: 800; font-size: 14px; border: 1px solid transparent; transition: .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 13px 28px rgba(214,166,43,.24); }
.btn-primary:hover { background: #e3b43a; }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.05); }
.btn-outline:hover { background: #fff; color: var(--navy-900); }
.btn-light { background: #fff; color: var(--navy-900); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-weight: 800; font-size: 14px; }
.link-arrow:hover { gap: 12px; color: var(--navy-900); }

/* Home hero */
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 85% 20%, rgba(39,98,162,.42), transparent 35%), linear-gradient(135deg, #071526 0%, #0d2c52 62%, #123d70 100%); color: #fff; padding: 88px 0 94px; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to right, transparent, #000 38%, #000); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; }
.hero .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #f4d989; }
.hero h1 { margin: 20px 0 20px; max-width: 760px; }
.hero h1 span { color: var(--gold-400); }
.hero-copy { font-size: 18px; color: rgba(255,255,255,.74); max-width: 650px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 650; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--gold-400); }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; width: 78%; height: 85%; border: 1px solid rgba(231,189,80,.7); border-radius: 28px; right: -18px; top: -18px; }
.hero-image { position: relative; z-index: 2; overflow: hidden; border-radius: 26px; box-shadow: 0 34px 80px rgba(0,0,0,.35); border: 5px solid rgba(255,255,255,.08); }
.hero-image img { width: 100%; aspect-ratio: 1.23; object-fit: cover; }
.hero-float { position: absolute; z-index: 3; left: -28px; bottom: 28px; width: 235px; background: #fff; color: var(--ink); border-radius: 16px; padding: 17px; box-shadow: var(--shadow-lg); }
.hero-float-top { display: flex; gap: 12px; align-items: center; }
.hero-float-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-100); color: #8a650c; display: grid; place-items: center; font-size: 19px; }
.hero-float strong { display: block; font-size: 18px; }
.hero-float small { color: var(--muted); }

.stats-strip { margin-top: -40px; position: relative; z-index: 5; }
.stats-card { background: #fff; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow-sm); overflow: hidden; }
.stat { padding: 26px 24px; text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.stat strong { display: block; color: var(--navy-900); font-family: "Manrope"; font-size: 29px; }
.stat span { color: var(--muted); font-size: 13px; }

/* Services cards */
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 25px; position: relative; overflow: hidden; transition: .25s ease; min-height: 280px; }
.service-card::before { content: ""; width: 100px; height: 100px; position: absolute; right: -40px; top: -45px; background: var(--gold-100); border-radius: 999px; transition: .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d7e0eb; }
.service-card:hover::before { transform: scale(1.35); }
.service-icon { position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 14px; background: var(--navy-900); color: #fff; display: grid; place-items: center; font-size: 20px; margin-bottom: 21px; box-shadow: 0 12px 25px rgba(11,31,58,.18); }
.service-card .category { color: #9a720f; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-card h3 { margin: 7px 0 10px; font-size: 19px; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0 0 18px; }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-image { position: relative; }
.split-image img { width: 100%; max-height: 620px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-lg); }
.split-image::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid #e7c255; border-radius: 24px; z-index: -1; }
.split-copy h2 { margin: 14px 0 16px; }
.split-copy > p { color: var(--muted); font-size: 17px; }
.check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; margin: 26px 0 30px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-weight: 700; color: #334155; font-size: 14px; }
.check-item i { width: 25px; height: 25px; flex: 0 0 25px; border-radius: 999px; background: #eaf8f3; color: var(--success); display: grid; place-items: center; font-size: 11px; margin-top: 1px; }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 13px; }
.industry-item { background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 20px 13px; text-align: center; font-weight: 750; font-size: 13px; color: #36475e; }
.industry-item i { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 12px; background: #eff5fb; color: var(--blue-700); font-size: 18px; }

/* Compliance */
.compliance-panel { border-radius: 24px; overflow: hidden; background: linear-gradient(125deg, var(--navy-950), #123f72); color: #fff; display: grid; grid-template-columns: .95fr 1.05fr; box-shadow: var(--shadow-lg); }
.compliance-copy { padding: 56px; }
.compliance-copy h2 { margin: 14px 0 15px; }
.compliance-copy p { color: rgba(255,255,255,.72); }
.compliance-list { padding: 44px; background: rgba(255,255,255,.05); display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: center; }
.compliance-item { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); border-radius: 14px; padding: 18px; }
.compliance-item i { color: var(--gold-400); margin-bottom: 9px; font-size: 18px; }
.compliance-item strong { display: block; font-size: 14px; }
.compliance-item small { color: rgba(255,255,255,.6); }

/* CTA */
.cta { position: relative; overflow: hidden; background: linear-gradient(120deg, #f5c84f, #d6a62b); border-radius: 24px; padding: 46px 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta::after { content:""; position:absolute; width:260px; height:260px; border-radius:50%; border:44px solid rgba(255,255,255,.16); right:-80px; top:-110px; }
.cta-content { position: relative; z-index: 2; max-width: 720px; }
.cta h2 { margin: 0 0 8px; color: var(--navy-950); }
.cta p { margin: 0; color: rgba(7,21,38,.72); font-weight: 550; }
.cta-actions { position: relative; z-index: 2; display: flex; gap: 10px; flex-wrap: wrap; }

/* Page hero */
.page-hero { background: radial-gradient(circle at 85% 15%, rgba(49,112,178,.42), transparent 32%), linear-gradient(135deg, var(--navy-950), #0e3765); color: #fff; padding: 68px 0 74px; position: relative; overflow: hidden; }
.page-hero::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; opacity:.6; }
.page-hero-inner { position: relative; max-width: 850px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 19px; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs i { font-size: 9px; }
.page-hero h1 { font-size: clamp(38px,5vw,60px); margin: 0 0 17px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.74); font-size: 18px; margin:0; }

/* Services page */
.services-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.filter-btn { border: 1px solid var(--line); background: #fff; color: #526177; border-radius: 999px; padding: 9px 14px; font-size: 12px; font-weight: 800; }
.filter-btn.active, .filter-btn:hover { border-color: var(--navy-900); color: #fff; background: var(--navy-900); }

/* Service detail */
.service-hero { padding: 64px 0 70px; background: linear-gradient(135deg, #071526, #103c6d); color:#fff; position:relative; overflow:hidden; }
.service-hero::after { content:""; position:absolute; width:440px; height:440px; right:-160px; top:-180px; border-radius:50%; border:80px solid rgba(231,189,80,.08); }
.service-hero-grid { position:relative; z-index:2; display:grid; grid-template-columns: 1fr 360px; gap:70px; align-items:center; }
.service-hero .breadcrumbs { margin-bottom: 18px; }
.service-hero h1 { font-size: clamp(38px,5vw,58px); margin:13px 0 18px; }
.service-hero p { color:rgba(255,255,255,.74); font-size:18px; max-width:760px; }
.service-hero-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:28px; }
.service-hero-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); padding:26px; border-radius:20px; backdrop-filter: blur(9px); }
.service-hero-card .big-icon { width:64px; height:64px; display:grid; place-items:center; border-radius:16px; background:var(--gold-500); color:var(--navy-950); font-size:26px; margin-bottom:20px; }
.service-hero-card ul { list-style:none; margin:0; padding:0; }
.service-hero-card li { display:flex; gap:10px; padding:9px 0; color:rgba(255,255,255,.78); border-bottom:1px solid rgba(255,255,255,.08); font-size:14px; }
.service-hero-card li:last-child { border-bottom:0; }
.service-hero-card i { color:var(--gold-400); margin-top:5px; }
.detail-grid { display:grid; grid-template-columns: 1.55fr .75fr; gap:55px; align-items:start; }
.detail-copy h2 { margin:10px 0 16px; }
.detail-copy > p { color:var(--muted); font-size:17px; }
.feature-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; list-style:none; padding:0; margin:28px 0; }
.feature-list li { border:1px solid var(--line); border-radius:13px; padding:13px 14px; display:flex; gap:10px; align-items:flex-start; color:#334155; font-size:14px; font-weight:650; }
.feature-list i { color:var(--success); margin-top:4px; }
.sidebar-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px; box-shadow:var(--shadow-sm); position:sticky; top:122px; }
.sidebar-card h3 { margin-bottom:10px; }
.sidebar-card p { color:var(--muted); font-size:14px; }
.sidebar-contact { display:grid; gap:10px; margin-top:18px; }
.sidebar-contact a { display:flex; align-items:center; gap:11px; padding:12px; background:var(--surface-2); border-radius:11px; font-weight:750; font-size:13px; }
.sidebar-contact i { color:var(--gold-500); width:20px; text-align:center; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; counter-reset:step; }
.process-card { background:#fff; border:1px solid var(--line); border-radius:17px; padding:23px; counter-increment:step; position:relative; }
.process-card::before { content:"0" counter(step); font-family:"Manrope"; font-size:11px; font-weight:800; width:34px; height:34px; display:grid; place-items:center; border-radius:9px; background:var(--navy-900); color:#fff; margin-bottom:17px; }
.process-card h3 { font-size:17px; margin-bottom:8px; }
.process-card p { color:var(--muted); font-size:13px; margin:0; }
.benefit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.benefit { display:flex; gap:12px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius:14px; padding:18px; font-weight:750; font-size:14px; }
.benefit i { width:34px; height:34px; flex:0 0 34px; border-radius:9px; display:grid; place-items:center; background:#eaf8f3; color:var(--success); }
.tag-list { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.tag-list span { background:#fff; border:1px solid var(--line); border-radius:999px; padding:9px 13px; font-size:12px; font-weight:750; color:#46566d; }
.faq-list { max-width:900px; margin:0 auto; display:grid; gap:11px; }
.faq-item { border:1px solid var(--line); border-radius:15px; background:#fff; overflow:hidden; }
.faq-question { width:100%; border:0; background:#fff; display:flex; justify-content:space-between; gap:20px; text-align:left; padding:18px 20px; font-weight:800; color:var(--ink); }
.faq-question i { color:var(--gold-500); transition:transform .2s ease; }
.faq-item.open .faq-question i { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-answer p { margin:0; padding:0 20px 19px; color:var(--muted); font-size:14px; }

/* About */
.value-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.value-card { border:1px solid var(--line); border-radius:17px; padding:25px; background:#fff; }
.value-card i { width:48px; height:48px; display:grid; place-items:center; border-radius:13px; background:var(--gold-100); color:#9a720f; font-size:18px; margin-bottom:18px; }
.value-card p { color:var(--muted); font-size:14px; }

/* Contact */
.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:45px; align-items:start; }
.contact-info { background:var(--navy-950); color:#fff; border-radius:22px; padding:34px; }
.contact-info h2 { font-size:30px; margin-bottom:10px; }
.contact-info > p { color:rgba(255,255,255,.65); margin-bottom:27px; }
.contact-row { display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-top:1px solid rgba(255,255,255,.1); }
.contact-row i { width:40px; height:40px; display:grid; place-items:center; border-radius:10px; background:rgba(231,189,80,.12); color:var(--gold-400); flex:0 0 40px; }
.contact-row small { display:block; color:rgba(255,255,255,.54); margin-bottom:2px; }
.contact-row a, .contact-row span { font-weight:700; font-size:14px; }
.contact-form { background:#fff; border:1px solid var(--line); border-radius:22px; padding:34px; box-shadow:var(--shadow-sm); }
.contact-form h2 { font-size:30px; margin-bottom:8px; }
.contact-form > p { color:var(--muted); margin-top:0; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:25px; }
.form-group { display:grid; gap:7px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:12px; font-weight:800; color:#475569; }
.form-control { width:100%; border:1px solid #dce3ec; background:#fbfdff; color:var(--ink); border-radius:11px; min-height:48px; padding:11px 13px; outline:0; }
textarea.form-control { min-height:130px; resize:vertical; }
.form-control:focus { border-color:#7aa4d0; box-shadow:0 0 0 3px rgba(29,79,140,.08); background:#fff; }
.form-note { color:var(--muted); font-size:11px; }
.notice { padding:13px 15px; border-radius:11px; margin:18px 0 0; font-size:13px; font-weight:700; }
.notice-success { background:#eaf8f3; color:#087352; border:1px solid #c9ede0; }
.notice-error { background:#fff0f0; color:#a33131; border:1px solid #f4d0d0; }
.hp-field { position:absolute !important; left:-10000px !important; opacity:0 !important; }

/* 404 */
.error-page { min-height:65vh; display:grid; place-items:center; text-align:center; padding:80px 20px; }
.error-page .code { font-family:"Manrope"; font-size:100px; line-height:1; font-weight:800; color:var(--navy-900); opacity:.1; margin-bottom:-34px; }
.error-page h1 { font-size:40px; }
.error-page p { color:var(--muted); max-width:600px; }

/* Footer */
.site-footer { background:#071526; color:#fff; margin-top:0; }
.footer-grid { display:grid; grid-template-columns:1.5fr .7fr 1fr 1.2fr; gap:46px; padding-top:64px; padding-bottom:48px; }
.footer-brand img { width:210px; margin-bottom:18px; }
.footer-brand p { color:rgba(255,255,255,.58); max-width:330px; font-size:14px; }
.footer-badges { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.footer-badges span { font-size:11px; border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.05); color:rgba(255,255,255,.72); border-radius:999px; padding:7px 9px; }
.site-footer h3 { font-size:14px; color:#fff; text-transform:uppercase; letter-spacing:.09em; margin-bottom:18px; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:9px; }
.site-footer li, .site-footer a { color:rgba(255,255,255,.6); font-size:13px; }
.site-footer a:hover { color:var(--gold-400); }
.footer-contact li { display:flex; gap:10px; align-items:flex-start; }
.footer-contact i { color:var(--gold-400); margin-top:5px; width:16px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); min-height:68px; display:flex; justify-content:space-between; align-items:center; gap:20px; }
.footer-bottom p { margin:0; color:rgba(255,255,255,.42); font-size:12px; }
.quick-actions { position:fixed; right:18px; bottom:18px; display:grid; gap:9px; z-index:80; }
.quick-actions a { width:49px; height:49px; border-radius:999px; display:grid; place-items:center; color:#fff; font-size:20px; box-shadow:0 15px 30px rgba(0,0,0,.2); }
.quick-whatsapp { background:#16a86a; }
.quick-call { background:var(--blue-700); }

@media (max-width: 1100px) {
  .topbar-left span:first-child { display:none; }
  .main-nav { gap:0; }
  .nav-link,.dropdown-trigger { padding-left:10px; padding-right:10px; }
  .brand { width:205px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .industry-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2 / 4; }
}

@media (max-width: 900px) {
  .topbar { display:none; }
  .nav-inner { min-height:72px; }
  .brand { width:190px; }
  .menu-toggle { display:block; }
  .main-nav { position:absolute; top:72px; left:0; right:0; background:#fff; border-top:1px solid var(--line); box-shadow:0 20px 40px rgba(0,0,0,.08); padding:12px 20px 20px; display:none; align-items:stretch; flex-direction:column; }
  .main-nav.open { display:flex; }
  .nav-link,.dropdown-trigger { width:100%; text-align:left; padding:13px 8px; }
  .nav-link.is-active::after,.dropdown-trigger.is-active::after { display:none; }
  .nav-cta { margin:8px 0 0; text-align:center; }
  .nav-dropdown:hover .dropdown-menu { opacity:0; visibility:hidden; pointer-events:none; }
  .nav-dropdown.open .dropdown-menu { opacity:1; visibility:visible; pointer-events:auto; transform:none; }
  .dropdown-menu { position:static; width:100%; transform:none; box-shadow:none; border-radius:12px; margin-top:4px; display:none; }
  .nav-dropdown.open .dropdown-menu { display:block; }
  .dropdown-grid { grid-template-columns:1fr 1fr; }
  .hero { padding:64px 0 82px; }
  .hero-grid,.split,.compliance-panel,.service-hero-grid,.detail-grid,.contact-grid { grid-template-columns:1fr; }
  .hero-grid { gap:45px; }
  .hero-media { max-width:650px; }
  .hero-float { left:18px; }
  .stats-card { grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(2)::after { display:none; }
  .stat:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .split-image { order:2; max-width:680px; }
  .compliance-copy { padding:40px; }
  .service-hero-grid { gap:35px; }
  .service-hero-card { max-width:600px; }
  .sidebar-card { position:static; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .value-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:last-child { grid-column:auto; }
}

@media (max-width: 640px) {
  .container { width:min(100% - 28px,1180px); }
  .brand { width:175px; }
  .dropdown-grid { grid-template-columns:1fr; }
  .hero { padding-top:50px; }
  .hero h1 { font-size:39px; }
  .hero-copy,.page-hero p,.service-hero p { font-size:16px; }
  .hero-float { position:relative; left:auto; bottom:auto; width:100%; margin-top:10px; }
  .stats-strip { margin-top:-28px; }
  .stat { padding:20px 10px; }
  .stat strong { font-size:24px; }
  .section { padding:68px 0; }
  .service-grid,.industry-grid,.check-grid,.feature-list,.benefit-grid,.value-grid,.compliance-list,.form-grid { grid-template-columns:1fr; }
  .industry-grid { grid-template-columns:repeat(2,1fr); }
  .service-card { min-height:auto; }
  .split { gap:40px; }
  .split-image::after { display:none; }
  .compliance-copy,.compliance-list { padding:28px; }
  .cta { padding:32px 25px; flex-direction:column; align-items:flex-start; }
  .page-hero,.service-hero { padding:52px 0 58px; }
  .service-hero-card { padding:21px; }
  .process-grid { grid-template-columns:1fr; }
  .contact-info,.contact-form { padding:25px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; padding-top:50px; }
  .footer-bottom { padding:18px 0; flex-direction:column; justify-content:center; text-align:center; }
  .quick-actions a { width:45px; height:45px; }
}
