/*
Theme Name: MITJM
Theme URI: https://mitjm.com
Author: Meke Innovative Technology Ltd
Author URI: https://mitjm.com
Description: Custom theme for MITJM - Meke Innovative Technology Ltd
Version: 1.0.0
License: Private
Text Domain: mitjm
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A0F1E;
  --navy2: #111827;
  --blue: #1A56DB;
  --blue2: #2563EB;
  --blue-lt: #EFF6FF;
  --blue-acc: #60A5FA;
  --white: #ffffff;
  --g50: #F9FAFB;
  --g100: #F3F4F6;
  --g200: #E5E7EB;
  --g300: #D1D5DB;
  --g400: #9CA3AF;
  --g500: #6B7280;
  --g600: #4B5563;
  --g700: #374151;
  --g800: #1F2937;
  --green: #10B981;
  --red: #EF4444;
  --font: 'DM Sans', sans-serif;
  --r: 8px;
  --rl: 12px;
  --rxl: 16px;
  --sh: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shl: 0 8px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--g800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { line-height: 1.15; }
p { line-height: 1.7; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.section { padding: 72px 0; }
.section-alt { padding: 72px 0; background: var(--g50); }

.tag { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.tag-line { width: 32px; height: 2px; background: var(--blue); }
.tag span { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); }

.sec-title { font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--navy); letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.sec-sub { font-size: 16px; color: var(--g600); line-height: 1.75; max-width: 560px; margin-bottom: 48px; }

.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; border: none; cursor: pointer; padding: 12px 24px; border-radius: var(--r); font-family: var(--font); font-size: 14px; font-weight: 500; text-decoration: none; transition: background .2s, transform .1s; }
.btn:hover { background: #1e3a6e; transform: translateY(-1px); color: #fff; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--navy); border: 1.5px solid var(--g200); cursor: pointer; padding: 11px 22px; border-radius: var(--r); font-family: var(--font); font-size: 14px; font-weight: 500; text-decoration: none; transition: .2s; }
.btn-outline:hover { border-color: var(--navy); background: var(--g50); }
.btn-blue { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; border: none; cursor: pointer; padding: 12px 24px; border-radius: var(--r); font-family: var(--font); font-size: 14px; font-weight: 500; text-decoration: none; transition: background .2s; }
.btn-blue:hover { background: #1d4ed8; color: #fff; }

.badge { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-lt); color: var(--blue); border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.divider { height: 1px; background: var(--g200); margin: 48px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.arrow-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g200);
}
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 5%; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: -.5px; }
.logo-divider { width: 1px; height: 28px; background: var(--g200); }
.logo-text { font-size: 10px; font-weight: 500; color: var(--g500); line-height: 1.3; max-width: 110px; }

.main-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.main-nav li a { font-size: 14px; color: var(--g600); font-weight: 500; text-decoration: none; padding: 4px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.main-nav li a:hover, .main-nav li.current-menu-item > a, .main-nav li.current_page_item > a { color: var(--navy); border-bottom-color: var(--blue); }

.nav-cta { background: var(--navy); color: #fff !important; padding: 10px 20px; border-radius: var(--r); font-size: 14px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: .2s; border: none; }
.nav-cta:hover { background: #1e3a6e; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: .3s; }

.mobile-nav { display: none; background: #fff; border-bottom: 1px solid var(--g200); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 12px 5%; }
.mobile-nav ul li a { display: block; font-size: 15px; color: var(--g700); font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--g100); text-decoration: none; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy); padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(26,86,219,.12); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 1; }
.page-hero .tag-line { background: var(--blue-acc); }
.page-hero .tag span { color: var(--blue-acc); }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 560px; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding: 80px 5% 60px; max-width: 1280px; margin: 0 auto; }
.home-hero h1 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 700; line-height: 1.05; color: var(--navy); letter-spacing: -2px; margin-bottom: 20px; }
.home-hero h1 .dot { color: var(--blue); }
.home-hero p { font-size: 16px; color: var(--g600); line-height: 1.75; margin-bottom: 32px; max-width: 440px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Dashboard mockup */
.dash-card { background: #fff; border: 1px solid var(--g200); border-radius: 16px; box-shadow: var(--shl); overflow: hidden; }
.dash-sidebar { position: absolute; left: 0; top: 0; bottom: 0; width: 44px; background: var(--navy); display: flex; flex-direction: column; align-items: center; padding: 12px 0; gap: 16px; }
.sb-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.sb-icon.active { background: var(--blue); }
.sb-icon svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 2; }
.sb-icon.active svg { stroke: #fff; }
.dash-body { margin-left: 44px; padding: 16px; }
.dash-hdr { font-size: 13px; font-weight: 600; color: var(--g800); margin-bottom: 12px; }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 12px; }
.ds-box { background: var(--g50); border: 1px solid var(--g200); border-radius: 6px; padding: 8px 10px; }
.ds-lbl { font-size: 10px; color: var(--g400); font-weight: 500; margin-bottom: 3px; }
.ds-val { font-size: 17px; font-weight: 700; color: var(--navy); }
.ds-val.grn { color: var(--green); font-size: 13px; }
.ds-sub { font-size: 10px; color: var(--g400); }
.dash-charts { display: grid; grid-template-columns: 3fr 2fr; gap: 8px; }
.ch-box { background: var(--g50); border: 1px solid var(--g200); border-radius: 6px; padding: 10px; }
.ch-ttl { font-size: 11px; font-weight: 600; color: var(--g600); margin-bottom: 8px; }
.svc-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid var(--g200); }
.svc-row:last-child { border-bottom: none; }
.svc-nm { font-size: 10px; color: var(--g600); }
.svc-pct { font-size: 10px; font-weight: 600; color: var(--g800); margin-right: 6px; }
.dot-g { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ============================================================
   HOME — SERVICES GRID
   ============================================================ */
.services-section { padding: 0 5% 64px; }
.svc-grid-wrap { position: relative; padding-left: 48px; }
.sideways-label { writing-mode: vertical-rl; transform: rotate(180deg) translateY(-50%); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--g400); position: absolute; left: 0; top: 50%; white-space: nowrap; }
.svc-grid { display: grid; grid-template-columns: repeat(6,1fr); background: var(--g200); border: 1px solid var(--g200); border-radius: var(--rl); overflow: hidden; gap: 1px; }
.svc-card { background: #fff; padding: 28px 18px 22px; cursor: pointer; transition: background .2s; text-decoration: none; display: block; }
.svc-card:hover { background: var(--blue-lt); }
.svc-card svg.icon { width: 36px; height: 36px; margin-bottom: 12px; stroke: var(--navy); fill: none; stroke-width: 1.5; display: block; }
.svc-card h3 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 12px; color: var(--g600); line-height: 1.5; }
.svc-card .s-arr { margin-top: 14px; color: var(--blue); }
.stats-bar { background: var(--navy); padding: 28px 36px; display: flex; align-items: center; justify-content: space-evenly; gap: 24px; grid-column: span 6; }
.stat-item { text-align: center; }
.stat-num { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -1px; }
.stat-num span { color: var(--blue-acc); }
.stat-desc { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ============================================================
   HOME — APPROACH
   ============================================================ */
.approach-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--g200); border-radius: var(--rl); overflow: hidden; background: #fff; }
.step { padding: 24px; border-right: 1px solid var(--g200); }
.step:last-child { border-right: none; }
.step-num { font-size: 28px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.step h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--g600); line-height: 1.5; }

/* ============================================================
   HOME — BOTTOM ROW
   ============================================================ */
.bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--rl); padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.q-mark { font-size: 72px; line-height: 1; color: var(--navy); font-weight: 700; margin-bottom: -8px; }
.testi-txt { font-size: 15px; color: var(--g700); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.auth-av { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #fff; flex-shrink: 0; }
.auth-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.auth-title { font-size: 12px; color: var(--g400); }
.cta-dark { background: var(--navy); border-radius: var(--rl); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.cta-dark::before { content: ''; position: absolute; left: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(26,86,219,.15); }
.cta-accent { width: 3px; height: 40px; background: var(--blue); border-radius: 2px; margin-bottom: 20px; }
.cta-dark h2 { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-dark p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 28px; position: relative; z-index: 1; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.svc-det-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--rl); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.svc-det-card:hover { box-shadow: var(--shl); transform: translateY(-2px); }
.svc-det-top { padding: 32px; background: var(--g50); border-bottom: 1px solid var(--g200); }
.svc-det-icon { width: 52px; height: 52px; background: var(--blue-lt); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-det-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.75; }
.svc-det-top h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-det-top p { font-size: 14px; color: var(--g600); line-height: 1.65; }
.svc-det-body { padding: 28px 32px; }
.feature-list { list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--g100); font-size: 14px; color: var(--g700); line-height: 1.5; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.pricing-strip { background: var(--blue-lt); border: 1px solid #BFDBFE; border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; margin-top: 20px; flex-wrap: wrap; gap: 12px; }
.pricing-strip span { font-size: 13px; font-weight: 600; color: var(--blue); }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: var(--g200); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -32px; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; z-index: 1; }
.tl-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.tl-item p { font-size: 14px; color: var(--g600); line-height: 1.6; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.val-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--rl); padding: 28px; position: relative; overflow: hidden; }
.val-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); }
.val-num { font-size: 40px; font-weight: 700; color: var(--g200); line-height: 1; margin-bottom: 12px; }
.val-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.val-card p { font-size: 14px; color: var(--g600); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--rl); overflow: hidden; text-align: center; transition: box-shadow .2s, transform .2s; }
.team-card:hover { box-shadow: var(--shl); transform: translateY(-2px); }
.team-avatar-wrap { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; font-weight: 700; color: #fff; }
.team-info { padding: 20px; }
.team-info h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--blue); font-weight: 500; margin-bottom: 8px; }
.team-info p { font-size: 13px; color: var(--g600); line-height: 1.5; }
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cert-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--r); padding: 20px; text-align: center; }
.cert-icon { font-size: 28px; margin-bottom: 10px; }
.cert-card h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.cert-card p { font-size: 11px; color: var(--g500); }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.art-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--rl); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.art-card:hover { box-shadow: var(--shl); transform: translateY(-2px); }
.art-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.art-body { padding: 20px; }
.art-cat { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.art-body h3 { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.art-body p { font-size: 13px; color: var(--g500); line-height: 1.55; margin-bottom: 16px; }
.art-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--g400); }
.art-tag { background: var(--g100); padding: 2px 10px; border-radius: 20px; font-size: 11px; color: var(--g600); }
.featured-art { background: #fff; border: 1px solid var(--g200); border-radius: var(--rl); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; margin-bottom: 32px; }
.feat-thumb { min-height: 240px; display: flex; align-items: center; justify-content: center; font-size: 60px; }
.feat-body { padding: 40px; }
.feat-body h3 { font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.feat-body p { font-size: 15px; color: var(--g600); line-height: 1.7; margin-bottom: 24px; }
.download-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dl-card { background: var(--g50); border: 1px solid var(--g200); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; }
.dl-icon { font-size: 28px; margin-bottom: 12px; }
.dl-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.dl-card p { font-size: 13px; color: var(--g600); line-height: 1.55; flex: 1; margin-bottom: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-info h2 { font-size: 32px; font-weight: 700; color: var(--navy); letter-spacing: -1px; margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--g600); line-height: 1.7; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.cd-icon { width: 44px; height: 44px; background: var(--blue-lt); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; }
.cd-lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--g400); margin-bottom: 4px; }
.cd-val { font-size: 15px; font-weight: 500; color: var(--navy); }
.cd-sub { font-size: 13px; color: var(--g500); margin-top: 2px; }
.form-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--rxl); padding: 40px; box-shadow: var(--sh); }
.form-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--g500); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--g700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--g200); border-radius: var(--r); font-family: var(--font); font-size: 14px; color: var(--g800); background: #fff; transition: border-color .2s; outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.hour-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--g100); }
.hour-row:last-child { border-bottom: none; }
.hour-day { color: var(--g600); font-weight: 500; }
.hour-time { color: var(--g800); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 56px 0 24px; }
.foot-inner { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.foot-grid { display: grid; grid-template-columns: 220px repeat(4,1fr); gap: 40px; margin-bottom: 48px; }
.foot-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 12px; }
.foot-logo { display: flex; align-items: center; gap: 10px; }
.foot-logo-mark { font-weight: 700; font-size: 18px; color: #fff; letter-spacing: -.5px; }
.foot-logo-div { width: 1px; height: 24px; background: rgba(255,255,255,.15); }
.foot-logo-txt { font-size: 10px; color: rgba(255,255,255,.4); line-height: 1.3; }
.foot-social { display: flex; gap: 8px; margin-top: 16px; }
.soc-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; }
.soc-btn:hover { border-color: rgba(255,255,255,.4); }
.soc-btn svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.55); fill: none; stroke-width: 2; }
.foot-col h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: .3px; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 8px; }
.foot-col ul li a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: .2s; }
.foot-col ul li a:hover { color: rgba(255,255,255,.9); }
.foot-ci { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,.45); }
.foot-ci svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; stroke: rgba(255,255,255,.35); fill: none; stroke-width: 2; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.foot-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: .2s; }
.foot-links a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; }
  .dash-card { display: none; }
  .approach-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .svc-detail-grid, .featured-art, .contact-grid, .bottom-row { grid-template-columns: 1fr; }
  .grid-3, .values-grid, .team-grid, .articles-grid, .download-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(3,1fr); }
  .stats-bar { grid-column: span 3; }
  .steps { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 480px) {
  .grid-3, .values-grid, .team-grid, .articles-grid, .download-grid, .cert-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--g200); }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
