/* =========================================================
   AOIFE EXIM — Main Stylesheet
   ========================================================= */

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

:root {
  --gold:       #C9963A;
  --gold-light: #E8C47A;
  --gold-dark:  #8B6420;
  --green:      #2D5016;
  --green-mid:  #4A7C2A;
  --green-light:#7AAD50;
  --cream:      #FAF6EE;
  --cream-dark: #F0E8D8;
  --dark:       #1A1208;
  --dark-mid:   #2C2010;
  --text:       #3D2B0F;
  --text-muted: #7A6040;
  --border:     rgba(201,150,58,0.25);
  --red:        #8B2020;
  --white:      #FFFFFF;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--text); overflow-x:hidden; }
img { max-width:100%; height:auto; }
a { text-decoration:none; }

/* ── NAVIGATION ── */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(26,18,8,0.97); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  padding:0 2rem; height:68px; max-width:1400px; margin:0 auto;
}
.site-branding { text-decoration:none; }
.site-branding .logo-main { font-family:'Playfair Display',serif; color:var(--gold); font-size:1.5rem; font-weight:700; letter-spacing:2px; display:block; }
.site-branding .logo-sub  { color:var(--white); font-size:0.75rem; font-weight:400; letter-spacing:4px; display:block; margin-top:-4px; }

#primary-navigation { display:flex; align-items:center; gap:0; }
#primary-navigation a {
  color:rgba(255,255,255,0.78); font-size:0.8rem; text-decoration:none;
  padding:0 0.9rem; height:68px; display:flex; align-items:center;
  letter-spacing:0.5px; transition:color 0.2s,background 0.2s;
  border-bottom:2px solid transparent;
}
#primary-navigation a:hover,
#primary-navigation .current-menu-item a { color:var(--gold); border-bottom-color:var(--gold); }
#primary-navigation .nav-cta a {
  background:var(--gold); color:var(--dark) !important; padding:0.5rem 1.2rem !important;
  border-radius:4px; height:auto !important; font-weight:600; border-bottom:none !important;
}
#primary-navigation .nav-cta a:hover { background:var(--gold-light) !important; }

.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.nav-hamburger span { width:24px; height:2px; background:var(--gold); display:block; border-radius:2px; }

/* ── PAGE PADDING ── */
.page-wrap { padding-top:68px; min-height:100vh; }

/* ── HERO ── */
.hero {
  min-height:100vh; position:relative; overflow:hidden;
  display:flex; align-items:center;
  background:linear-gradient(135deg,#1A1208 0%,#2C1E08 40%,#1A1208 100%);
}
.hero-bg {
  position:absolute; inset:0; opacity:0.12;
  background-image:repeating-linear-gradient(45deg,var(--gold) 0,var(--gold) 1px,transparent 0,transparent 50%);
  background-size:20px 20px;
}
.hero-circles { position:absolute; inset:0; pointer-events:none; }
.hero-circle { position:absolute; border-radius:50%; border:1px solid rgba(201,150,58,0.15); }
.hero-content {
  position:relative; z-index:2; max-width:1200px; margin:0 auto;
  padding:6rem 2rem 4rem; display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,150,58,0.15); border:1px solid rgba(201,150,58,0.4);
  color:var(--gold); font-size:0.75rem; letter-spacing:2px;
  padding:6px 16px; border-radius:2px; margin-bottom:1.5rem;
}
.hero h1 { font-family:'Playfair Display',serif; font-size:3.8rem; color:var(--white); line-height:1.1; margin-bottom:1.5rem; }
.hero h1 em { color:var(--gold); font-style:normal; }
.hero-desc { color:rgba(255,255,255,0.65); font-size:1.05rem; line-height:1.8; margin-bottom:2.5rem; }
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; }

.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.hero-stat { background:rgba(255,255,255,0.05); border:1px solid rgba(201,150,58,0.2); border-radius:8px; padding:1.5rem; text-align:center; }
.hero-stat-num { font-family:'Playfair Display',serif; font-size:2.5rem; color:var(--gold); font-weight:700; }
.hero-stat-label { color:rgba(255,255,255,0.5); font-size:0.78rem; letter-spacing:1px; margin-top:4px; }
.hero-certbadges { display:flex; gap:8px; flex-wrap:wrap; margin-top:2rem; }
.cert-pill { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); color:rgba(255,255,255,0.7); font-size:0.72rem; padding:4px 12px; border-radius:20px; letter-spacing:0.5px; }

/* ── BUTTONS ── */
.btn-primary {
  background:var(--gold); color:var(--dark); padding:0.85rem 2rem;
  border-radius:4px; font-weight:600; cursor:pointer; display:inline-block;
  transition:all 0.2s; border:none; font-size:0.95rem; font-family:inherit;
}
.btn-primary:hover { background:var(--gold-light); transform:translateY(-1px); color:var(--dark); }
.btn-outline {
  background:transparent; color:var(--white); padding:0.85rem 2rem;
  border-radius:4px; font-weight:500; cursor:pointer; display:inline-block;
  transition:all 0.2s; border:1px solid rgba(255,255,255,0.3); font-size:0.95rem;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ── BANNER STRIP ── */
.banner-strip { background:var(--gold); padding:1rem 2rem; }
.banner-strip-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.banner-strip p { color:var(--dark); font-size:0.88rem; font-weight:500; }

/* ── SECTIONS ── */
section { padding:5rem 2rem; }
.container { max-width:1200px; margin:0 auto; }
.section-tag { font-size:0.72rem; letter-spacing:3px; color:var(--gold); text-transform:uppercase; margin-bottom:0.75rem; }
.section-title { font-family:'Playfair Display',serif; font-size:2.6rem; color:var(--dark); line-height:1.2; margin-bottom:1rem; }
.section-desc { color:var(--text-muted); font-size:1rem; line-height:1.8; max-width:640px; }
.section-divider { width:60px; height:3px; background:var(--gold); margin:1.5rem 0; }

.section-dark { background:var(--dark); }
.section-dark .section-title { color:var(--white); }
.section-dark .section-desc { color:rgba(255,255,255,0.55); }

.section-green { background:var(--green); }
.section-green .section-title { color:var(--white); }
.section-green .section-desc { color:rgba(255,255,255,0.7); }

/* ── CARDS ── */
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; margin-top:3rem; }
.card {
  background:var(--white); border:1px solid var(--border); border-radius:12px;
  padding:2rem; transition:all 0.25s; position:relative; overflow:hidden; cursor:pointer;
}
.card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(201,150,58,0.12); border-color:var(--gold); }
.card-icon { width:52px; height:52px; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; font-size:1.4rem; }
.card h3 { font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--dark); margin-bottom:0.75rem; }
.card p { color:var(--text-muted); font-size:0.9rem; line-height:1.7; }
.card-accent { position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--green-light)); transform:scaleX(0); transition:transform 0.25s; }
.card:hover .card-accent { transform:scaleX(1); }

.card-dark { background:rgba(255,255,255,0.04); border-color:rgba(255,255,255,0.08); }
.card-dark h3 { color:var(--white); }
.card-dark p  { color:rgba(255,255,255,0.55); }
.card-dark:hover { border-color:var(--gold); }

/* ── PRODUCT CARDS ── */
.product-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; margin-top:3rem; }
.product-card { background:var(--white); border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:all 0.25s; }
.product-card:hover { transform:translateY(-6px); box-shadow:0 20px 60px rgba(201,150,58,0.15); }
.product-card-img { height:180px; background:linear-gradient(135deg,#F5ECD0,#E8D5A0); display:flex; align-items:center; justify-content:center; font-size:4rem; position:relative; overflow:hidden; }
.product-card-img::after { content:''; position:absolute; bottom:-20px; left:0; right:0; height:40px; background:var(--white); border-radius:50% 50% 0 0; }
.product-card-body { padding:1.5rem; }
.product-tag { display:inline-block; background:rgba(201,150,58,0.1); color:var(--gold-dark); font-size:0.72rem; letter-spacing:1px; padding:3px 10px; border-radius:20px; margin-bottom:0.75rem; }
.product-card-body h3 { font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--dark); margin-bottom:0.5rem; }
.product-card-body p { color:var(--text-muted); font-size:0.87rem; line-height:1.7; margin-bottom:1rem; }
.product-specs { display:flex; gap:8px; flex-wrap:wrap; }
.spec-tag { background:var(--cream-dark); color:var(--text-muted); font-size:0.72rem; padding:3px 10px; border-radius:3px; }

/* ── DATA TABLE ── */
.data-table { width:100%; border-collapse:collapse; margin-top:2rem; }
.data-table th { background:var(--dark); color:var(--gold); font-size:0.8rem; letter-spacing:1px; padding:1rem 1.25rem; text-align:left; font-weight:500; }
.data-table td { padding:0.9rem 1.25rem; border-bottom:1px solid var(--border); font-size:0.9rem; color:var(--text); }
.data-table tr:hover td { background:rgba(201,150,58,0.04); }
.data-table tr:last-child td { border-bottom:none; }

/* ── EXPORT MARKET CARDS ── */
.markets-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem; margin-top:3rem; }
.market-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:10px; padding:1.5rem; text-align:center; transition:all 0.2s; }
.market-card:hover { border-color:var(--gold); background:rgba(201,150,58,0.08); }
.market-flag { font-size:2.5rem; margin-bottom:0.75rem; }
.market-card h4 { color:var(--white); font-size:0.95rem; margin-bottom:4px; }
.market-card p  { color:rgba(255,255,255,0.45); font-size:0.78rem; }

/* ── PROCESS STEPS ── */
.steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:0; margin-top:3rem; position:relative; }
.step { text-align:center; padding:2rem 1.5rem; position:relative; }
.step::after { content:'→'; position:absolute; right:-12px; top:50%; transform:translateY(-50%); color:var(--gold); font-size:1.5rem; z-index:2; }
.step:last-child::after { display:none; }
.step-num { width:56px; height:56px; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; font-family:'Playfair Display',serif; font-size:1.3rem; color:var(--dark); font-weight:700; }
.step h4 { font-size:0.95rem; font-weight:600; color:var(--dark); margin-bottom:0.5rem; }
.step p  { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

/* ── TESTIMONIALS ── */
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.5rem; margin-top:3rem; }
.testi-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:2rem; }
.testi-stars { color:var(--gold); font-size:1rem; margin-bottom:1rem; }
.testi-text  { font-style:italic; color:var(--text-muted); line-height:1.8; font-size:0.92rem; margin-bottom:1.5rem; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--green-mid)); display:flex; align-items:center; justify-content:center; color:var(--white); font-weight:600; font-size:0.9rem; }
.testi-name { font-weight:600; font-size:0.9rem; color:var(--dark); }
.testi-role { font-size:0.78rem; color:var(--text-muted); }

/* ── CONTACT FORM ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:0.82rem; color:var(--text-muted); font-weight:500; letter-spacing:0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background:var(--cream); border:1px solid var(--border); border-radius:6px;
  padding:0.75rem 1rem; color:var(--text); font-family:'DM Sans',sans-serif;
  font-size:0.92rem; transition:border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline:none; border-color:var(--gold); background:var(--white); }
.form-group textarea { resize:vertical; min-height:120px; }

/* ── INFO BOXES ── */
.info-box { background:var(--cream-dark); border-left:4px solid var(--gold); border-radius:0 8px 8px 0; padding:1.25rem 1.5rem; margin-bottom:1rem; }
.info-box h4 { font-weight:600; color:var(--dark); font-size:0.92rem; margin-bottom:0.35rem; }
.info-box p  { color:var(--text-muted); font-size:0.85rem; line-height:1.7; }

/* ── CERTIFICATIONS ── */
.cert-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; margin-top:3rem; }
.cert-card { background:var(--white); border:2px solid var(--border); border-radius:12px; padding:2rem; text-align:center; transition:all 0.25s; }
.cert-card:hover { border-color:var(--gold); transform:translateY(-3px); }
.cert-logo { width:80px; height:80px; background:linear-gradient(135deg,var(--cream-dark),var(--cream)); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; font-size:1.8rem; }
.cert-card h3 { font-family:'Playfair Display',serif; color:var(--dark); font-size:1.1rem; margin-bottom:0.5rem; }
.cert-card p  { color:var(--text-muted); font-size:0.82rem; line-height:1.6; }
.cert-status { display:inline-block; background:rgba(45,80,22,0.1); color:var(--green); font-size:0.72rem; padding:3px 10px; border-radius:20px; margin-top:0.75rem; font-weight:500; }

/* ── FAQ ── */
.faq-list { margin-top:2rem; max-width:760px; }
.faq-item { border:1px solid var(--border); border-radius:8px; margin-bottom:0.75rem; overflow:hidden; }
.faq-question { padding:1.25rem 1.5rem; display:flex; justify-content:space-between; align-items:center; cursor:pointer; background:var(--white); transition:background 0.2s; }
.faq-question:hover { background:var(--cream); }
.faq-question h4 { font-size:0.95rem; color:var(--dark); font-weight:500; }
.faq-icon { color:var(--gold); font-size:1.2rem; transition:transform 0.3s; user-select:none; }
.faq-answer { background:var(--cream); padding:0 1.5rem; max-height:0; overflow:hidden; transition:all 0.3s; }
.faq-answer p { padding:1rem 0; color:var(--text-muted); font-size:0.88rem; line-height:1.8; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-item.open .faq-answer { max-height:300px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background:linear-gradient(135deg,var(--dark) 0%,var(--dark-mid) 100%); padding:5rem 2rem 3rem; text-align:center; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; opacity:0.05; background-image:repeating-linear-gradient(45deg,var(--gold) 0,var(--gold) 1px,transparent 0,transparent 30px); background-size:30px 30px; }
.page-hero h1 { font-family:'Playfair Display',serif; color:var(--white); font-size:3rem; position:relative; z-index:1; margin-bottom:1rem; }
.page-hero p { color:rgba(255,255,255,0.55); font-size:1rem; position:relative; z-index:1; max-width:600px; margin:0 auto; }
.breadcrumb { display:flex; gap:8px; align-items:center; justify-content:center; margin-top:1.5rem; position:relative; z-index:1; }
.breadcrumb span { color:rgba(255,255,255,0.35); font-size:0.8rem; }
.breadcrumb a  { color:var(--gold); font-size:0.8rem; }

/* ── ABOUT PAGE ── */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-visual { background:linear-gradient(135deg,var(--cream-dark),var(--cream)); border-radius:20px; height:420px; display:flex; align-items:center; justify-content:center; font-size:6rem; border:2px solid var(--border); position:relative; overflow:hidden; }
.about-visual::after { content:'EST. 2010'; position:absolute; bottom:20px; right:20px; background:var(--gold); color:var(--dark); font-size:0.75rem; font-weight:600; letter-spacing:2px; padding:6px 14px; border-radius:3px; }
.values-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.25rem; margin-top:3rem; }
.value-card { background:var(--cream-dark); border-left:4px solid var(--gold); padding:1.5rem; border-radius:0 8px 8px 0; }
.value-card h4 { font-family:'Playfair Display',serif; color:var(--dark); font-size:1.05rem; margin-bottom:0.5rem; }
.value-card p  { color:var(--text-muted); font-size:0.85rem; line-height:1.7; }

/* ── HIGHLIGHT NUMBERS ── */
.highlight-nums { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:1.5rem; margin:3rem 0; }
.hl-num { text-align:center; }
.hl-num-val   { font-family:'Playfair Display',serif; font-size:3rem; color:var(--gold); font-weight:700; }
.hl-num-label { color:var(--text-muted); font-size:0.82rem; margin-top:4px; }

/* ── TAGS ── */
.tag-list { display:flex; gap:8px; flex-wrap:wrap; margin-top:1rem; }
.tag { background:var(--cream-dark); border:1px solid var(--border); color:var(--text-muted); font-size:0.8rem; padding:4px 12px; border-radius:3px; }
.tag-green { background:rgba(45,80,22,0.08); border-color:rgba(45,80,22,0.2); color:var(--green); }
.tag-gold   { background:rgba(201,150,58,0.1); border-color:rgba(201,150,58,0.3); color:var(--gold-dark); }

/* ── WHY US ── */
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; margin-top:3rem; }
.why-item { display:flex; gap:1.25rem; align-items:flex-start; }
.why-icon { width:48px; height:48px; min-width:48px; background:rgba(201,150,58,0.1); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; }
.why-text h4 { font-weight:600; color:var(--dark); font-size:0.95rem; margin-bottom:0.4rem; }
.why-text p  { color:var(--text-muted); font-size:0.85rem; line-height:1.7; }

/* ── BLOG ── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; margin-top:3rem; }
.blog-card { background:var(--white); border:1px solid var(--border); border-radius:12px; overflow:hidden; transition:all 0.25s; }
.blog-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(201,150,58,0.1); }
.blog-card-img { height:200px; background:linear-gradient(135deg,var(--cream-dark),var(--cream)); display:flex; align-items:center; justify-content:center; font-size:3.5rem; }
.blog-card-body { padding:1.5rem; }
.blog-cat   { font-size:0.72rem; color:var(--gold-dark); letter-spacing:1px; text-transform:uppercase; margin-bottom:0.5rem; }
.blog-card-body h3 { font-family:'Playfair Display',serif; color:var(--dark); font-size:1.1rem; margin-bottom:0.75rem; line-height:1.35; }
.blog-card-body p  { color:var(--text-muted); font-size:0.85rem; line-height:1.7; }
.blog-meta { display:flex; gap:1rem; margin-top:1rem; font-size:0.78rem; color:var(--text-muted); }

/* ── FOOTER ── */
.site-footer { background:var(--dark-mid); border-top:1px solid rgba(201,150,58,0.15); padding:4rem 2rem 2rem; }
.footer-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand h3 { font-family:'Playfair Display',serif; color:var(--gold); font-size:1.6rem; margin-bottom:0.5rem; }
.footer-brand p  { color:rgba(255,255,255,0.45); font-size:0.85rem; line-height:1.8; margin-bottom:1.25rem; }
.footer-col h4 { color:var(--white); font-size:0.82rem; letter-spacing:2px; margin-bottom:1.25rem; text-transform:uppercase; }
.footer-col a  { display:block; color:rgba(255,255,255,0.45); font-size:0.85rem; text-decoration:none; margin-bottom:0.6rem; transition:color 0.2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { max-width:1200px; margin:0 auto; border-top:1px solid rgba(255,255,255,0.08); padding-top:2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:0.5rem; }
.footer-bottom p { color:rgba(255,255,255,0.3); font-size:0.8rem; }
.footer-certbadges { display:flex; gap:8px; flex-wrap:wrap; }
.footer-cert { background:rgba(201,150,58,0.1); border:1px solid rgba(201,150,58,0.25); color:var(--gold); font-size:0.7rem; padding:3px 10px; border-radius:3px; letter-spacing:0.5px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation:fadeUp 0.7s ease forwards; }
.fade-up-delay-1 { animation-delay:0.1s; opacity:0; }
.fade-up-delay-2 { animation-delay:0.2s; opacity:0; }
.fade-up-delay-3 { animation-delay:0.3s; opacity:0; }

/* ── WORDPRESS CORE CLASSES ── */
.wp-caption { max-width:100%; }
.alignleft  { float:left; margin-right:1.5rem; margin-bottom:1rem; }
.alignright { float:right; margin-left:1.5rem; margin-bottom:1rem; }
.aligncenter{ display:block; margin:0 auto 1rem; }
.screen-reader-text { position:absolute; left:-999em; }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .hero-content        { grid-template-columns:1fr; gap:2rem; }
  .hero h1             { font-size:2.5rem; }
  .footer-grid         { grid-template-columns:1fr 1fr; }
  .about-split         { grid-template-columns:1fr; }
  .form-grid           { grid-template-columns:1fr; }
  .contact-grid        { grid-template-columns:1fr; }
  .steps               { grid-template-columns:1fr 1fr; }
  .step::after         { display:none; }
  #primary-navigation  { display:none; }
  .nav-hamburger       { display:flex; }
  #primary-navigation.mobile-open {
    display:flex; flex-direction:column; position:fixed;
    top:68px; left:0; right:0; background:var(--dark);
    padding:1rem 0; gap:0;
  }
  #primary-navigation.mobile-open a { height:44px; padding:0 2rem; }
  .page-hero h1        { font-size:2rem; }
}
@media (max-width:600px) {
  .footer-grid   { grid-template-columns:1fr; gap:2rem; }
  .hero-stats    { grid-template-columns:1fr 1fr; }
  .card-grid, .cert-grid { grid-template-columns:1fr; }
}
