/* ============================================================
   AMAVULANDLELA BUSINESS SOLUTIONS — SHARED STYLESHEET v2
   Brand: Deep Navy #0a1628 | Gold #C8922A | White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1d3461;
  --gold:       #C8922A;
  --gold-light: #e5b44a;
  --gold-pale:  #f5e9cc;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --gray-light: #e8e6e0;
  --gray:       #9a9690;
  --text:       #2c2a25;
  --text-light: #5f5d57;
  --radius:     6px;
  --radius-lg:  14px;
  --shadow:     0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:  0 12px 48px rgba(10,22,40,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.65; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem,2.5vw,1.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-light); line-height: 1.75; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── NAVIGATION ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 76px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
#site-nav.scrolled { background: var(--navy); box-shadow: 0 2px 30px rgba(10,22,40,0.3); height: 64px; }
.nav-logo img { height: 48px; transition: height var(--transition); }
#site-nav.scrolled .nav-logo img { height: 40px; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  font-family: 'Nunito Sans', sans-serif; font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  padding: 0.45rem 0.8rem; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(200,146,42,0.12); }
.nav-links .nav-cta a { background: var(--gold); color: var(--navy); padding: 0.5rem 1.2rem; }
.nav-links .nav-cta a:hover { background: var(--gold-light); color: var(--navy); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border-radius: var(--radius); min-width: 200px;
  padding: 0.5rem 0; box-shadow: var(--shadow-lg); border-top: 2px solid var(--gold);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: block; padding: 0.6rem 1.2rem; font-size: 0.85rem; text-transform: none; letter-spacing: 0; border-radius: 0; color: var(--gray-light) !important; }
.dropdown-menu a:hover { color: var(--gold) !important; background: rgba(200,146,42,0.1); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: transform var(--transition), opacity var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; background: var(--navy); padding: 100px 5vw 2rem; flex-direction: column; gap: 0.3rem; overflow-y: auto; }
#mobile-nav.open { display: flex; }
#mobile-nav a { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); padding: 0.7rem 0; border-bottom: 1px solid rgba(200,146,42,0.2); display: block; }
#mobile-nav a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 2rem; border-radius: var(--radius); font-family: 'Nunito Sans', sans-serif; font-size: 0.88rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── LAYOUT ── */
.section { padding: 5rem 5vw; }
.section-sm { padding: 3rem 5vw; }
.container { max-width: 1180px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1rem; }
.section-title { margin-bottom: 1rem; }
.section-lead { font-size: 1.05rem; max-width: 640px; margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.gold-line { display: block; width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.5rem; }
.text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }

/* ── CARDS ── */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; background: var(--gray-light); object-fit: cover; display: block; }
.card-body { padding: 1.5rem; }

.value-card { padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--gray-light); transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition); background: var(--white); }
.value-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(200,146,42,0.12); transform: translateY(-4px); }
.value-card .vc-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder { background: linear-gradient(135deg,var(--grey) 0%,#ffffff 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray); gap: 0.5rem; position: relative; overflow: hidden; }
.img-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg,transparent 30%,rgba(255,255,255,0.3) 50%,transparent 70%); animation: shimmer 2.5s infinite; }
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.4; }
.img-placeholder .ph-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; text-align: center; padding: 0 1rem; }
.img-placeholder .ph-replace { font-size: 0.68rem; opacity: 0.45; font-style: italic; text-align: center; padding: 0 1rem; }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ── SERVICE CARDS ── */
.service-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); background: var(--white); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; width: 100%; }
.service-card-body { padding: 1.5rem; }
.service-card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem; transition: background var(--transition); }
.service-card:hover .service-card-icon { background: var(--gold); }

/* ── STATS ── */
.stats-bar { background: var(--navy); padding: 3rem 5vw; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 2rem; text-align: center; max-width: 1180px; margin: 0 auto; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; }

/* ── SECTION THEMES ── */
.section-dark { background: var(--navy); }
.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-dark p { color: var(--gray); }
.section-dark .section-tag { background: rgba(200,146,42,0.15); }
.section-light { background: var(--off-white); }

/* ── SPLIT ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; min-height: 320px; width: 100%; object-fit: cover; display: block; }

/* ── CONTENT PHOTOS: drop any image in with this one class — it will always match the height of the text column next to it, stay cropped neatly, and match the site's rounded/shadow style ── */
.content-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gray-light); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 0; cursor: pointer; font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); transition: color var(--transition); user-select: none; }
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { font-size: 0.95rem; padding-bottom: 1.3rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }
.form-group input,.form-group select,.form-group textarea { padding: 0.8rem 1rem; border: 2px solid var(--gray-light); border-radius: var(--radius); font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,0.15); }
.form-group textarea { resize: vertical; min-height: 130px; }
#form-status { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius); font-weight: 600; display: none; }
#form-status.success { background: #e6f5ec; color: #1a7a3a; border: 1px solid #b7e4c7; display: block; }
#form-status.error { background: #fcecea; color: #b32020; border: 1px solid #f5bfbb; display: block; }

/* ── PAGE HERO ── */
.page-hero { padding: 140px 5vw 80px; background: linear-gradient(135deg,var(--navy) 60%,var(--navy-light) 100%); position: relative; overflow: hidden; }
/* Breadcrumb banner photo — swap the src on any page to change that page's banner image */
.page-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg,rgba(10,22,40,0.88) 0%,rgba(10,22,40,0.72) 100%); }
.page-hero .hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--gray-light); max-width: 600px; margin-top: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--gray); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* ── where I started page here Chesly edits ── */



/* ── where I ended Chesly edits ── */

/* ── ACCREDITATION CAROUSEL ── */
.accred-section { background: var(--off-white); padding: 3.5rem 5vw; overflow: hidden; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.accred-label { text-align: center; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 2rem; }
.accred-track-wrap { overflow: hidden; position: relative; }
.accred-track-wrap::before,.accred-track-wrap::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.accred-track-wrap::before { left:0; background: linear-gradient(to right,var(--off-white),transparent); }
.accred-track-wrap::after { right:0; background: linear-gradient(to left,var(--off-white),transparent); }
.accred-track { display: flex; gap: 3rem; align-items: center; animation: scroll-logos 28s linear infinite; width: max-content; }
.accred-track:hover { animation-play-state: paused; }
.accred-logo-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; flex-shrink: 0; cursor: pointer; }
.accred-logo-item img { height: 54px; width: auto; max-width: 120px; object-fit: contain; filter: grayscale(60%) opacity(0.75); transition: filter var(--transition), transform var(--transition); }
.accred-logo-item:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.08); }
.accred-logo-item span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); transition: color var(--transition); }
.accred-logo-item:hover span { color: var(--gold); }
@keyframes scroll-logos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Accreditation modal */
.accred-modal-bg { display:none; position:fixed; inset:0; z-index:2000; background:rgba(10,22,40,0.75); backdrop-filter:blur(4px); align-items:center; justify-content:center; padding:2rem; }
.accred-modal-bg.open { display:flex; }
.accred-modal { background:var(--white); border-radius:var(--radius-lg); padding:2.5rem; max-width:520px; width:100%; position:relative; box-shadow:var(--shadow-lg); animation:modalIn 0.3s cubic-bezier(0.175,0.885,0.32,1.275); }
@keyframes modalIn { from{transform:scale(0.85);opacity:0} to{transform:scale(1);opacity:1} }
.accred-modal-close { position:absolute; top:1rem; right:1rem; width:32px; height:32px; border-radius:50%; background:var(--gray-light); border:none; font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background var(--transition); }
.accred-modal-close:hover { background:var(--gold); color:var(--navy); }
.accred-modal img { height:60px; margin-bottom:1.2rem; }
.accred-modal h3 { margin-bottom:0.5rem; font-size:1.3rem; }
.accred-modal .accred-tag { display:inline-block; background:var(--gold-pale); color:var(--gold); font-size:0.72rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; padding:0.25rem 0.8rem; border-radius:100px; margin-bottom:1rem; }
.accred-modal p { font-size:0.92rem; line-height:1.75; }

/* ── ECOSYSTEM DIAGRAM ── */
.ecosystem-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; }
.eco-card { border-radius:var(--radius-lg); padding:2rem; border:1px solid var(--gray-light); background:var(--white); position:relative; overflow:hidden; transition:border-color var(--transition),box-shadow var(--transition),transform var(--transition); }
.eco-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); transform:scaleX(0); transition:transform var(--transition); transform-origin:left; }
.eco-card:hover { border-color:var(--gold); box-shadow:0 8px 32px rgba(200,146,42,0.12); transform:translateY(-4px); }
.eco-card:hover::before { transform:scaleX(1); }
.eco-icon { font-size:2.2rem; margin-bottom:1rem; }
.eco-card h4 { margin-bottom:0.5rem; }
.eco-card p { font-size:0.88rem; }
.eco-connector { display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:1.2rem; opacity:0.4; }

/* ── WHY CARDS ── */
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; }
.why-card { text-align:center; padding:2.2rem 1.5rem; border-radius:var(--radius-lg); background:var(--white); box-shadow:var(--shadow); transition:transform var(--transition),box-shadow var(--transition); }
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.why-icon { font-size:2.4rem; margin-bottom:1rem; display:block; }

/* ── TICKER ── */
.sectors-strip { background:var(--gold); padding:1.2rem 5vw; overflow:hidden; }
.sectors-ticker { display:flex; gap:3rem; align-items:center; animation:ticker 22s linear infinite; white-space:nowrap; }
.sectors-ticker span { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--navy); letter-spacing:0.05em; flex-shrink:0; }
.sectors-ticker .dot-sep { font-size:1.2rem; opacity:0.4; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── ABOUT STRIP ── */
.about-strip { background:var(--navy); padding:5rem 5vw; }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; max-width:1180px; margin:0 auto; }
.about-img-wrap { position:relative; }
.about-badge { position:absolute; bottom:-20px; right:-20px; background:var(--gold); color:var(--navy); border-radius:var(--radius-lg); padding:1.2rem 1.6rem; text-align:center; box-shadow:var(--shadow); }
.about-badge .ab-num { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:900; line-height:1; }
.about-badge .ab-label { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; opacity:0.85; }

/* ── PROCESS STEPS ── */
.process-steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.5rem; counter-reset:steps; }
.process-step { position:relative; padding:2rem 1.5rem 1.5rem; border-radius:var(--radius-lg); background:var(--white); box-shadow:var(--shadow); counter-increment:steps; }
.process-step::before { content:counter(steps); position:absolute; top:-16px; left:1.5rem; width:34px; height:34px; border-radius:50%; background:var(--gold); color:var(--navy); font-family:'Playfair Display',serif; font-weight:900; font-size:1rem; display:flex; align-items:center; justify-content:center; }

/* ── FOOTER ── */
#site-footer { background:var(--navy); padding:4rem 5vw 2rem; color:var(--gray); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1.2fr; gap:2rem; margin-bottom:3rem; }
.footer-brand .footer-logo { height:44px; margin-bottom:1.2rem; }
.footer-brand p { font-size:0.88rem; max-width:260px; line-height:1.7; }
.footer-col h5 { font-family:'Nunito Sans',sans-serif; font-size:0.75rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.6rem; }
.footer-col ul a { font-size:0.88rem; color:var(--gray); }
.footer-col ul a:hover { color:var(--white); }
.footer-contact p { font-size:0.88rem; display:flex; align-items:flex-start; gap:0.6rem; margin-bottom:0.6rem; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; font-size:0.8rem; gap:1rem; flex-wrap:wrap; }
.footer-bottom a { color:var(--gray); }
.footer-bottom a:hover { color:var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.fade-up.visible { opacity:1; transform:none; }
.fade-in { opacity:0; transition:opacity 0.7s ease; }
.fade-in.visible { opacity:1; }
.slide-left { opacity:0; transform:translateX(-40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.slide-left.visible { opacity:1; transform:none; }
.slide-right { opacity:0; transform:translateX(40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.slide-right.visible { opacity:1; transform:none; }
.scale-in { opacity:0; transform:scale(0.9); transition:opacity 0.6s ease,transform 0.6s ease; }
.scale-in.visible { opacity:1; transform:scale(1); }
.delay-1{transition-delay:0.1s} .delay-2{transition-delay:0.2s} .delay-3{transition-delay:0.3s}
.delay-4{transition-delay:0.4s} .delay-5{transition-delay:0.5s} .delay-6{transition-delay:0.6s}

/* ── INTERACTIVE TABS ── */
.tabs-nav { display:flex; gap:0.5rem; flex-wrap:wrap; margin-bottom:2.5rem; border-bottom:2px solid var(--gray-light); padding-bottom:0; }
.tab-btn { padding:0.7rem 1.4rem; font-family:'Nunito Sans',sans-serif; font-size:0.82rem; font-weight:800; letter-spacing:0.06em; text-transform:uppercase; color:var(--text-light); background:none; border:none; border-bottom:3px solid transparent; margin-bottom:-2px; cursor:pointer; transition:color var(--transition),border-color var(--transition); }
.tab-btn:hover { color:var(--gold); }
.tab-btn.active { color:var(--gold); border-bottom-color:var(--gold); }
.tab-panel { display:none; animation:fadeTab 0.35s ease; }
.tab-panel.active { display:block; }
@keyframes fadeTab { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }

/* ── INTEGRATION FLOW ── */
.flow-row { display:flex; align-items:stretch; gap:0; flex-wrap:wrap; }
.flow-node { flex:1; min-width:180px; background:var(--white); border:1px solid var(--gray-light); border-radius:var(--radius-lg); padding:1.5rem; text-align:center; position:relative; transition:border-color var(--transition),transform var(--transition); }
.flow-node:hover { border-color:var(--gold); transform:translateY(-4px); }
.flow-node .fn-icon { font-size:2rem; margin-bottom:0.6rem; display:block; }
.flow-node h4 { font-size:0.9rem; margin-bottom:0.3rem; }
.flow-node p { font-size:0.78rem; }
.flow-arrow { display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:1.5rem; padding:0 0.5rem; flex-shrink:0; opacity:0.6; }

/* ── HOVER HIGHLIGHT LIST ── */
.highlight-list { list-style:none; display:flex; flex-direction:column; gap:0.6rem; }
.highlight-list li { display:flex; align-items:flex-start; gap:0.8rem; padding:0.8rem 1rem; border-radius:var(--radius); border:1px solid var(--gray-light); font-size:0.92rem; transition:border-color var(--transition),background var(--transition); }
.highlight-list li:hover { border-color:var(--gold); background:var(--gold-pale); }
.highlight-list li::before { content:'✦'; color:var(--gold); flex-shrink:0; font-size:0.7rem; margin-top:3px; }

/* ── RESPONSIVE ── */
@media (max-width:1000px) { .footer-grid{grid-template-columns:1fr 1fr 1fr;} }
@media (max-width:900px) {
  .nav-links{display:none} .nav-hamburger{display:flex}
  .split-section{grid-template-columns:1fr;gap:2rem}
  .split-section.reverse{direction:ltr}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .about-inner{grid-template-columns:1fr;gap:3rem}
  .about-badge{bottom:10px;right:10px}
  .flow-row{flex-direction:column}
  .flow-arrow{transform:rotate(90deg)}
}
@media (max-width:600px) {
  .section{padding:3.5rem 5vw}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
