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

:root {
  --navy: #0B1E3D;
  --slate: #1E3A5F;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --cream: #F8F6F1;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6B7A90;
  --border: #E0DDD4;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --container: 1100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 500; }

p { color: var(--muted); line-height: 1.8; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.gold { color: var(--gold); }

/* ── NAVIGATION ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 1rem 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-right: auto;
}
.logo em { font-size: 0.7rem; font-style: normal; font-family: var(--font-sans); color: var(--muted); font-weight: 300; }
.logo-gold { color: var(--gold); }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a { font-size: 0.875rem; color: var(--muted); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.btn-nav-cta {
  background: var(--navy); color: #fff; padding: 0.5rem 1.2rem;
  border-radius: var(--radius); font-size: 0.85rem; font-weight: 500;
  transition: background 0.2s; white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--slate); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: 0.3s; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-weight: 500; padding: 0.8rem 1.75rem; border-radius: var(--radius);
  font-size: 0.9rem; border: none; cursor: pointer; transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  border: 0.5px solid rgba(255,255,255,0.4); padding: 0.8rem 1.75rem;
  border-radius: var(--radius); font-size: 0.9rem; cursor: pointer; transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); }
.btn-outline-dark {
  display: inline-block; background: transparent; color: var(--navy);
  border: 0.5px solid var(--navy); padding: 0.8rem 1.75rem;
  border-radius: var(--radius); font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0B1E3D 0%, #1E3A5F 60%, #0B2D4D 100%);
  padding: 7rem 0 5rem; position: relative; overflow: hidden;
}
.hero-inner { max-width: 760px; }
.hero-tag {
  display: inline-block; border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.75rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 2.25rem; font-weight: 300; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.pill {
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 0.4rem 1rem; border-radius: 2px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar { padding: 1.75rem 0; border-bottom: 0.5px solid var(--border); }
.trust-bar .container { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.trust-logos { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-logos span { font-size: 0.85rem; font-weight: 500; color: var(--navy); opacity: 0.5; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header.light h2 { color: #fff; }
.section-tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-weight: 500;
}
.section-tag.gold { color: rgba(201,168,76,0.8); }
.section-lead { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 560px; font-weight: 300; margin: 0 auto; }
.section-lead.muted { color: rgba(255,255,255,0.55); }

/* ── WHAT WE DO ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.wwd-item { border-left: 2px solid var(--gold); padding: 0.25rem 0 0.25rem 1.25rem; }
.wwd-icon { font-size: 0.75rem; font-weight: 500; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.wwd-item h4 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.wwd-item p { font-size: 0.875rem; color: var(--muted); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.service-card {
  border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.5rem;
  background: #fff; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-icon-wrap { font-size: 1.5rem; margin-bottom: 0.85rem; }
.service-card h3 { font-size: 0.975rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; font-family: var(--font-sans); }
.service-card ul { flex: 1; }
.service-card ul li { font-size: 0.82rem; color: var(--muted); line-height: 1.9; padding-left: 1rem; position: relative; }
.service-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.service-result { font-size: 0.78rem; color: var(--gold); font-weight: 500; border-top: 0.5px solid var(--border); padding-top: 0.75rem; margin: 0.75rem 0; }
.service-link { font-size: 0.82rem; color: var(--navy); font-weight: 500; }
.service-link:hover { color: var(--gold); }

/* ── HOW IT WORKS ── */
.steps-row { display: flex; align-items: flex-start; gap: 0; margin-top: 3.5rem; }
.step-item { flex: 1; text-align: center; padding: 0 1.5rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold);
}
.step-connector { width: 80px; height: 1px; background: rgba(201,168,76,0.3); margin-top: 28px; flex-shrink: 0; }
.step-item h4 { font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 0.5rem; font-family: var(--font-serif); }
.step-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── ROI ── */
.roi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.roi-card { background: #fff; border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; border: 0.5px solid var(--border); }
.roi-num { font-family: var(--font-serif); font-size: 2.1rem; color: var(--gold); font-weight: 700; display: block; margin-bottom: 0.3rem; }
.roi-label { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── WHY TERAZONE ── */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-layout h2 { color: var(--navy); margin-bottom: 1rem; }
.why-list { margin-top: 2rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 0.9rem 0; border-bottom: 0.5px solid var(--border); }
.why-list li:last-child { border-bottom: none; }
.why-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.why-list strong { font-size: 0.875rem; font-weight: 500; color: var(--navy); display: block; margin-bottom: 0.15rem; font-family: var(--font-sans); }
.why-list p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.case-aside { background: var(--navy); border-radius: 8px; padding: 2rem; }
.case-aside h4 { font-family: var(--font-serif); font-size: 1.15rem; color: #fff; margin-bottom: 1.25rem; }
.case-item { border-bottom: 0.5px solid rgba(255,255,255,0.1); padding: 0.9rem 0; }
.case-item:last-child { border-bottom: none; }
.case-item h5 { font-size: 0.85rem; font-weight: 500; color: var(--gold-light); margin-bottom: 0.3rem; font-family: var(--font-sans); }
.case-item p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, #0B1E3D, #1E3A5F); padding: 5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.cta-form { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }
.cta-form input {
  padding: 0.75rem 1rem; border-radius: var(--radius);
  border: 0.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07); color: #fff; font-size: 0.875rem;
  min-width: 190px; outline: none; font-family: var(--font-sans);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-note { font-size: 0.76rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 1.5rem; }

/* ── PAGE HERO ── */
.page-hero { padding: 5rem 0 4rem; }
.page-hero h1 { color: #fff; margin: 0.75rem 0 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; }

/* ── SERVICES DETAIL ── */
.section-divider { border: none; border-top: 0.5px solid var(--border); }
.service-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-detail-layout.reverse { direction: rtl; }
.service-detail-layout.reverse > * { direction: ltr; }
.service-detail-text h2 { color: var(--navy); margin: 0.75rem 0 1rem; }
.detail-list { margin: 1.5rem 0; }
.detail-list li { font-size: 0.875rem; color: var(--muted); line-height: 1.8; padding: 0.5rem 0; border-bottom: 0.5px solid var(--border); }
.detail-list li:last-child { border-bottom: none; }
.detail-list strong { color: var(--navy); }
.result-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.result-pills span { font-size: 0.78rem; color: var(--gold); border: 0.5px solid rgba(201,168,76,0.3); padding: 0.3rem 0.75rem; border-radius: 2px; }
.service-detail-visual { border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.service-detail-visual.navy { background: var(--navy); }
.service-detail-visual.cream { background: var(--cream); }
.metric-card { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.service-detail-visual.cream .metric-card { background: #fff; border: 0.5px solid var(--border); }
.big-num { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); display: block; }
.service-detail-visual.cream .big-num { color: var(--navy); }
.metric-card span:last-child { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.service-detail-visual.cream .metric-card span:last-child { color: var(--muted); }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.about-text h2 { color: var(--navy); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-text h3 { color: var(--navy); }
.credentials-card { background: var(--cream); border-radius: var(--radius); padding: 1.5rem; }
.credentials-card h4 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 1rem; font-size: 1rem; }
.cred-item { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.75rem 0; border-bottom: 0.5px solid var(--border); }
.cred-item:last-child { border-bottom: none; }
.cred-badge { background: var(--navy); color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.35rem 0.7rem; border-radius: 3px; white-space: nowrap; }
.cred-item strong { font-size: 0.875rem; color: var(--navy); display: block; margin-bottom: 0.15rem; font-family: var(--font-sans); }
.cred-item p { font-size: 0.78rem; margin: 0; }
.about-stat { display: flex; align-items: baseline; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 0.5px solid var(--border); }
.about-stat:last-child { border-bottom: none; }
.stat-num { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
.about-stat span:last-child { font-size: 0.8rem; color: var(--muted); }
.tagline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.tagline-card { background: var(--navy); color: var(--gold-light); font-family: var(--font-serif); font-size: 1.05rem; padding: 2rem 1.5rem; border-radius: var(--radius); text-align: center; font-style: italic; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.contact-form-wrap h2 { color: var(--navy); margin-bottom: 0.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .audit-form-wrap input, .audit-form-wrap textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 0.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.875rem;
  color: var(--text); outline: none; transition: border-color 0.2s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus,
.audit-form-wrap input:focus, .audit-form-wrap textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.contact-info h3 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-icon { font-size: 1rem; width: 36px; height: 36px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail strong { font-size: 0.82rem; font-weight: 500; color: var(--navy); display: block; margin-bottom: 0.15rem; font-family: var(--font-sans); }
.contact-detail a { font-size: 0.875rem; color: var(--gold); }
.contact-detail p { font-size: 0.875rem; margin: 0; }
.contact-cta-aside { background: var(--cream); border-radius: var(--radius); padding: 1.5rem; margin-top: 2rem; }
.contact-cta-aside h4 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 0.5rem; }
.contact-cta-aside p { font-size: 0.875rem; }
.success-msg { background: #edf7ef; border: 0.5px solid #6db884; color: #2d6e40; font-size: 0.875rem; padding: 0.9rem 1rem; border-radius: var(--radius); margin-bottom: 1.25rem; }
.error-msg { background: #fef0f0; border: 0.5px solid #e88; color: #993333; font-size: 0.875rem; padding: 0.9rem 1rem; border-radius: var(--radius); margin-bottom: 1.25rem; }

/* ── AUDIT PAGE ── */
.audit-layout { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.audit-form-wrap h2 { color: var(--navy); margin-bottom: 0.35rem; }
.form-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }
.audit-what { margin-bottom: 2rem; }
.audit-what h3 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 1.25rem; }
.audit-step { display: flex; gap: 0.9rem; margin-bottom: 1rem; }
.a-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: var(--gold); font-weight: 500; flex-shrink: 0; }
.audit-step strong { font-size: 0.875rem; color: var(--navy); display: block; font-family: var(--font-sans); }
.audit-step p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.audit-promise { background: var(--navy); border-radius: var(--radius); padding: 1.5rem; }
.audit-promise h4 { font-family: var(--font-serif); color: var(--gold-light); margin-bottom: 0.75rem; }
.audit-promise p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ── CASE STUDIES ── */
.cs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.cs-card { border: 0.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; transition: box-shadow 0.2s; }
.cs-card:hover { box-shadow: 0 4px 20px rgba(11,30,61,0.08); }
.cs-header { background: var(--navy); padding: 1.5rem; }
.cs-sector { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(201,168,76,0.7); display: block; margin-bottom: 0.5rem; }
.cs-header h3 { color: #fff; font-size: 1.1rem; }
.cs-client { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.cs-pilot-badge { display: inline-block; background: rgba(201,168,76,0.15); border: 0.5px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 0.5rem; }
.cs-body { padding: 1.5rem; }
.cs-section { margin-bottom: 1rem; }
.cs-section strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); display: block; margin-bottom: 0.4rem; font-family: var(--font-sans); }
.cs-section p { font-size: 0.82rem; color: var(--muted); }
.cs-results { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; border-top: 0.5px solid var(--border); padding-top: 1rem; }
.cs-metric { text-align: center; }
.cs-metric-val { font-family: var(--font-serif); font-size: 1.35rem; color: var(--gold); display: block; }
.cs-metric span:last-child { font-size: 0.72rem; color: var(--muted); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 4rem 0 1.5rem; }
.footer-top { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 260px 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-serif); font-size: 1.2rem; color: #fff; margin-bottom: 0.4rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.footer-reg { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-bottom: 1rem; }
.footer-socials a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-socials a:hover { color: var(--gold); }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-newsletter p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; padding: 0.5rem 0.75rem; background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.15); color: #fff; font-size: 0.82rem; border-radius: var(--radius) 0 0 var(--radius); outline: none; }
.newsletter-form button { background: var(--gold); border: none; color: var(--navy); padding: 0.5rem 0.75rem; cursor: pointer; border-radius: 0 var(--radius) var(--radius) 0; font-size: 1rem; }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 1.25rem 2rem 0; border-top: 0.5px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-2, .why-layout, .about-layout, .contact-layout, .audit-layout, .service-detail-layout, .service-detail-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { width: 1px; height: 40px; }
  .cta-inner { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .cta-form input { min-width: unset; width: 100%; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1rem 2rem; border-bottom: 0.5px solid var(--border); gap: 0.75rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .hero { padding: 4rem 0 3rem; }
  .section { padding: 3rem 0; }
}
