/* ============================================================
   MAY R Manpower Workforce — Shared Stylesheet
   ============================================================ */
:root {
  /* Color system */
  --bg:            #0d1b2a;
  --bg-deep:       #0a1420;
  --surface:       #ffffff;
  --surface-2:     #f5f7fa;
  --surface-3:     #eef1f6;
  --border:        #e2e7ef;
  --border-dark:   rgba(255,255,255,.12);

  --text:          #16202e;
  --text-muted:    #56637a;
  --text-faint:    #8a93a6;
  --text-invert:   #eef2f8;
  --text-invert-muted: #a7b3c7;

  --accent:        #f6971d;
  --accent-hover:  #e5860c;
  --accent-soft:   #fff3e0;
  --navy:          #1b3a5f;
  --navy-2:        #24507f;

  /* Type scale */
  --f-xs: .8125rem;   --f-sm: .9375rem;  --f-base: 1rem;
  --f-md: 1.25rem;    --f-lg: 1.5rem;    --f-xl: 2rem;
  --f-2xl: 2.75rem;   --f-3xl: 3.5rem;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --radius: 12px; --radius-lg: 20px; --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16,29,48,.06), 0 1px 3px rgba(16,29,48,.08);
  --shadow-md: 0 4px 12px rgba(16,29,48,.08), 0 2px 4px rgba(16,29,48,.06);
  --shadow-lg: 0 18px 40px rgba(16,29,48,.16);

  --ease: cubic-bezier(.2,.8,.2,1);
  --dur: 180ms;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--text); background: var(--surface);
  line-height: 1.6; font-size: var(--f-base); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }
h1,h2,h3 { line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }

.eyebrow {
  display: inline-block; font-size: var(--f-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--s-3);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--f-sm); font-weight: 600; padding: 13px 24px;
  border-radius: var(--radius-pill); cursor: pointer; border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #1a1206; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text-invert); border-color: var(--border-dark); }
.btn-ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,27,42,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: var(--s-3); color: var(--text-invert); }
.logo {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
}
.logo svg { width: 42px; height: 42px; display: block; }
.brand-name { font-weight: 700; font-size: var(--f-sm); letter-spacing: .02em; line-height: 1.2; }
.brand-name small { display: block; font-weight: 500; font-size: var(--f-xs); color: var(--text-invert-muted); letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; gap: var(--s-5); }
.nav-links a { font-size: var(--f-sm); color: var(--text-invert-muted); font-weight: 500; transition: color var(--dur); }
.nav-links a:hover, .nav-links a.active { color: var(--text-invert); }
.nav-links a.active { position: relative; }
.nav-links a.active::after { content:""; position:absolute; left:0; right:0; bottom:-26px; height:2px; background: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: var(--s-4); }
.menu-btn { display: none; background: none; border: 0; color: var(--text-invert); cursor: pointer; padding: 8px; }
.mobile-menu { display: none; }
.mobile-menu.open { display: block; background: var(--bg-deep); border-bottom: 1px solid var(--border-dark); }
.mobile-menu a { display: block; padding: 14px var(--s-5); color: var(--text-invert-muted); font-size: var(--f-sm); font-weight: 500; border-top: 1px solid var(--border-dark); }
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.04); }

/* Page hero (interior pages) */
.page-hero {
  position: relative; color: var(--text-invert); padding: var(--s-9) 0;
  background: linear-gradient(180deg, rgba(13,27,42,.86), rgba(10,20,32,.92)), var(--hero-img, none);
  background-size: cover; background-position: center;
  text-align: center;
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-size: var(--f-3xl); margin-bottom: var(--s-4); }
.page-hero p { font-size: var(--f-md); color: var(--text-invert-muted); max-width: 60ch; margin: 0 auto var(--s-5); line-height: 1.5; }
.crumbs { font-size: var(--f-sm); color: var(--text-invert-muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--accent); }

/* Home hero */
.hero {
  position: relative; overflow: hidden; color: var(--text-invert);
  padding: var(--s-9) 0 calc(var(--s-9) + 40px);
  background:
    linear-gradient(115deg, rgba(13,27,42,.94) 0%, rgba(13,27,42,.82) 45%, rgba(13,27,42,.55) 100%),
    var(--hero-img, none) center/cover no-repeat,
    linear-gradient(180deg, var(--bg), var(--bg-deep));
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-8); align-items: center; }
.hero h1 { font-size: var(--f-3xl); margin-bottom: var(--s-5); }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { font-size: var(--f-md); color: var(--text-invert-muted); max-width: 42ch; margin-bottom: var(--s-6); line-height: 1.5; }
.hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-7); }
.hero-stats { display: flex; gap: var(--s-7); flex-wrap: wrap; }
.stat .num { font-size: var(--f-xl); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat .lbl { font-size: var(--f-xs); color: var(--text-invert-muted); text-transform: uppercase; letter-spacing: .1em; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: var(--s-6); backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: var(--f-md); margin-bottom: var(--s-4); }
.hero-card ul { list-style: none; display: grid; gap: var(--s-3); }
.hero-card li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--f-sm); color: var(--text-invert-muted); }
.check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(246,151,29,.18); color: var(--accent); display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 1px; }

/* Trust bar */
.trust { background: var(--bg-deep); border-top: 1px solid var(--border-dark); padding: var(--s-5) 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: var(--s-7); flex-wrap: wrap; }
.trust span { color: var(--text-invert-muted); font-weight: 600; font-size: var(--f-sm); display: flex; align-items: center; gap: var(--s-2); }
.trust svg { width: 18px; height: 18px; color: var(--accent); }

/* Sections */
section { padding: var(--s-9) 0; }
.section-head { max-width: 680px; margin: 0 auto var(--s-7); text-align: center; }
.section-head h2 { font-size: var(--f-2xl); margin-bottom: var(--s-4); }
.section-head p { color: var(--text-muted); font-size: var(--f-md); line-height: 1.5; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy); aspect-ratio: 4/3; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .badge {
  position: absolute; bottom: var(--s-5); left: var(--s-5);
  background: rgba(13,27,42,.72); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: var(--s-3) var(--s-4); backdrop-filter: blur(8px); color:#fff;
}
.about-img .badge .b-num { color: var(--accent); font-size: var(--f-lg); font-weight: 800; }
.about-img .badge .b-lbl { color: var(--text-invert-muted); font-size: var(--f-xs); }
.about-text h2 { font-size: var(--f-2xl); margin-bottom: var(--s-4); }
.about-text p { color: var(--text-muted); margin-bottom: var(--s-4); }
.about-mini { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-top: var(--s-5); }
.about-mini .m { display: flex; gap: var(--s-3); align-items: flex-start; }
.about-mini .m .mi { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; }
.about-mini .m .mi svg { width: 20px; height: 20px; }
.about-mini .m h4 { font-size: var(--f-sm); margin-bottom: 2px; }
.about-mini .m p { font-size: var(--f-xs); color: var(--text-muted); margin: 0; }

/* Mission Vision Values */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.mvv-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s-6); }
.mvv-card .ico { width: 52px; height: 52px; border-radius: 14px; margin-bottom: var(--s-4); background: var(--navy); color: #fff; display: grid; place-items: center; }
.mvv-card .ico svg { width: 26px; height: 26px; }
.mvv-card h3 { font-size: var(--f-md); margin-bottom: var(--s-3); }
.mvv-card p { color: var(--text-muted); font-size: var(--f-sm); }

/* Cards / services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--s-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d6deea; }
.card .ico { width: 52px; height: 52px; border-radius: 14px; margin-bottom: var(--s-4); background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--f-md); margin-bottom: var(--s-3); }
.card p { color: var(--text-muted); font-size: var(--f-sm); margin-bottom: var(--s-4); }
.card ul { list-style: none; display: grid; gap: var(--s-2); }
.card ul li { font-size: var(--f-xs); color: var(--text-muted); display: flex; gap: var(--s-2); align-items: center; }
.card ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* Service detail rows (services page) */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; margin-bottom: var(--s-8); }
.svc-row:last-child { margin-bottom: 0; }
.svc-row.rev .svc-media { order: 2; }
.svc-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/11; background: var(--navy); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-body h3 { font-size: var(--f-xl); margin-bottom: var(--s-3); }
.svc-body p { color: var(--text-muted); margin-bottom: var(--s-4); }
.svc-body ul { list-style: none; display: grid; gap: var(--s-2); margin-bottom: var(--s-5); }
.svc-body ul li { display: flex; gap: var(--s-3); align-items: center; font-size: var(--f-sm); color: var(--text); }
.svc-body ul li .ck { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; font-size: 12px; font-weight: 800; }

/* Two audiences */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.aud-card { border-radius: var(--radius-lg); padding: var(--s-7); color: #fff; position: relative; overflow: hidden; }
.aud-card.emp { background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
.aud-card.work { background: linear-gradient(135deg, #b96e05, var(--accent)); }
.aud-card h3 { font-size: var(--f-xl); margin-bottom: var(--s-3); }
.aud-card p { color: rgba(255,255,255,.85); margin-bottom: var(--s-5); font-size: var(--f-sm); }
.aud-card ul { list-style: none; display: grid; gap: var(--s-3); margin-bottom: var(--s-6); }
.aud-card ul li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--f-sm); }
.aud-card ul li .ck { flex: none; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.aud-card.work .btn-white { color: #7a4a03; }

/* Industries */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.ind { display: flex; align-items: center; gap: var(--s-3); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-4) var(--s-5); font-weight: 600; font-size: var(--f-sm); transition: border-color var(--dur), transform var(--dur) var(--ease); }
.ind:hover { border-color: var(--accent); transform: translateY(-2px); }
.ind .i-ico { width: 34px; height: 34px; border-radius: 8px; background: var(--surface-3); color: var(--navy); display: grid; place-items: center; flex: none; }
.ind .i-ico svg { width: 18px; height: 18px; }

/* Industry cards with photos */
.ind-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.ind-photo { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--navy); }
.ind-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.ind-photo:hover img { transform: scale(1.06); }
.ind-photo .cap { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: var(--s-5); background: linear-gradient(180deg, transparent 40%, rgba(10,20,32,.85)); }
.ind-photo .cap h3 { color: #fff; font-size: var(--f-md); }
.ind-photo .cap p { color: var(--text-invert-muted); font-size: var(--f-xs); margin-top: 2px; }

/* Why band */
.why { background: var(--bg); color: var(--text-invert); }
.why .section-head h2 { color: #fff; }
.why .section-head p { color: var(--text-invert-muted); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.why-item { padding: var(--s-5); border: 1px solid var(--border-dark); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.why-item .n { font-size: var(--f-xs); font-weight: 800; letter-spacing: .12em; color: var(--accent); margin-bottom: var(--s-3); }
.why-item h3 { font-size: var(--f-base); margin-bottom: var(--s-2); color: #fff; }
.why-item p { font-size: var(--f-sm); color: var(--text-invert-muted); }

/* Stats band */
.stats-band { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); text-align: center; }
.stats-grid .s-num { font-size: var(--f-3xl); font-weight: 800; letter-spacing: -.03em; color: var(--accent); }
.stats-grid .s-lbl { font-size: var(--f-sm); color: rgba(255,255,255,.82); margin-top: var(--s-2); }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); counter-reset: step; }
.step { position: relative; padding-top: var(--s-6); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.step h3 { font-size: var(--f-base); margin: var(--s-5) 0 var(--s-2); }
.step p { font-size: var(--f-sm); color: var(--text-muted); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s-6); }
.testi-card .stars { color: var(--accent); font-size: var(--f-sm); letter-spacing: 2px; margin-bottom: var(--s-4); }
.testi-card blockquote { font-size: var(--f-sm); color: var(--text); line-height: 1.6; margin-bottom: var(--s-5); }
.testi-card .who { display: flex; align-items: center; gap: var(--s-3); }
.testi-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; }
.testi-card .who .nm { font-size: var(--f-sm); font-weight: 700; }
.testi-card .who .rl { font-size: var(--f-xs); color: var(--text-faint); }

/* Coverage */
.cover-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--s-8); align-items: center; }
.cover-list { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.cover-list .pill { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 16px; font-size: var(--f-sm); font-weight: 600; color: var(--text); }
.cover-list .pill:hover { border-color: var(--accent); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: var(--s-3); }
details.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 0 var(--s-5); transition: border-color var(--dur); }
details.faq-item[open] { border-color: var(--accent); }
details.faq-item summary { cursor: pointer; list-style: none; padding: var(--s-5) 0; font-weight: 600; font-size: var(--f-base); display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .plus { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--surface-3); color: var(--navy); display: grid; place-items: center; font-weight: 700; transition: transform var(--dur), background var(--dur); }
details.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
details.faq-item p { color: var(--text-muted); font-size: var(--f-sm); padding: 0 0 var(--s-5); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: stretch; }
.contact-info h2 { font-size: var(--f-2xl); margin-bottom: var(--s-4); }
.contact-info > p { color: var(--text-muted); font-size: var(--f-md); margin-bottom: var(--s-6); max-width: 40ch; line-height: 1.5; }
.contact-list { display: grid; gap: var(--s-4); }
.contact-item { display: flex; align-items: center; gap: var(--s-4); background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-4) var(--s-5); transition: border-color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur); }
.contact-item:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-item .ci-ico { width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.contact-item .ci-ico svg { width: 22px; height: 22px; }
.contact-item .lbl { font-size: var(--f-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); font-weight: 600; }
.contact-item .val { font-size: var(--f-md); font-weight: 700; color: var(--text); }

/* Form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s-6); box-shadow: var(--shadow-md); }
.form-card h3 { font-size: var(--f-md); margin-bottom: var(--s-5); }
.field { margin-bottom: var(--s-4); }
.field label { display: block; font-size: var(--f-xs); font-weight: 600; color: var(--text-muted); margin-bottom: var(--s-2); text-transform: uppercase; letter-spacing: .06em; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; font-size: var(--f-sm); font-family: inherit; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-2); color: var(--text); transition: border-color var(--dur), box-shadow var(--dur), background var(--dur); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(246,151,29,.18); }
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: var(--s-2); }
.form-note { font-size: var(--f-xs); color: var(--text-faint); text-align: center; margin-top: var(--s-3); }
.form-success { display: none; background: #e9f8f0; border: 1px solid #b6e6cf; color: #14794e; border-radius: var(--radius); padding: var(--s-4); font-size: var(--f-sm); margin-bottom: var(--s-4); }
.form-success.show { display: block; }

/* CTA band */
.cta { background-image: linear-gradient(135deg, var(--navy), var(--navy-2)), radial-gradient(600px 300px at 90% -20%, rgba(246,151,29,.25), transparent); color: #fff; border-radius: var(--radius-lg); padding: var(--s-8); display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); box-shadow: var(--shadow-lg); }
.cta h2 { font-size: var(--f-xl); margin-bottom: var(--s-2); }
.cta p { color: rgba(255,255,255,.8); font-size: var(--f-md); }
.cta .actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* Footer */
footer { background: var(--bg-deep); color: var(--text-invert-muted); padding: var(--s-8) 0 var(--s-6); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-7); margin-bottom: var(--s-7); }
footer .brand { margin-bottom: var(--s-4); }
.foot-about p { font-size: var(--f-sm); max-width: 34ch; line-height: 1.6; margin-bottom: var(--s-4); }
.foot-about .socials { display: flex; gap: var(--s-3); }
.foot-about .socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background var(--dur); }
.foot-about .socials a:hover { background: var(--accent); color: #1a1206; }
.foot-about .socials svg { width: 18px; height: 18px; }
.foot-col h4 { color: #fff; font-size: var(--f-sm); margin-bottom: var(--s-4); letter-spacing: .04em; }
.foot-col a, .foot-col p { display: block; font-size: var(--f-sm); margin-bottom: var(--s-3); transition: color var(--dur); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid var(--border-dark); padding-top: var(--s-5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); font-size: var(--f-xs); color: var(--text-faint); }

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

/* Utility */
.bg-2 { background: var(--surface-2); }
.bg-3 { background: var(--surface-3); }
.text-left { text-align: left; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .contact-grid, .about-grid, .cover-wrap, .svc-row { grid-template-columns: 1fr; gap: var(--s-7); }
  .svc-row.rev .svc-media { order: 0; }
  .cards, .ind-grid, .ind-photos, .why-grid, .steps, .mvv-grid, .testi-grid, .aud-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .cta { flex-direction: column; text-align: center; align-items: center; }
  .about-mini { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --f-3xl: 2.3rem; --f-2xl: 1.9rem; --f-xl: 1.6rem; }
  .cards, .ind-grid, .ind-photos, .why-grid, .steps, .mvv-grid, .testi-grid, .aud-grid, .foot-grid, .stats-grid, .form-row { grid-template-columns: 1fr; }
  section, .hero, .page-hero { padding: var(--s-8) 0; }
  .hero-stats { gap: var(--s-5); }
  .nav-cta .btn { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .ind-photo:hover img { transform: none; }
}
