/* =====================================================
   WMGL Corporate Template — Main Stylesheet
   Wiseman Guidance Group
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0f2d5c;
  --primary-light: #1a3f7a;
  --secondary: #10b981;
  --secondary-dark: #059669;
  --accent: #34d399;
  --foreground: #0f172a;
  --background: #ffffff;
  --muted: #64748b;
  --muted-bg: #f1f5f9;
  --border: #e2e8f0;
  --card: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius: .75rem;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── HEADER ── */
#wmgl-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: box-shadow .3s;
}
#wmgl-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; color: #fff; font-size: 1rem;
  flex-shrink: 0;
}
.logo-text .site-name {
  font-family: var(--font-serif); font-weight: 700;
  color: var(--primary); font-size: 1.1rem; line-height: 1;
}
.logo-text .site-tagline {
  font-size: .7rem; color: var(--muted); letter-spacing: .03em;
}

/* ── NAV ── */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--foreground);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { background: var(--muted-bg); color: var(--primary); }
.btn-cta {
  background: var(--primary); color: #fff !important;
  padding: 9px 20px !important; border-radius: 10px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(15,45,92,.3);
  transition: background .2s, transform .2s !important;
}
.btn-cta:hover { background: var(--primary-light) !important; transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--foreground); border-radius: 2px; margin: 5px 0;
  transition: .3s;
}
.mobile-nav {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 999; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: .95rem;
  display: block; transition: background .2s;
}
.mobile-nav a:hover { background: var(--muted-bg); }

/* ── MAIN ── */
main.site-main { padding-top: var(--nav-height); min-height: 60vh; }

/* ── HERO (Home) ── */
.hero-section {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .25;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(15,45,92,.7), rgba(15,45,92,.85));
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 40px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 6px 18px;
  color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 24px;
}
.hero-title .highlight { color: var(--secondary); }
.hero-subtitle {
  color: rgba(255,255,255,.8); font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--secondary); color: #fff;
  padding: 14px 28px; border-radius: 12px; font-weight: 600;
  font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(16,185,129,.35);
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.btn-outline {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 13px 28px; border-radius: 12px; font-weight: 600;
  font-size: 1rem; transition: background .2s, transform .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--primary-light); padding: 28px 24px;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px;
  text-align: center;
}
.stat-item .stat-value {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-item .stat-label { color: rgba(255,255,255,.65); font-size: .8rem; margin-top: 4px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  padding: 80px 24px 72px; text-align: center;
}
.page-hero .badge {
  display: inline-block; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: 5px 18px; color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 500;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── SECTIONS ── */
.section { padding: 88px 24px; }
.section-alt { background: var(--muted-bg); }
.section-dark { background: #0f172a; color: #fff; }
.container { max-width: 1280px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }

.section-badge {
  display: inline-block; background: rgba(16,185,129,.12);
  color: var(--secondary-dark); border-radius: 100px;
  padding: 4px 16px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--foreground); line-height: 1.15; margin-bottom: 16px;
}
.section-dark .section-title { color: #fff; }
.section-subtitle {
  font-size: 1.05rem; color: var(--muted); max-width: 600px;
  line-height: 1.7; margin-bottom: 48px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.6); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(15,45,92,.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* dark card variant */
.card-dark {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: #fff; border-radius: var(--radius); padding: 28px;
  transition: background .3s, transform .3s;
}
.card-dark:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.card-dark h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 10px; }
.card-dark p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.65; }

/* ── PRODUCT CARD ── */
.product-card { border-radius: 16px; overflow: hidden; background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.product-card-body { padding: 22px; }
.product-card-body h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.product-card-body p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 14px; }
.product-tag {
  display: inline-block; background: rgba(16,185,129,.12); color: var(--secondary-dark);
  border-radius: 100px; padding: 3px 12px; font-size: .75rem; font-weight: 600; margin-right: 6px; margin-bottom: 6px;
}
.btn-inquire {
  display: inline-block; margin-top: 14px;
  background: var(--primary); color: #fff;
  padding: 9px 20px; border-radius: 8px; font-size: .85rem; font-weight: 600;
  transition: background .2s;
}
.btn-inquire:hover { background: var(--primary-light); }

/* ── PROCESS STEPS ── */
.steps-wrapper { display: flex; flex-direction: column; gap: 40px; }
.step-row { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: start; gap: 0; }
.step-row.reverse { direction: rtl; }
.step-row.reverse > * { direction: ltr; }
.step-center { display: flex; flex-direction: column; align-items: center; padding-top: 32px; }
.step-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.step-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-line { flex: 1; width: 2px; background: linear-gradient(to bottom, var(--border), transparent); margin-top: 8px; }
.step-card {
  border: 2px solid; border-radius: 20px; padding: 28px; height: 100%;
}
.step-num {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 900;
  opacity: .15; line-height: 1; margin-bottom: 4px;
}
.step-sub { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.step-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; margin-bottom: 16px; }
.tag { display: inline-block; border: 1px solid; border-radius: 100px; padding: 3px 12px; font-size: .73rem; font-weight: 600; margin: 3px; }

/* step color variants */
.step-blue .step-card { border-color: #bfdbfe; background: #eff6ff; }
.step-blue .step-num, .step-blue .step-sub, .step-blue .tag { color: #1d4ed8; }
.step-blue .tag { border-color: #bfdbfe; background: rgba(255,255,255,.6); }
.step-blue .step-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.step-teal .step-card { border-color: #99f6e4; background: #f0fdf4; }
.step-teal .step-num, .step-teal .step-sub, .step-teal .tag { color: #0d9488; }
.step-teal .tag { border-color: #99f6e4; background: rgba(255,255,255,.6); }
.step-teal .step-icon { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.step-green .step-card { border-color: #bbf7d0; background: #f0fdf4; }
.step-green .step-num, .step-green .step-sub, .step-green .tag { color: #059669; }
.step-green .tag { border-color: #bbf7d0; background: rgba(255,255,255,.6); }
.step-green .step-icon { background: linear-gradient(135deg, #10b981, #059669); }
.step-violet .step-card { border-color: #ddd6fe; background: #f5f3ff; }
.step-violet .step-num, .step-violet .step-sub, .step-violet .tag { color: #7c3aed; }
.step-violet .tag { border-color: #ddd6fe; background: rgba(255,255,255,.6); }
.step-violet .step-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

/* ── PARTNER CARDS ── */
.partner-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: box-shadow .3s, transform .3s; }
.partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.partner-logo-box { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; color: #fff; }
.partner-card h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.partner-card .country { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.partner-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── CLIENT GRID ── */
.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.client-badge { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 14px; text-align: center; font-weight: 700; font-size: .85rem; transition: box-shadow .2s, transform .2s; }
.client-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.contact-info p { color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(15,45,92,.1); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.contact-detail strong { display: block; font-size: .82rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-detail span { color: var(--muted); font-size: .9rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font-sans); font-size: .92rem;
  background: var(--background); color: var(--foreground);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,45,92,.1); }
.form-group textarea { height: 130px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--primary); color: #fff;
  padding: 13px 24px; border-radius: 10px; border: none;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.btn-submit:hover { background: var(--primary-light); }

/* ── LICENSE BADGES ── */
.license-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-bottom: 48px; }
.license-badge { text-align: center; background: var(--muted-bg); border: 1px solid var(--border); border-radius: 16px; padding: 22px 14px; transition: border-color .2s, background .2s; }
.license-badge:hover { border-color: var(--secondary); background: rgba(16,185,129,.05); }
.license-badge svg { width: 26px; height: 26px; stroke: var(--secondary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 10px; display: block; }
.license-badge span { font-weight: 600; font-size: .85rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  border-radius: 24px; padding: 52px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: .95rem; }
.cta-banner .btn-primary { background: var(--secondary); }

/* ── CREDENTIALS BAR ── */
.creds-bar { background: var(--primary); padding: 52px 24px; text-align: center; }
.creds-bar h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.creds-bar p { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.creds-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cred-pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; border-radius: 100px; padding: 7px 18px; font-size: .83rem; font-weight: 500; }

/* ── COMPLETION ── */
.completion-check { display: flex; align-items: center; gap: 14px; background: rgba(16,185,129,.1); border: 2px solid rgba(16,185,129,.35); border-radius: 16px; padding: 20px 32px; width: fit-content; margin: 0 auto; }
.completion-check svg { width: 30px; height: 30px; stroke: var(--secondary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.completion-check strong { font-family: var(--font-serif); font-size: 1.1rem; display: block; }
.completion-check span { font-size: .85rem; color: var(--muted); }

/* ── SISTER CONCERNS ── */
.sister-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: box-shadow .3s, transform .3s; }
.sister-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sister-logo { width: 64px; height: 64px; border-radius: 14px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: #fff; }
.sister-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.sister-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; margin-bottom: 18px; }
.sister-tag { display: inline-block; border-radius: 100px; padding: 3px 12px; font-size: .75rem; font-weight: 600; margin-right: 6px; }

/* ── CSR ── */
.csr-pillar { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: box-shadow .3s, transform .3s; }
.csr-pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.csr-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.csr-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.csr-pillar h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.csr-pillar p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── SUSTAINABILITY ── */
.sustain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sustain-item { display: flex; gap: 12px; margin-bottom: 20px; }
.sustain-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--secondary); margin-top: 6px; flex-shrink: 0; }

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ── FOOTER ── */
#wmgl-footer { background: #0a1628; color: rgba(255,255,255,.7); padding: 64px 24px 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-mark { background: rgba(255,255,255,.1); margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; }
.footer-bottom .footer-links { display: flex; gap: 20px; }
.footer-bottom .footer-links a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom .footer-links a:hover { color: var(--secondary); }

/* ── JOOMLA COMPONENT AREA ── */
.joomla-content { max-width: 900px; margin: 0 auto; padding: 48px 24px; }
.joomla-content h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: var(--primary); }
.joomla-content h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; margin: 28px 0 12px; }
.joomla-content p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.joomla-content ul { margin: 0 0 16px 20px; }
.joomla-content ul li { color: var(--muted); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.joomla-content img { border-radius: 12px; margin: 20px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-row { grid-template-columns: 1fr 60px 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .step-row { grid-template-columns: 1fr; }
  .step-row.reverse { direction: ltr; }
  .step-center { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 16px; }
}
